Redirection - Version 3.7.2

Version Description

  • 16th Jan 2019 =
  • Add further partial upgrade detection
  • Add fallback for sites with no REST API value
Download this release

Release Info

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

Code changes from version 3.7.1 to 3.7.2

database/database-status.php CHANGED
@@ -125,6 +125,7 @@ class Red_Database_Status {
125
 
126
  $latest = Red_Database::get_latest_database();
127
  $this->debug = array_merge( $this->debug, $latest->get_table_schema() );
 
128
  }
129
 
130
  public function set_ok( $reason ) {
125
 
126
  $latest = Red_Database::get_latest_database();
127
  $this->debug = array_merge( $this->debug, $latest->get_table_schema() );
128
+ $this->debug[] = 'Stage: ' . $this->get_current_stage();
129
  }
130
 
131
  public function set_ok( $reason ) {
database/database.php CHANGED
@@ -11,11 +11,13 @@ class Red_Database {
11
  */
12
  public function get_upgrades_for_version( $current_version, $current_stage ) {
13
  if ( $current_version === '' ) {
14
- return [ [
15
- 'version' => REDIRECTION_DB_VERSION,
16
- 'file' => 'latest.php',
17
- 'class' => 'Red_Latest_Database',
18
- ] ];
 
 
19
  }
20
 
21
  $upgraders = [];
11
  */
12
  public function get_upgrades_for_version( $current_version, $current_stage ) {
13
  if ( $current_version === '' ) {
14
+ return [
15
+ [
16
+ 'version' => REDIRECTION_DB_VERSION,
17
+ 'file' => 'latest.php',
18
+ 'class' => 'Red_Latest_Database',
19
+ ],
20
+ ];
21
  }
22
 
23
  $upgraders = [];
database/schema/240.php CHANGED
@@ -6,7 +6,6 @@
6
  * Try and detect this and skip the upgrade
7
  */
8
  class Red_Database_240 extends Red_Database_Upgrader {
9
- private $existing_index = false;
10
  private $existing_column = false;
11
 
12
  public function get_stages() {
@@ -15,20 +14,27 @@ class Red_Database_240 extends Red_Database_Upgrader {
15
  'expand_log_ip_column_240' => 'Expand IP size in logs to support IPv6',
16
  'convert_int_ip_to_varchar_240' => 'Convert integer IP values to support IPv6',
17
  'swap_ip_column_240' => 'Swap IPv4 for IPv6',
18
- 'add_missing_index_240' => 'Add missing IP index to 404 logs',
19
  'convert_title_to_text_240' => 'Expand size of redirect titles',
 
20
  ];
21
  }
22
 
23
- protected function detect_existing_240( $wpdb ) {
 
 
24
  $existing = $wpdb->get_row( "SHOW CREATE TABLE `{$wpdb->prefix}redirection_404`", ARRAY_N );
25
 
26
  if ( isset( $existing[1] ) ) {
27
- if ( strpos( strtolower( $existing[1] ), 'key `ip` (`id`)' ) !== false ) {
28
- // Incorrect index exists for 'id', but called 'ip' - remove so add_missing_index_240 will work
29
- $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_404` drop index ip" );
30
- }
 
 
 
 
31
 
 
32
  if ( strpos( strtolower( $existing[1] ), '`ip` varchar(45)' ) !== false ) {
33
  // IP as varchar exists - don't recreate
34
  $this->existing_column = true;
@@ -65,6 +71,10 @@ class Red_Database_240 extends Red_Database_Upgrader {
65
  }
66
 
67
  protected function add_missing_index_240( $wpdb ) {
 
 
 
 
68
  return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_404` ADD INDEX `ip` (`ip`)" );
69
  }
70
 
6
  * Try and detect this and skip the upgrade
7
  */
8
  class Red_Database_240 extends Red_Database_Upgrader {
 
9
  private $existing_column = false;
10
 
11
  public function get_stages() {
14
  'expand_log_ip_column_240' => 'Expand IP size in logs to support IPv6',
15
  'convert_int_ip_to_varchar_240' => 'Convert integer IP values to support IPv6',
16
  'swap_ip_column_240' => 'Swap IPv4 for IPv6',
 
17
  'convert_title_to_text_240' => 'Expand size of redirect titles',
18
+ 'add_missing_index_240' => 'Add missing IP index to 404 logs',
19
  ];
20
  }
21
 
22
+ private function has_weird_ip_index() {
23
+ global $wpdb;
24
+
25
  $existing = $wpdb->get_row( "SHOW CREATE TABLE `{$wpdb->prefix}redirection_404`", ARRAY_N );
26
 
27
  if ( isset( $existing[1] ) ) {
28
+ return strpos( strtolower( $existing[1] ), 'key `ip` (' ) !== false;
29
+ }
30
+
31
+ return false;
32
+ }
33
+
34
+ protected function detect_existing_240( $wpdb ) {
35
+ $existing = $wpdb->get_row( "SHOW CREATE TABLE `{$wpdb->prefix}redirection_404`", ARRAY_N );
36
 
37
+ if ( isset( $existing[1] ) ) {
38
  if ( strpos( strtolower( $existing[1] ), '`ip` varchar(45)' ) !== false ) {
39
  // IP as varchar exists - don't recreate
40
  $this->existing_column = true;
71
  }
72
 
73
  protected function add_missing_index_240( $wpdb ) {
74
+ if ( $this->has_weird_ip_index() ) {
75
+ $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_404` DROP INDEX ip" );
76
+ }
77
+
78
  return $this->do_query( $wpdb, "ALTER TABLE `{$wpdb->prefix}redirection_404` ADD INDEX `ip` (`ip`)" );
79
  }
80
 
locale/json/redirection-pt_BR.json CHANGED
@@ -1 +1 @@
1
- {"":[],"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"],"Unsupported PHP":["PHP sem suporte"],"Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version.":["O Redirection requer PHP v%1$1s, você está usando v%2$2s. Este plugin vai parar de funcionar a partir da próxima versão."],"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"],"Relative /wp-json/":["/wp-json/ relativo"],"Default /wp-json/":["/wp-json/ padrão"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home 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"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Região"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."],"Redirection not installed properly":["O Redirection não foi instalado adequadamente"],"Redirection requires WordPress v%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"],"Failed to fix database tables":["Falha ao corrigir tabelas do banco de dados"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro podem ser exportados nas páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Mudou permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino correspondido"],"Unmatched Target":["Destino não correspondido"],"Saving...":["Salvando..."],"View notice":["Veja o aviso"],"Invalid source URL":["URL de origem inválido"],"Invalid redirect action":["Ação de redirecionamento inválida"],"Invalid redirect matcher":["Critério de redirecionamento inválido"],"Unable to add new redirect":["Não foi possível criar novo redirecionamento"],"Something went wrong 🙁":["Algo deu errado 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"],"Log entries (%d max)":["Entradas do registro (máx %d)"],"Search by IP":["Pesquisar por IP"],"Select bulk action":["Selecionar ações em massa"],"Bulk Actions":["Ações em massa"],"Apply":["Aplicar"],"First page":["Primeira página"],"Prev page":["Página anterior"],"Current Page":["Página atual"],"of %(page)s":["de %(page)s"],"Next page":["Próxima página"],"Last page":["Última página"],"%s item":["%s item","%s itens"],"Select All":["Selecionar tudo"],"Sorry, something went wrong loading the data - please try again":["Desculpe, mas algo deu errado ao carregar os dados - tente novamente"],"No results":["Nenhum resultado"],"Delete the logs - are you sure?":["Excluir os registros - Você tem certeza?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Uma vez excluídos, seus registros atuais não estarão mais disponíveis. Você pode agendar uma exclusão na opções do plugin Redirection, se quiser fazê-la automaticamente."],"Yes! Delete the logs":["Sim! Exclua os registros"],"No! Don't delete the logs":["Não! Não exclua os registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."],"Newsletter":["Boletim"],"Want to keep up to date with changes to Redirection?":["Quer ficar a par de mudanças no Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscreva-se no boletim do Redirection. O boletim tem baixo volume de mensagens e informa sobre novos recursos e alterações no plugin. Ideal se quiser testar alterações beta antes do lançamento."],"Your email address:":["Seu endereço de e-mail:"],"You've supported this plugin - thank you!":["Você apoiou este plugin - obrigado!"],"You get useful software and I get to carry on making it better.":["Você obtém softwares úteis e eu continuo fazendo isso melhor."],"Forever":["Para sempre"],"Delete the plugin - are you sure?":["Excluir o plugin - Você tem certeza?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["A exclusão do plugin irá remover todos os seus redirecionamentos, logs e configurações. Faça isso se desejar remover o plugin para sempre, ou se quiser reiniciar o plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."],"Yes! Delete the plugin":["Sim! Exclua o plugin"],"No! Don't delete the plugin":["Não! Não exclua o plugin"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gerencie todos os seus redirecionamentos 301 e monitore erros 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["O Redirection é livre para usar - a vida é maravilhosa e adorável! Foi necessário muito tempo e esforço para desenvolver e você pode ajudar a apoiar esse desenvolvimento {{strong}}fazendo uma pequena doação{{/strong}}."],"Redirection Support":["Ajuda do Redirection"],"Support":["Ajuda"],"404s":["404s"],"Log":["Registro"],"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
+ {"":[],"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"],"Unsupported PHP":["PHP sem suporte"],"Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version.":["O Redirection requer PHP v%1$1s, você está usando v%2$2s. Este plugin vai parar de funcionar a partir da próxima versão."],"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"],"Relative /wp-json/":["/wp-json/ relativo"],"Default /wp-json/":["/wp-json/ padrão"],"If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:":["Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"],"Site and home protocol":["Protocolo do endereço do WordPress e do site"],"Site and home 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"],"Raw /index.php?rest_route=/":["/index.php?rest_route=/"],"REST API":["API REST"],"How Redirection uses the REST API - don't change unless necessary":["Como o Redirection usa a API REST. Não altere a menos que seja necessário"],"WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme.":["O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."],"Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem.":["Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."],"{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it.":["{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."],"{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests.":["{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."],"{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches.":["{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."],"{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems.":["{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."],"None of the suggestions helped":["Nenhuma das sugestões ajudou"],"Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>.":["Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."],"Unable to load Redirection ☹️":["Não foi possível carregar o Redirection ☹️"],"WordPress REST API is working at %s":["A API REST do WordPress está funcionando em %s"],"WordPress REST API":["A API REST do WordPress"],"REST API is not working so routes not checked":["A API REST não está funcionado, por isso as rotas não foram verificadas"],"Redirection routes are working":["As rotas do Redirection estão funcionando"],"Redirection does not appear in your REST API routes. Have you disabled it with a plugin?":["O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"],"Redirection routes":["Rotas do Redirection"],"Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working":["A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."],"https://johngodley.com":["https://johngodley.com"],"Useragent Error":["Erro de agente de usuário"],"Unknown Useragent":["Agente de usuário desconhecido"],"Device":["Dispositivo"],"Operating System":["Sistema operacional"],"Browser":["Navegador"],"Engine":["Motor"],"Useragent":["Agente de usuário"],"Agent":["Agente"],"No IP logging":["Não registrar IP"],"Full IP logging":["Registrar IP completo"],"Anonymize IP (mask last part)":["Tornar IP anônimo (mascarar a última parte)"],"Monitor changes to %(type)s":["Monitorar alterações em %(type)s"],"IP Logging":["Registro de IP"],"(select IP logging level)":["(selecione o nível de registro de IP)"],"Geo Info":["Informações geográficas"],"Agent Info":["Informação sobre o agente"],"Filter by IP":["Filtrar por IP"],"Referrer / User Agent":["Referenciador / Agente de usuário"],"Geo IP Error":["Erro IP Geo"],"Something went wrong obtaining this information":["Algo deu errado ao obter essa informação"],"This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed.":["Este é um IP de uma rede privada. Isso significa que ele está localizado dentro de uma rede residencial ou comercial e nenhuma outra informação pode ser exibida."],"No details are known for this address.":["Nenhum detalhe é conhecido para este endereço."],"Geo IP":["IP Geo"],"City":["Cidade"],"Area":["Região"],"Timezone":["Fuso horário"],"Geo Location":["Coordenadas"],"Powered by {{link}}redirect.li{{/link}}":["Fornecido por {{link}}redirect.li{{/link}}"],"Trash":["Lixeira"],"Please note that Redirection requires the WordPress REST API to be enabled. If you have disabled this then you won't be able to use Redirection":["O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"],"You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site.":["A documentação completa (em inglês) sobre como usar o Redirection se encontra no site <a href=\"%s\" target=\"_blank\">redirection.me</a>."],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["A documentação completa do Redirection encontra-se (em inglês) em {{site}}https://redirection.me{{/site}}. Se tiver algum problema, consulte primeiro as {{faq}}Perguntas frequentes{{/faq}}."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Se quiser enviar informações que não possam ser tornadas públicas, então remeta-as diretamente (em inglês) por {{email}}e-mail{{/email}}. Inclua o máximo de informação que puder!"],"Never cache":["Nunca fazer cache"],"An hour":["Uma hora"],"Redirect Cache":["Cache dos redirecionamentos"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"],"Are you sure you want to import from %s?":["Tem certeza de que deseja importar de %s?"],"Plugin Importers":["Importar de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."],"Redirection not installed properly":["O Redirection não foi instalado adequadamente"],"Redirection requires WordPress v%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"],"Failed to fix database tables":["Falha ao corrigir tabelas do banco de dados"],"Post monitor group is valid":["O grupo do monitoramento de posts é válido"],"Post monitor group is invalid":["O grupo de monitoramento de post é inválido"],"Post monitor group":["Grupo do monitoramento de posts"],"All redirects have a valid group":["Todos os redirecionamentos têm um grupo válido"],"Redirects with invalid groups detected":["Redirecionamentos com grupos inválidos detectados"],"Valid redirect group":["Grupo de redirecionamento válido"],"Valid groups detected":["Grupos válidos detectados"],"No valid groups, so you will not be able to create any redirects":["Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"],"Valid groups":["Grupos válidos"],"Database tables":["Tabelas do banco de dados"],"The following tables are missing:":["As seguintes tabelas estão faltando:"],"All tables present":["Todas as tabelas presentes"],"Cached Redirection detected":["O Redirection foi detectado no cache"],"Please clear your browser cache and reload this page.":["Limpe o cache do seu navegador e recarregue esta página."],"The data on this page has expired, please reload.":["Os dados nesta página expiraram, por favor recarregue."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["O WordPress não retornou uma resposta. Isso pode significar que ocorreu um erro ou que a solicitação foi bloqueada. Confira o error_log de seu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?":["Seu servidor retornou um erro 403 Proibido, que pode indicar que a solicitação foi bloqueada. Você está usando um firewall ou um plugin de segurança?"],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Se você acha que o erro é do Redirection, abra um chamado."],"This may be caused by another plugin - look at your browser's error console for more details.":["Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."],"Loading, please wait...":["Carregando, aguarde..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Formato do arquivo CSV{{/strong}}: {{code}}URL de origem, URL de destino{{/code}} - e pode ser opcionalmente seguido com {{code}}regex, código http{{/code}} ({{code}}regex{{/code}} - 0 para não, 1 para sim)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Se isso é um novo problema, {{strong}}crie um novo chamado{{/strong}} ou envie-o por {{strong}}e-mail{{/strong}}. Inclua a descrição do que você estava tentando fazer e detalhes importantes listados abaixo. Inclua uma captura da tela."],"Create Issue":["Criar chamado"],"Email":["E-mail"],"Important details":["Detalhes importantes"],"Need help?":["Precisa de ajuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."],"Pos":["Pos"],"410 - Gone":["410 - Não existe mais"],"Position":["Posição"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID instead":["Usado na auto-geração do URL se nenhum URL for dado. Use as tags especiais {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} para em vez disso inserir um ID único"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."],"Import to group":["Importar para grupo"],"Import a CSV, .htaccess, or JSON file.":["Importar um arquivo CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Clique 'Adicionar arquivo' ou arraste e solte aqui."],"Add File":["Adicionar arquivo"],"File selected":["Arquivo selecionado"],"Importing":["Importando"],"Finished importing":["Importação concluída"],"Total redirects imported:":["Total de redirecionamentos importados:"],"Double-check the file is the correct format!":["Verifique novamente se o arquivo é o formato correto!"],"OK":["OK"],"Close":["Fechar"],"All imports will be appended to the current database.":["Todas as importações serão anexadas ao banco de dados atual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."],"Everything":["Tudo"],"WordPress redirects":["Redirecionamentos WordPress"],"Apache redirects":["Redirecionamentos Apache"],"Nginx redirects":["Redirecionamentos Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess do Apache"],"Nginx rewrite rules":["Regras de reescrita do Nginx"],"Redirection JSON":["JSON do Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Arquivos de registro podem ser exportados nas páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Erro 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"],"I'd like to support some more.":["Eu gostaria de ajudar mais um pouco."],"Support 💰":["Doação 💰"],"Redirection saved":["Redirecionamento salvo"],"Log deleted":["Registro excluído"],"Settings saved":["Configurações salvas"],"Group saved":["Grupo salvo"],"Are you sure you want to delete this item?":["Tem certeza de que deseja excluir este item?","Tem certeza de que deseja excluir estes item?"],"pass":["manter url"],"All groups":["Todos os grupos"],"301 - Moved Permanently":["301 - Mudou permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirecionamento temporário"],"308 - Permanent Redirect":["308 - Redirecionamento permanente"],"401 - Unauthorized":["401 - Não autorizado"],"404 - Not Found":["404 - Não encontrado"],"Title":["Título"],"When matched":["Quando corresponder"],"with HTTP code":["com código HTTP"],"Show advanced options":["Exibir opções avançadas"],"Matched Target":["Destino 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 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/redirection-de_DE.mo CHANGED
Binary file
locale/redirection-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-07-11 10:22:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,621 +11,897 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
  msgstr ""
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
  msgstr ""
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr ""
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr ""
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr ""
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr ""
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr ""
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr ""
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr ""
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr ""
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr ""
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr ""
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr ""
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr ""
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr ""
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr ""
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr ""
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr ""
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr ""
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr ""
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr ""
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr ""
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr ""
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr ""
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr ""
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr ""
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr ""
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr ""
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr ""
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr ""
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr ""
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr ""
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr ""
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr ""
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr ""
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr ""
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr ""
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr ""
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr ""
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr ""
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr ""
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr ""
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
- msgstr ""
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
- msgstr ""
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
- msgstr ""
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
- msgstr ""
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
- msgstr ""
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr ""
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
- msgstr ""
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr ""
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr ""
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr ""
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr ""
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr ""
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr ""
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
- msgstr ""
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
- msgstr ""
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
- msgstr ""
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
- msgstr ""
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr ""
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
- msgstr ""
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr ""
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
- msgstr ""
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relativ /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Standard /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr ""
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr ""
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr ""
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
- msgstr ""
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Akzeptiere Sprache"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Wert im Header "
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Header Name "
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Header"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress Filter Name "
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filter Name"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
- msgstr ""
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
- msgstr ""
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
- msgstr ""
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr ""
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
- msgstr ""
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
- msgstr ""
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
- msgstr ""
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
- msgstr ""
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr ""
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
- msgstr ""
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
- msgstr ""
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr ""
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr ""
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr ""
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr ""
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr ""
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr ""
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr ""
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr ""
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
- msgstr ""
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
- msgstr ""
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr ""
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr ""
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr ""
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr ""
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr ""
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr ""
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr ""
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
- msgstr ""
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Betriebssystem"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr ""
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr ""
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr ""
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Keine IP-Protokollierung"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Vollständige IP-Protokollierung"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Änderungen überwachen für %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP-Protokollierung"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(IP-Protokollierungsstufe wählen)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr ""
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr ""
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr ""
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr ""
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr ""
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr ""
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr ""
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr ""
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr ""
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
- msgstr ""
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr ""
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr ""
552
 
553
  #: redirection-settings.php:22
554
  msgid "Trash"
555
- msgstr ""
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr ""
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr ""
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
- msgstr ""
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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}}."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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."
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr ""
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "Eine Stunde"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr ""
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Möchtest du wirklich von %s importieren?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Plugin Importer"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "Total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Import von %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Es wurden Probleme mit den Datenbanktabellen festgestellt. Besuche bitte die <a href=\"%s\">Support Seite</a> für mehr Details."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection wurde nicht korrekt installiert"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr ""
631
 
@@ -633,453 +909,449 @@ msgstr ""
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr ""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr ""
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr ""
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr ""
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr ""
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
- msgstr ""
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr ""
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr ""
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr ""
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
- msgstr ""
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr ""
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr ""
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr ""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr ""
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr ""
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr ""
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr ""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr ""
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr ""
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr ""
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Redirection konnte nicht geladen werden"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr ""
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr ""
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr ""
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr ""
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr ""
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr ""
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr ""
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr ""
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr ""
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr ""
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr ""
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr ""
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr ""
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr ""
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr ""
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr ""
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr ""
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr ""
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr ""
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Lädt, bitte warte..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr ""
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr ""
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  msgstr ""
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr ""
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "E-Mail"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Wichtige Details"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Hilfe benötigt?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr ""
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr ""
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Entfernt"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  msgstr ""
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache Modul"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr ""
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importiere in Gruppe"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Datei hinzufügen"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Datei ausgewählt"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importiere"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Importieren beendet"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Umleitungen importiert:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Schließen"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Exportieren"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr ""
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Alles"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress Weiterleitungen"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache Weiterleitungen"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx Weiterleitungen"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr ""
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr ""
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Anzeigen"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/Export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Protokolldateien"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 Fehler"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr ""
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr ""
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Unterstützen 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Umleitung gespeichert"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log gelöscht"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Einstellungen gespeichert"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Gruppe gespeichert"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
1008
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr ""
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Alle Gruppen"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301- Dauerhaft verschoben"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Gefunden"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Zeitweise Umleitung"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Dauerhafte Umleitung"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Unautorisiert"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Nicht gefunden"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Titel"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr ""
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "mit HTTP Code"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Zeige erweiterte Optionen"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Passendes Ziel"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Unpassendes Ziel"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Speichern..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Hinweis anzeigen"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Ungültige Quell URL"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Ungültige Umleitungsaktion"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr ""
1085
 
@@ -1087,456 +1359,460 @@ msgstr ""
1087
  msgid "Unable to add new redirect"
1088
  msgstr ""
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Etwas ist schiefgelaufen 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Log Einträge (%d max)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Suche nach IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr ""
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr ""
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Anwenden"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "Erste Seite"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Vorige Seite"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Aktuelle Seite"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "von %(Seite)n"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Nächste Seite"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Letzte Seite"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s Eintrag"
1147
  msgstr[1] "%s Einträge"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Alle auswählen"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "Keine Ergebnisse"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Logs löschen - bist du sicher?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Ja! Lösche die Logs"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "Nein! Lösche die Logs nicht"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr ""
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr ""
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Deine E-Mail Adresse:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Dauerhaft"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Plugin löschen - bist du sicher?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Ja! Lösche das Plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "Nein! Lösche das Plugin nicht"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Unleitung Support"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Log"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Umleitung löschen"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Hochladen"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Importieren"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Aktualisieren"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Selbsterstellte URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS Token"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404-Logs"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(Dauer, für die die Logs behalten werden)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Umleitungs-Logs"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Plugin Support"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Optionen"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "zwei Monate"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "ein Monat"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "eine Woche"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "einen Tag"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "Keine Logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Alle löschen"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Gruppe hinzufügen"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Suchen"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Gruppen"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Speichern"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Gruppe"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Passend"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Eine neue Weiterleitung hinzufügen"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Abbrechen"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Download"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Einstellungen"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Fehler (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Durchreichen"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Umleitung zu zufälligen Beitrag"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Umleitung zur URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "URL-Quelle"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Zeitpunkt"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Umleitung hinzufügen"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "Alle Module"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "Weiterleitungen anschauen"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Umleitungen"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Name"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filter"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Treffer zurücksetzen"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Aktivieren"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Deaktivieren"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Löschen"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Bearbeiten"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Letzter Zugriff"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Treffer"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Typ"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Geänderte Beiträge"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "User Agent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL und User-Agent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Ziel-URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "Nur URL"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Vermittler"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL und Vermittler"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Ausgeloggt"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Eingeloggt"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL- und Loginstatus"
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2019-01-15 15:05:12+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
  msgstr ""
299
 
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
  msgstr ""
303
 
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
 
306
  msgstr ""
307
 
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr ""
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr ""
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr ""
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr ""
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr ""
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr ""
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr ""
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr ""
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr ""
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr ""
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr ""
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr ""
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr ""
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr ""
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr ""
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr ""
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr ""
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr ""
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr ""
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr ""
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr ""
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr ""
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr ""
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr ""
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr ""
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr ""
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr ""
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr ""
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr ""
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr ""
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr ""
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
+ msgstr "Weiterleitungstester"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
+ msgstr "Ziel"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
+ msgstr "Die URL wird nicht mit Redirection umgeleitet"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
+ msgstr "URL wird mit Redirection umgeleitet"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
+ msgstr "Die Details konnten nicht geladen werden"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr ""
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
+ msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr ""
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr ""
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr ""
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr ""
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr ""
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
+ msgstr "(Beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
+ msgstr "Erzwinge eine Umleitung von HTTP zu HTTPS. Bitte stelle sicher, dass HTTPS funktioniert, bevor du es aktivierst"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
+ msgstr "Erzwinge HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
+ msgstr "DSGVO / Datenschutzinformationen"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr ""
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
+ msgstr "Bitte logge dich aus und erneut ein."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr ""
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
+ msgstr "URL und Server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relativ /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Standard /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr ""
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr ""
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
+ msgstr "Beachte, dass du HTTP-Header an PHP übergeben musst. Bitte wende dich an deinen Hosting-Anbieter, um Unterstützung zu erhalten."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Akzeptiere Sprache"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Wert im Header "
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Header Name "
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Header"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress Filter Name "
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filter Name"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
+ msgstr "Cookie-Wert"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
+ msgstr "Cookie-Name"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
+ msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr ""
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
+ msgstr "Wenn du ein Caching-System, wie etwa Cloudflare, verwendest, lies bitte das Folgende:"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
+ msgstr "URL und HTTP-Header"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
+ msgstr "URL und benutzerdefinierter Filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
+ msgstr "URL und Cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr ""
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr ""
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
+ msgstr "REST-API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
+ msgstr "Wie Redirection die REST-API verwendet - ändere das nur, wenn es unbedingt erforderlich ist"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr ""
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr ""
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr ""
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr ""
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr ""
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr ""
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr ""
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr ""
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
+ msgstr "Redirection kann nicht geladen werden ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
+ msgstr "Die WordPress-REST-API funktioniert unter %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr ""
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr ""
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr ""
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr ""
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr ""
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr ""
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
+ msgstr "Gerät"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Betriebssystem"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr ""
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr ""
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Keine IP-Protokollierung"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Vollständige IP-Protokollierung"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymisiere IP (maskiere letzten Teil)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Änderungen überwachen für %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP-Protokollierung"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(IP-Protokollierungsstufe wählen)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr ""
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr ""
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr ""
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr ""
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr ""
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr ""
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr ""
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr ""
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr ""
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr ""
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr ""
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
+ msgstr "Zeitzone"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr ""
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr ""
837
 
838
  #: redirection-settings.php:22
839
  msgid "Trash"
840
+ msgstr "Papierkorb"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr ""
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr ""
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
+ msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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}}."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Wenn du einen Bug mitteilen möchtest, lies bitte zunächst unseren {{report}}Bug Report Leitfaden{{/report}}."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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."
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr ""
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "Eine Stunde"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr ""
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "Wie lange weitergeleitete 301 URLs im Cache gehalten werden sollen (per \"Expires\" HTTP header)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Möchtest du wirklich von %s importieren?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Plugin Importer"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Folgende Redirect Plugins, von denen importiert werden kann, wurden auf deiner Website gefunden."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "Total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Import von %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr ""
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr ""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr ""
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr ""
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr ""
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr ""
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
+ msgstr "Plugin-Status"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr ""
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr ""
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr ""
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
+ msgstr "Bibliotheken"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr ""
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr ""
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr ""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr ""
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr ""
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr ""
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr ""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr ""
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr ""
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr ""
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Redirection konnte nicht geladen werden"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr ""
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr ""
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr ""
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr ""
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr ""
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr ""
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr ""
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr ""
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr ""
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr ""
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr ""
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr ""
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr ""
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr ""
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr ""
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr ""
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr ""
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr ""
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Lädt, bitte warte..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr ""
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr ""
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  msgstr ""
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr ""
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "E-Mail"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Wichtige Details"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Hilfe benötigt?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr ""
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr ""
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Entfernt"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  msgstr ""
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache Modul"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr ""
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importiere in Gruppe"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importiere eine CSV, .htaccess oder JSON Datei."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Datei hinzufügen"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Datei ausgewählt"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importiere"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Importieren beendet"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Umleitungen importiert:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Überprüfe, ob die Datei das richtige Format hat!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Schließen"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Alle Importe werden der aktuellen Datenbank hinzugefügt."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Exportieren"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr ""
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Alles"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress Weiterleitungen"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache Weiterleitungen"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx Weiterleitungen"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr ""
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr ""
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Anzeigen"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Protokolldateien können aus den Protokollseiten exportiert werden."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/Export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Protokolldateien"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 Fehler"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr ""
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr ""
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Unterstützen 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Umleitung gespeichert"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log gelöscht"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Einstellungen gespeichert"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Gruppe gespeichert"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Bist du sicher, dass du diesen Eintrag löschen möchtest?"
1280
  msgstr[1] "Bist du sicher, dass du diese Einträge löschen möchtest?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr ""
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Alle Gruppen"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301- Dauerhaft verschoben"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Gefunden"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Zeitweise Umleitung"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Dauerhafte Umleitung"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Unautorisiert"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Nicht gefunden"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Titel"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr ""
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "mit HTTP Code"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Zeige erweiterte Optionen"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Passendes Ziel"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Unpassendes Ziel"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Speichern..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Hinweis anzeigen"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Ungültige Quell URL"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Ungültige Umleitungsaktion"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr ""
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr ""
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Etwas ist schiefgelaufen 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Log Einträge (%d max)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Suche nach IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr ""
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr ""
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Anwenden"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "Erste Seite"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Vorige Seite"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Aktuelle Seite"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "von %(Seite)n"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Nächste Seite"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Letzte Seite"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s Eintrag"
1419
  msgstr[1] "%s Einträge"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Alle auswählen"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "Keine Ergebnisse"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Logs löschen - bist du sicher?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Ja! Lösche die Logs"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "Nein! Lösche die Logs nicht"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr ""
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr ""
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Deine E-Mail Adresse:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "Du hast dieses Plugin bereits unterstützt - vielen Dank!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Dauerhaft"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Plugin löschen - bist du sicher?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Ja! Lösche das Plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "Nein! Lösche das Plugin nicht"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Unleitung Support"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Log"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Umleitung löschen"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Hochladen"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Importieren"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Aktualisieren"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Selbsterstellte URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS Token"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404-Logs"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(Dauer, für die die Logs behalten werden)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Umleitungs-Logs"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Plugin Support"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Optionen"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "zwei Monate"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "ein Monat"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "eine Woche"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "einen Tag"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "Keine Logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Alle löschen"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Gruppe hinzufügen"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Suchen"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Gruppen"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Speichern"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Gruppe"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Passend"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Eine neue Weiterleitung hinzufügen"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Abbrechen"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Download"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Einstellungen"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Fehler (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Durchreichen"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Umleitung zu zufälligen Beitrag"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Umleitung zur URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "URL-Quelle"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Zeitpunkt"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Umleitung hinzufügen"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "Alle Module"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "Weiterleitungen anschauen"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Umleitungen"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Name"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filter"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Treffer zurücksetzen"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Aktivieren"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Deaktivieren"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Löschen"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Bearbeiten"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Letzter Zugriff"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Treffer"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Typ"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Geänderte Beiträge"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "User Agent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL und User-Agent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Ziel-URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "Nur URL"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Vermittler"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL und Vermittler"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Ausgeloggt"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Eingeloggt"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL- und Loginstatus"
locale/redirection-en_AU.mo CHANGED
Binary file
locale/redirection-en_AU.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: en_AU\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "Unsupported PHP"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Only the 404 page type is currently supported."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Page Type"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Enter IP addresses (one per line)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Describe the purpose of this redirect (optional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - I'm a teapot"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Forbidden"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Bad Request"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Not Modified"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - See Other"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Do nothing (ignore)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "Target URL when not matched (empty to ignore)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "Target URL when matched (empty to ignore)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Show All"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Delete all logs for these entries"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Delete all logs for this entry"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Delete Log Entries"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Group by IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Group by URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "No grouping"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignore URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Block IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirect All"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Count"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL and WordPress page type"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL and IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problem"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Good"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Check"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Check Redirect"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Check redirect for: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "What does this mean?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Not using Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Using Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Found"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Expected"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Error"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Enter full URL, including http:// or https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Redirect Tester"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Target"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL is not being redirected with Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL is being redirected with Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Unable to load details"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Enter server URL to match against"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Enter role or capability value"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Role"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Match against this browser referrer text"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Match against this browser user agent"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "The relative URL you want to redirect from"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "The target URL you want to redirect to if matched"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Force HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Privacy information"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Add New"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Please logout and login again."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL and role/capability"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL and server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relative /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Default /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Site and home protocol"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Site and home are consistent"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Header value"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Header name"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Header"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress filter name"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filter Name"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie value"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie name"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "clearing your cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL and HTTP header"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL and custom filter"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL and cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 deleted"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Raw /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "How Redirection uses the REST API - don't change unless necessary"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "None of the suggestions helped"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Unable to load Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API is working at %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API is not working so routes not checked"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Redirection routes are working"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Redirection routes"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Useragent Error"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Unknown Useragent"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Device"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operating System"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Engine"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Useragent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "No IP logging"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Full IP logging"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymise IP (mask last part)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitor changes to %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP Logging"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(select IP logging level)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Geo Info"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Agent Info"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filter by IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Referrer / User Agent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Geo IP Error"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Something went wrong obtaining this information"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "No details are known for this address."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geo IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "City"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Area"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Timezone"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geo Location"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Powered by {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Trash"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  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"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Never cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "An hour"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Redirect Cache"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Are you sure you want to import from %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Plugin Importers"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "The following redirect plugins were detected on your site and can be imported from."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Import from %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection not installed properly"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "Default WordPress \"old slugs\""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Create associated redirect (added to end of URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Magic fix ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Plugin Status"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Custom"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobile"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Feed Readers"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Libraries"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "URL Monitor Changes"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Save changes to this group"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "For example \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL Monitor"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Delete 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Delete all from IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Delete all matching \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Unable to load Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Unable to create group"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Failed to fix database tables"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Post monitor group is valid"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Post monitor group is invalid"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Post monitor group"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "All redirects have a valid group"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirects with invalid groups detected"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Valid redirect group"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Valid groups detected"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "No valid groups, so you will not be able to create any redirects"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Valid groups"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Database tables"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "The following tables are missing:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "All tables present"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Cached Redirection detected"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Please clear your browser cache and reload this page."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "The data on this page has expired, please reload."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "If you think Redirection is at fault then create an issue."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Loading, please wait..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Create Issue"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Email"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Important details"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Need help?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Gone"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache Module"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Import to group"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Import a CSV, .htaccess, or JSON file."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Click 'Add File' or drag and drop here."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Add File"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "File selected"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importing"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Finished importing"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total redirects imported:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Double-check the file is the correct format!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Close"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "All imports will be appended to the current database."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Export"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Everything"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress redirects"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache redirects"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx redirects"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Nginx rewrite rules"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Redirection JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "View"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Log files can be exported from the log pages."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/Export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Logs"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 errors"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "I'd like to support some more."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirection saved"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log deleted"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Settings saved"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Group saved"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Are you sure you want to delete this item?"
1008
  msgstr[1] "Are you sure you want to delete these items?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "pass"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "All groups"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Moved Permanently"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Found"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Temporary Redirect"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Permanent Redirect"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Unauthorised"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Not Found"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Title"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "When matched"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "with HTTP code"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Show advanced options"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Matched Target"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Unmatched Target"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Saving..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "View notice"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Invalid source URL"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Invalid redirect action"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Invalid redirect matcher"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Invalid redirect matcher"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Unable to add new redirect"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Something went wrong 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Log entries (%d max)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Search by IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Select bulk action"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Bulk Actions"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Apply"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "First page"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Prev page"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Current Page"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "of %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Next page"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Last page"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s item"
1147
  msgstr[1] "%s items"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Select All"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Sorry, something went wrong loading the data - please try again"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "No results"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Delete the logs - are you sure?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Yes! Delete the logs"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "No! Don't delete the logs"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Want to keep up to date with changes to Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Your email address:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "You've supported this plugin - thank you!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "You get useful software and I get to carry on making it better."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Forever"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Delete the plugin - are you sure?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Yes! Delete the plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "No! Don't delete the plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Redirection Support"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Log"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Delete Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Upload"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Import"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Update"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Auto-generate URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS Token"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404 Logs"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(time to keep logs for)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Redirect Logs"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Plugin Support"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Options"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Two months"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "A month"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "A week"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "A day"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "No logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Delete All"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Add Group"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Search"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Groups"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Save"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Group"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Match"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Add new redirection"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancel"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Download"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Settings"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Error (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Pass-through"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirect to random post"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirect to URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Invalid group when creating redirect"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "Source URL"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Date"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Add Redirect"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "All modules"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "View Redirects"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirects"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Name"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filter"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Reset hits"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Enable"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Disable"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Delete"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Edit"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Last Access"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Hits"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Type"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Modified Posts"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "User Agent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL and user agent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Target URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL only"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referrer"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL and referrer"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Logged Out"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Logged In"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL and login status"
11
  "Language: en_AU\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Only the 404 page type is currently supported."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Page Type"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Enter IP addresses (one per line)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Describe the purpose of this redirect (optional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - I'm a teapot"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Forbidden"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Bad Request"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Not Modified"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - See Other"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Do nothing (ignore)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "Target URL when not matched (empty to ignore)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "Target URL when matched (empty to ignore)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Show All"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Delete all logs for these entries"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Delete all logs for this entry"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Delete Log Entries"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Group by IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Group by URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "No grouping"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignore URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Block IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirect All"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Count"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL and WordPress page type"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL and IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problem"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Good"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Check"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Check Redirect"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Check redirect for: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "What does this mean?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Not using Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Using Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Found"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Expected"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Error"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Enter full URL, including http:// or https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Redirect Tester"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Target"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL is not being redirected with Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL is being redirected with Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Unable to load details"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Enter server URL to match against"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Enter role or capability value"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Role"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Match against this browser referrer text"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Match against this browser user agent"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "The relative URL you want to redirect from"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "The target URL you want to redirect to if matched"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Force HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Privacy information"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Add New"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Please logout and login again."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL and role/capability"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL and server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relative /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Default /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Site and home protocol"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Site and home are consistent"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Header value"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Header name"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Header"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress filter name"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filter Name"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie value"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie name"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "clearing your cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL and HTTP header"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL and custom filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL and cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 deleted"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Raw /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "How Redirection uses the REST API - don't change unless necessary"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "None of the suggestions helped"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Unable to load Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API is working at %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API is not working so routes not checked"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Redirection routes are working"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Redirection routes"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Useragent Error"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Unknown Useragent"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Device"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operating System"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Engine"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Useragent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "No IP logging"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Full IP logging"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymise IP (mask last part)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitor changes to %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP Logging"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(select IP logging level)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Geo Info"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Agent Info"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filter by IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Referrer / User Agent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Geo IP Error"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Something went wrong obtaining this information"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "No details are known for this address."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geo IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "City"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Area"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Timezone"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geo Location"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Powered by {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Trash"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  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"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Never cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "An hour"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Redirect Cache"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Are you sure you want to import from %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Plugin Importers"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "The following redirect plugins were detected on your site and can be imported from."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Import from %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "Default WordPress \"old slugs\""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Create associated redirect (added to end of URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Magic fix ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Plugin Status"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Custom"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobile"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Feed Readers"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Libraries"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "URL Monitor Changes"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Save changes to this group"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "For example \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL Monitor"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Delete 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Delete all from IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Delete all matching \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Unable to load Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Unable to create group"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Post monitor group is valid"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Post monitor group is invalid"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Post monitor group"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "All redirects have a valid group"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirects with invalid groups detected"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Valid redirect group"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Valid groups detected"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "No valid groups, so you will not be able to create any redirects"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Valid groups"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Database tables"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "The following tables are missing:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "All tables present"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Cached Redirection detected"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Please clear your browser cache and reload this page."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "The data on this page has expired, please reload."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "If you think Redirection is at fault then create an issue."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Loading, please wait..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Create Issue"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Email"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Important details"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Need help?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Gone"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache Module"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Import to group"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Import a CSV, .htaccess, or JSON file."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Click 'Add File' or drag and drop here."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Add File"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "File selected"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importing"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Finished importing"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total redirects imported:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Double-check the file is the correct format!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Close"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "All imports will be appended to the current database."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Export"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Everything"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress redirects"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache redirects"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx redirects"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Nginx rewrite rules"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Redirection JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "View"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Log files can be exported from the log pages."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/Export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Logs"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 errors"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "I'd like to support some more."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirection saved"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log deleted"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Settings saved"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Group saved"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Are you sure you want to delete this item?"
1280
  msgstr[1] "Are you sure you want to delete these items?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "pass"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "All groups"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Moved Permanently"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Found"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Temporary Redirect"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Permanent Redirect"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Unauthorised"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Not Found"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Title"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "When matched"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "with HTTP code"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Show advanced options"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Matched Target"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Unmatched Target"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Saving..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "View notice"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Invalid source URL"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Invalid redirect action"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Invalid redirect matcher"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Unable to add new redirect"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Something went wrong 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Log entries (%d max)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Search by IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Select bulk action"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Bulk Actions"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Apply"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "First page"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Prev page"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Current Page"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "of %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Next page"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Last page"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s item"
1419
  msgstr[1] "%s items"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Select All"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Sorry, something went wrong loading the data - please try again"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "No results"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Delete the logs - are you sure?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Yes! Delete the logs"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "No! Don't delete the logs"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Want to keep up to date with changes to Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Your email address:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "You've supported this plugin - thank you!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "You get useful software and I get to carry on making it better."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Forever"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Delete the plugin - are you sure?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Yes! Delete the plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "No! Don't delete the plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Redirection Support"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Log"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Delete Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Upload"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Import"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Update"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Auto-generate URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS Token"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404 Logs"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(time to keep logs for)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Redirect Logs"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Plugin Support"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Options"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Two months"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "A month"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "A week"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "A day"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "No logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Delete All"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Add Group"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Search"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Groups"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Save"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Group"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Match"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Add new redirection"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancel"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Download"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Settings"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Error (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Pass-through"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirect to random post"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirect to URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Invalid group when creating redirect"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "Source URL"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Date"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Add Redirect"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "All modules"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "View Redirects"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirects"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Name"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filter"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Reset hits"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Enable"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Disable"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Delete"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Edit"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Last Access"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Hits"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Modified Posts"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "User Agent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL and user agent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Target URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL only"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referrer"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL and referrer"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Logged Out"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Logged In"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL and login status"
locale/redirection-en_CA.mo CHANGED
Binary file
locale/redirection-en_CA.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "Unsupported PHP"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Only the 404 page type is currently supported."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Page Type"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Enter IP addresses (one per line)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Describe the purpose of this redirect (optional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - I'm a teapot"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Forbidden"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Bad Request"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Not Modified"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - See Other"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Do nothing (ignore)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "Target URL when not matched (empty to ignore)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "Target URL when matched (empty to ignore)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Show All"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Delete all logs for these entries"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Delete all logs for this entry"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Delete Log Entries"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Group by IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Group by URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "No grouping"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignore URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Block IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirect All"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Count"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL and WordPress page type"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL and IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problem"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Good"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Check"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Check Redirect"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Check redirect for: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "What does this mean?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Not using Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Using Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Found"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Expected"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Error"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Enter full URL, including http:// or https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Redirect Tester"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Target"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL is not being redirected with Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL is being redirected with Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Unable to load details"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Enter server URL to match against"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Enter role or capability value"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Role"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Match against this browser referrer text"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Match against this browser user agent"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "The relative URL you want to redirect from"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "The target URL you want to redirect to if matched"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Force HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Privacy information"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Add New"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Please logout and login again."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL and role/capability"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL and server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relative /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Default /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Site and home protocol"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Site and home are consistent"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Header value"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Header name"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Header"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress filter name"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filter Name"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie value"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie name"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "clearing your cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL and HTTP header"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL and custom filter"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL and cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 deleted"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Raw /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "How Redirection uses the REST API - don't change unless necessary"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "None of the suggestions helped"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Unable to load Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API is working at %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API is not working so routes not checked"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Redirection routes are working"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Redirection routes"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Useragent Error"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Unknown Useragent"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Device"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operating System"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Engine"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Useragent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "No IP logging"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Full IP logging"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymize IP (mask last part)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitor changes to %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP Logging"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(select IP logging level)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Geo Info"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Agent Info"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filter by IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Referrer / User Agent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Geo IP Error"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Something went wrong obtaining this information"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "No details are known for this address."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geo IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "City"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Area"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Timezone"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geo Location"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Powered by {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Trash"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  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"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Never cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "An hour"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Redirect Cache"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Are you sure you want to import from %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Plugin Importers"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "The following redirect plugins were detected on your site and can be imported from."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Import from %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection not installed properly"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please upd
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "Default WordPress \"old slugs\""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Create associated redirect (added to end of URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Magic fix ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Plugin Status"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Custom"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobile"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Feed Readers"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Libraries"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "URL Monitor Changes"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Save changes to this group"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "For example \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL Monitor"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Delete 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Delete all from IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Delete all matching \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Unable to load Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Unable to create group"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Failed to fix database tables"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Post monitor group is valid"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Post monitor group is invalid"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Post monitor group"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "All redirects have a valid group"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirects with invalid groups detected"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Valid redirect group"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Valid groups detected"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "No valid groups, so you will not be able to create any redirects"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Valid groups"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Database tables"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "The following tables are missing:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "All tables present"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Cached Redirection detected"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Please clear your browser cache and reload this page."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "The data on this page has expired, please reload."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "If you think Redirection is at fault then create an issue."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Loading, please wait..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Create Issue"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Email"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Important details"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Need help?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Gone"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache Module"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Import to group"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Import a CSV, .htaccess, or JSON file."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Click 'Add File' or drag and drop here."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Add File"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "File selected"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importing"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Finished importing"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total redirects imported:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Double-check the file is the correct format!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Close"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "All imports will be appended to the current database."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Export"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Everything"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress redirects"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache redirects"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx redirects"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Nginx rewrite rules"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Redirection JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "View"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Log files can be exported from the log pages."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/Export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Logs"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 errors"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "I'd like to support some more."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirection saved"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log deleted"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Settings saved"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Group saved"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Are you sure you want to delete this item?"
1008
  msgstr[1] "Are you sure you want to delete these items?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "pass"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "All groups"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Moved Permanently"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Found"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Temporary Redirect"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Permanent Redirect"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Unauthorized"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Not Found"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Title"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "When matched"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "with HTTP code"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Show advanced options"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Matched Target"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Unmatched Target"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Saving..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "View notice"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Invalid source URL"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Invalid redirect action"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Invalid redirect matcher"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Invalid redirect matcher"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Unable to add new redirect"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Something went wrong 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Log entries (%d max)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Search by IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Select bulk action"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Bulk Actions"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Apply"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "First page"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Prev page"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Current Page"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "of %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Next page"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Last page"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s item"
1147
  msgstr[1] "%s items"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Select All"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Sorry, something went wrong loading the data - please try again"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "No results"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Delete the logs - are you sure?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Yes! Delete the logs"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "No! Don't delete the logs"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Want to keep up to date with changes to Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Your email address:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "You've supported this plugin - thank you!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "You get useful software and I get to carry on making it better."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Forever"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Delete the plugin - are you sure?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Yes! Delete the plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "No! Don't delete the plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Redirection Support"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Log"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Delete Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Upload"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Import"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Update"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Auto-generate URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS Token"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404 Logs"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(time to keep logs for)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Redirect Logs"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Plugin Support"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Options"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Two months"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "A month"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "A week"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "A day"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "No logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Delete All"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Add Group"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Search"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Groups"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Save"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Group"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Match"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Add new redirection"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancel"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Download"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Settings"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Error (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Pass-through"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirect to random post"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirect to URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Invalid group when creating redirect"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "Source URL"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Date"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Add Redirect"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "All modules"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "View Redirects"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirects"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Name"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filter"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Reset hits"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Enable"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Disable"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Delete"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Edit"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Last Access"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Hits"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Type"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Modified Posts"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "User Agent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL and user agent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Target URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL only"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referrer"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL and referrer"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Logged Out"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Logged In"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL and login status"
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Only the 404 page type is currently supported."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Page Type"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Enter IP addresses (one per line)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Describe the purpose of this redirect (optional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - I'm a teapot"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Forbidden"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Bad Request"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Not Modified"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - See Other"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Do nothing (ignore)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "Target URL when not matched (empty to ignore)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "Target URL when matched (empty to ignore)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Show All"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Delete all logs for these entries"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Delete all logs for this entry"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Delete Log Entries"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Group by IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Group by URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "No grouping"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignore URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Block IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirect All"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Count"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL and WordPress page type"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL and IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problem"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Good"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Check"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Check Redirect"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Check redirect for: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "What does this mean?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Not using Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Using Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Found"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Expected"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Error"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Enter full URL, including http:// or https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Redirect Tester"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Target"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL is not being redirected with Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL is being redirected with Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Unable to load details"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Enter server URL to match against"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Enter role or capability value"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Role"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Match against this browser referrer text"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Match against this browser user agent"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "The relative URL you want to redirect from"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "The target URL you want to redirect to if matched"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Force HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Privacy information"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Add New"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Please logout and login again."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL and role/capability"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL and server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relative /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Default /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Site and home protocol"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Site and home are consistent"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Header value"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Header name"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Header"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress filter name"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filter Name"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie value"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie name"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "clearing your cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL and HTTP header"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL and custom filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL and cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 deleted"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Raw /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "How Redirection uses the REST API - don't change unless necessary"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "None of the suggestions helped"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Unable to load Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API is working at %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API is not working so routes not checked"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Redirection routes are working"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Redirection routes"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Useragent Error"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Unknown Useragent"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Device"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operating System"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Engine"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Useragent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "No IP logging"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Full IP logging"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymize IP (mask last part)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitor changes to %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP Logging"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(select IP logging level)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Geo Info"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Agent Info"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filter by IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Referrer / User Agent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Geo IP Error"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Something went wrong obtaining this information"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "No details are known for this address."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geo IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "City"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Area"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Timezone"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geo Location"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Powered by {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Trash"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  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"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Never cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "An hour"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Redirect Cache"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Are you sure you want to import from %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Plugin Importers"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "The following redirect plugins were detected on your site and can be imported from."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Import from %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "Default WordPress \"old slugs\""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Create associated redirect (added to end of URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Magic fix ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Plugin Status"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Custom"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobile"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Feed Readers"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Libraries"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "URL Monitor Changes"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Save changes to this group"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "For example \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL Monitor"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Delete 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Delete all from IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Delete all matching \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Unable to load Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Unable to create group"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Post monitor group is valid"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Post monitor group is invalid"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Post monitor group"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "All redirects have a valid group"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirects with invalid groups detected"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Valid redirect group"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Valid groups detected"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "No valid groups, so you will not be able to create any redirects"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Valid groups"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Database tables"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "The following tables are missing:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "All tables present"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Cached Redirection detected"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Please clear your browser cache and reload this page."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "The data on this page has expired, please reload."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "If you think Redirection is at fault then create an issue."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Loading, please wait..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Create Issue"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Email"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Important details"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Need help?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Gone"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache Module"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Import to group"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Import a CSV, .htaccess, or JSON file."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Click 'Add File' or drag and drop here."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Add File"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "File selected"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importing"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Finished importing"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total redirects imported:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Double-check the file is the correct format!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Close"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "All imports will be appended to the current database."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Export"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Everything"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress redirects"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache redirects"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx redirects"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Nginx rewrite rules"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Redirection JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "View"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Log files can be exported from the log pages."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/Export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Logs"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 errors"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "I'd like to support some more."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirection saved"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log deleted"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Settings saved"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Group saved"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Are you sure you want to delete this item?"
1280
  msgstr[1] "Are you sure you want to delete these items?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "pass"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "All groups"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Moved Permanently"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Found"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Temporary Redirect"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Permanent Redirect"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Unauthorized"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Not Found"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Title"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "When matched"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "with HTTP code"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Show advanced options"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Matched Target"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Unmatched Target"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Saving..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "View notice"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Invalid source URL"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Invalid redirect action"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Invalid redirect matcher"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Unable to add new redirect"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Something went wrong 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Log entries (%d max)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Search by IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Select bulk action"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Bulk Actions"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Apply"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "First page"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Prev page"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Current Page"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "of %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Next page"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Last page"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s item"
1419
  msgstr[1] "%s items"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Select All"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Sorry, something went wrong loading the data - please try again"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "No results"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Delete the logs - are you sure?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Yes! Delete the logs"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "No! Don't delete the logs"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Want to keep up to date with changes to Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Your email address:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "You've supported this plugin - thank you!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "You get useful software and I get to carry on making it better."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Forever"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Delete the plugin - are you sure?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Yes! Delete the plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "No! Don't delete the plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Redirection Support"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Log"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Delete Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Upload"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Import"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Update"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Auto-generate URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS Token"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404 Logs"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(time to keep logs for)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Redirect Logs"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Plugin Support"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Options"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Two months"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "A month"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "A week"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "A day"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "No logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Delete All"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Add Group"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Search"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Groups"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Save"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Group"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Match"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Add new redirection"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancel"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Download"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Settings"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Error (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Pass-through"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirect to random post"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirect to URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Invalid group when creating redirect"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "Source URL"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Date"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Add Redirect"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "All modules"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "View Redirects"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirects"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Name"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filter"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Reset hits"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Enable"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Disable"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Delete"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Edit"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Last Access"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Hits"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Modified Posts"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "User Agent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL and user agent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Target URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL only"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referrer"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL and referrer"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Logged Out"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Logged In"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL and login status"
locale/redirection-en_GB.mo CHANGED
Binary file
locale/redirection-en_GB.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "Unsupported PHP"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Only the 404 page type is currently supported."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Page Type"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Enter IP addresses (one per line)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Describe the purpose of this redirect (optional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - I'm a teapot"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Forbidden"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Bad Request"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Not Modified"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - See Other"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Do nothing (ignore)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "Target URL when not matched (empty to ignore)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "Target URL when matched (empty to ignore)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Show All"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Delete all logs for these entries"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Delete all logs for this entry"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Delete Log Entries"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Group by IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Group by URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "No grouping"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignore URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Block IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirect All"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Count"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL and WordPress page type"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL and IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problem"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Good"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Check"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Check Redirect"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Check redirect for: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "What does this mean?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Not using Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Using Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Found"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Expected"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Error"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Enter full URL, including http:// or https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Redirect Tester"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Target"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL is not being redirected with Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL is being redirected with Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Unable to load details"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Enter server URL to match against"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Enter role or capability value"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Role"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Match against this browser referrer text"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Match against this browser user agent"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "The relative URL you want to redirect from"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "The target URL you want to redirect to if matched"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Force HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Privacy information"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Add New"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Please logout and login again."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL and role/capability"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL and server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relative /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Default /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Site and home protocol"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Site and home are consistent"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Header value"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Header name"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Header"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress filter name"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filter Name"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie value"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie name"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "clearing your cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL and HTTP header"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL and custom filter"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL and cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 deleted"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Raw /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "How Redirection uses the REST API - don't change unless necessary"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "None of the suggestions helped"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Unable to load Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API is working at %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API is not working so routes not checked"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Redirection routes are working"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Redirection routes"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "User Agent Error"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Unknown User Agent"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Device"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operating System"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Engine"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "User Agent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "No IP logging"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Full IP logging"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymise IP (mask last part)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitor changes to %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP Logging"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(select IP logging level)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Geo Info"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Agent Info"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filter by IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Referrer / User Agent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Geo IP Error"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Something went wrong obtaining this information"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "No details are known for this address."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geo IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "City"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Area"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Timezone"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geo Location"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Powered by {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Bin"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  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"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Never cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "An hour"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Redirect Cache"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Are you sure you want to import from %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Plugin Importers"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "The following redirect plugins were detected on your site and can be imported from."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Import from %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection not installed properly"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please upd
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "Default WordPress \"old slugs\""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Create associated redirect (added to end of URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Magic fix ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Plugin Status"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Custom"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobile"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Feed Readers"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Libraries"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "URL Monitor Changes"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Save changes to this group"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "For example \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL Monitor"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Delete 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Delete all from IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Delete all matching \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Unable to load Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Unable to create group"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Failed to fix database tables"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Post monitor group is valid"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Post monitor group is invalid"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Post monitor group"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "All redirects have a valid group"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirects with invalid groups detected"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Valid redirect group"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Valid groups detected"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "No valid groups, so you will not be able to create any redirects"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Valid groups"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Database tables"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "The following tables are missing:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "All tables present"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Cached Redirection detected"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Please clear your browser cache and reload this page."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "The data on this page has expired, please reload."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "If you think Redirection is at fault then create an issue."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Loading, please wait..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Create Issue"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Email"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Important details"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Need help?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Gone"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache Module"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Import to group"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Import a CSV, .htaccess, or JSON file."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Click 'Add File' or drag and drop here."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Add File"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "File selected"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importing"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Finished importing"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total redirects imported:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Double-check the file is the correct format!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Close"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "All imports will be appended to the current database."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Export"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Everything"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress redirects"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache redirects"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx redirects"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Nginx rewrite rules"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Redirection JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "View"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Log files can be exported from the log pages."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/Export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Logs"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 errors"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "I'd like to support some more."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirection saved"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log deleted"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Settings saved"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Group saved"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Are you sure you want to delete this item?"
1008
  msgstr[1] "Are you sure you want to delete these items?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "pass"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "All groups"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Moved Permanently"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Found"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Temporary Redirect"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Permanent Redirect"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Unauthorized"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Not Found"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Title"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "When matched"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "with HTTP code"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Show advanced options"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Matched Target"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Unmatched Target"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Saving..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "View notice"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Invalid source URL"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Invalid redirect action"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Invalid redirect matcher"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Invalid redirect matcher"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Unable to add new redirect"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Something went wrong 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Log entries (%d max)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Search by IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Select bulk action"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Bulk Actions"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Apply"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "First page"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Prev page"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Current Page"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "of %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Next page"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Last page"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s item"
1147
  msgstr[1] "%s items"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Select All"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Sorry, something went wrong loading the data - please try again"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "No results"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Delete the logs - are you sure?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Yes! Delete the logs"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "No! Don't delete the logs"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Want to keep up to date with changes to Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Your email address:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "You've supported this plugin - thank you!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "You get useful software and I get to carry on making it better."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Forever"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Delete the plugin - are you sure?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Yes! Delete the plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "No! Don't delete the plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Redirection Support"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Log"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Delete Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Upload"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Import"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Update"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Auto-generate URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS Token"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404 Logs"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(time to keep logs for)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Redirect Logs"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Plugin Support"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Options"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Two months"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "A month"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "A week"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "A day"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "No logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Delete All"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Add Group"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Search"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Groups"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Save"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Group"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Match"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Add new redirection"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancel"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Download"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Settings"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Error (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Pass-through"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirect to random post"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirect to URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Invalid group when creating redirect"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "Source URL"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Date"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Add Redirect"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "All modules"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "View Redirects"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirects"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Name"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filter"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Reset hits"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Enable"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Disable"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Delete"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Edit"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Last Access"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Hits"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Type"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Modified Posts"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "User Agent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL and user agent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Target URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL only"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referrer"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL and referrer"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Logged Out"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Logged In"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL and login status"
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Only the 404 page type is currently supported."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Page Type"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Enter IP addresses (one per line)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Describe the purpose of this redirect (optional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - I'm a teapot"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Forbidden"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Bad Request"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Not Modified"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - See Other"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Do nothing (ignore)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "Target URL when not matched (empty to ignore)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "Target URL when matched (empty to ignore)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Show All"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Delete all logs for these entries"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Delete all logs for this entry"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Delete Log Entries"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Group by IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Group by URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "No grouping"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignore URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Block IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirect All"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Count"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL and WordPress page type"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL and IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problem"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Good"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Check"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Check Redirect"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Check redirect for: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "What does this mean?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Not using Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Using Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Found"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Expected"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Error"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Enter full URL, including http:// or https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Redirect Tester"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Target"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL is not being redirected with Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL is being redirected with Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Unable to load details"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Enter server URL to match against"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Enter role or capability value"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Role"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Match against this browser referrer text"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Match against this browser user agent"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "The relative URL you want to redirect from"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "The target URL you want to redirect to if matched"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Force HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Privacy information"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Add New"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Please logout and login again."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL and role/capability"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL and server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relative /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Default /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Site and home protocol"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Site and home are consistent"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Header value"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Header name"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Header"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress filter name"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filter Name"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie value"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie name"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "clearing your cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL and HTTP header"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL and custom filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL and cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 deleted"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Raw /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "How Redirection uses the REST API - don't change unless necessary"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "None of the suggestions helped"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Unable to load Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API is working at %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API is not working so routes not checked"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Redirection routes are working"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Redirection routes"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "User Agent Error"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Unknown User Agent"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Device"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operating System"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Engine"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "User Agent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "No IP logging"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Full IP logging"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymise IP (mask last part)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitor changes to %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP Logging"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(select IP logging level)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Geo Info"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Agent Info"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filter by IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Referrer / User Agent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Geo IP Error"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Something went wrong obtaining this information"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "No details are known for this address."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geo IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "City"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Area"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Timezone"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geo Location"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Powered by {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Bin"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  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"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Never cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "An hour"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Redirect Cache"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Are you sure you want to import from %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Plugin Importers"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "The following redirect plugins were detected on your site and can be imported from."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Import from %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "Default WordPress \"old slugs\""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Create associated redirect (added to end of URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Magic fix ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Plugin Status"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Custom"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobile"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Feed Readers"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Libraries"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "URL Monitor Changes"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Save changes to this group"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "For example \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL Monitor"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Delete 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Delete all from IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Delete all matching \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Unable to load Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Unable to create group"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Post monitor group is valid"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Post monitor group is invalid"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Post monitor group"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "All redirects have a valid group"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirects with invalid groups detected"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Valid redirect group"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Valid groups detected"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "No valid groups, so you will not be able to create any redirects"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Valid groups"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Database tables"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "The following tables are missing:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "All tables present"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Cached Redirection detected"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Please clear your browser cache and reload this page."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "The data on this page has expired, please reload."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "If you think Redirection is at fault then create an issue."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Loading, please wait..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Create Issue"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Email"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Important details"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Need help?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Gone"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache Module"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Import to group"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Import a CSV, .htaccess, or JSON file."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Click 'Add File' or drag and drop here."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Add File"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "File selected"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importing"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Finished importing"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total redirects imported:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Double-check the file is the correct format!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Close"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "All imports will be appended to the current database."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Export"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Everything"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress redirects"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache redirects"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx redirects"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Nginx rewrite rules"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Redirection JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "View"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Log files can be exported from the log pages."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/Export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Logs"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 errors"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "I'd like to support some more."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirection saved"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log deleted"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Settings saved"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Group saved"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Are you sure you want to delete this item?"
1280
  msgstr[1] "Are you sure you want to delete these items?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "pass"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "All groups"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Moved Permanently"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Found"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Temporary Redirect"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Permanent Redirect"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Unauthorized"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Not Found"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Title"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "When matched"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "with HTTP code"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Show advanced options"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Matched Target"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Unmatched Target"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Saving..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "View notice"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Invalid source URL"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Invalid redirect action"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Invalid redirect matcher"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Unable to add new redirect"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Something went wrong 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Log entries (%d max)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Search by IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Select bulk action"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Bulk Actions"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Apply"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "First page"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Prev page"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Current Page"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "of %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Next page"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Last page"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s item"
1419
  msgstr[1] "%s items"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Select All"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Sorry, something went wrong loading the data - please try again"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "No results"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Delete the logs - are you sure?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Yes! Delete the logs"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "No! Don't delete the logs"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Want to keep up to date with changes to Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Your email address:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "You've supported this plugin - thank you!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "You get useful software and I get to carry on making it better."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Forever"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Delete the plugin - are you sure?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Yes! Delete the plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "No! Don't delete the plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Manage all your 301 redirects and monitor 404 errors"
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Redirection Support"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Log"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Delete Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Upload"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Import"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Update"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Auto-generate URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS Token"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404 Logs"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(time to keep logs for)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Redirect Logs"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "I'm a nice person and I have helped support the author of this plugin"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Plugin Support"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Options"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Two months"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "A month"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "A week"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "A day"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "No logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Delete All"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Add Group"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Search"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Groups"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Save"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Group"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Match"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Add new redirection"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancel"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Download"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Settings"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Error (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Pass-through"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirect to random post"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirect to URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Invalid group when creating redirect"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "Source URL"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Date"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Add Redirect"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "All modules"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "View Redirects"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirects"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Name"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filter"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Reset hits"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Enable"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Disable"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Delete"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Edit"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Last Access"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Hits"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Modified Posts"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "User Agent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL and user agent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Target URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL only"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referrer"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL and referrer"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Logged Out"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Logged In"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL and login status"
locale/redirection-en_NZ.mo CHANGED
Binary file
locale/redirection-en_NZ.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "Unsupported PHP"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Only the 404 page type is currently supported."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Page Type"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Enter IP addresses (one per line)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Describe the purpose of this redirect (optional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - I'm a teapot"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Forbidden"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Bad Request"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Not Modified"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - See Other"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Do nothing (ignore)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "Target URL when not matched (empty to ignore)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "Target URL when matched (empty to ignore)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Show All"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Delete all logs for these entries"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Delete all logs for this entry"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Delete Log Entries"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Group by IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Group by URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "No grouping"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignore URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Block IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirect All"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Count"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL and WordPress page type"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL and IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problem"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Good"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Check"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Check Redirect"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Check redirect for: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "What does this mean?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Not using Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Using Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Found"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Expected"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Error"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Enter full URL, including http:// or https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Redirect Tester"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Target"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL is not being redirected with Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL is being redirected with Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Unable to load details"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Enter server URL to match against"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Enter role or capability value"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Role"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Match against this browser referrer text"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Match against this browser user agent"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "The relative URL you want to redirect from"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "The target URL you want to redirect to if matched"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Force HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Privacy information"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Add New"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Please logout and login again."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL and role/capability"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL and server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relative /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Default /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Site and home protocol"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Site and home are consistent"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Header value"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Header name"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Header"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress filter name"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filter Name"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie value"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie name"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "clearing your cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL and HTTP header"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL and custom filter"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL and cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 deleted"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Raw /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "How Redirection uses the REST API - don't change unless necessary"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "None of the suggestions helped"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Unable to load Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API is working at %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API is not working so routes not checked"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Redirection routes are working"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Redirection routes"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Useragent Error"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Unknown Useragent"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Device"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operating System"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Engine"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Useragent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "No IP logging"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Full IP logging"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymise IP (mask last part)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitor changes to %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP Logging"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(select IP logging level)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Geo Info"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Agent Info"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filter by IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Referrer / User Agent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Geo IP Error"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Something went wrong obtaining this information"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "No details are known for this address."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geo IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "City"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Area"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Timezone"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geo Location"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Powered by {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Trash"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  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"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Never cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "An hour"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Redirect Cache"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Are you sure you want to import from %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Plugin Importers"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "The following redirect plugins were detected on your site and can be imported from."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Import from %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection not installed properly"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "Default WordPress \"old slugs\""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Create associated redirect (added to end of URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Magic fix ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Plugin Status"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Custom"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobile"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Feed Readers"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Libraries"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "URL Monitor Changes"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Save changes to this group"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "For example \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL Monitor"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Delete 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Delete all from IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Delete all matching \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Unable to load Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Unable to create group"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Failed to fix database tables"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Post monitor group is valid"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Post monitor group is invalid"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Post monitor group"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "All redirects have a valid group"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirects with invalid groups detected"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Valid redirect group"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Valid groups detected"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "No valid groups, so you will not be able to create any redirects"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Valid groups"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Database tables"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "The following tables are missing:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "All tables present"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Cached Redirection detected"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Please clear your browser cache and reload this page."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "The data on this page has expired, please reload."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "If you think Redirection is at fault then create an issue."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Loading, please wait..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Create Issue"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Email"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Important details"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Need help?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Gone"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache Module"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Import to group"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Import a CSV, .htaccess, or JSON file."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Click 'Add File' or drag and drop here."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Add File"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "File selected"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importing"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Finished importing"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total redirects imported:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Double-check the file is the correct format!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Close"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "All imports will be appended to the current database."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Export"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Everything"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress redirects"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache redirects"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx redirects"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Nginx rewrite rules"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Redirection JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "View"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Log files can be exported from the log pages."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/Export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Logs"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 errors"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "I'd like to support some more."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirection saved"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log deleted"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Settings saved"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Group saved"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Are you sure you want to delete this item?"
1008
  msgstr[1] "Are you sure you want to delete these items?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "pass"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "All groups"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Moved Permanently"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Found"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Temporary Redirect"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Permanent Redirect"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Unauthorised"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Not Found"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Title"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "When matched"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "with HTTP code"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Show advanced options"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Matched Target"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Unmatched Target"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Saving..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "View notice"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Invalid source URL"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Invalid redirect action"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Invalid redirect matcher"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Invalid redirect matcher"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Unable to add new redirect"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Something went wrong 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Log entries (%d max)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Search by IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Select bulk action"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Bulk Actions"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Apply"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "First page"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Prev page"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Current Page"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "of %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Next page"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Last page"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s item"
1147
  msgstr[1] "%s items"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Select All"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Sorry, something went wrong loading the data - please try again"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "No results"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Delete the logs - are you sure?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Yes! Delete the logs"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "No! Don't delete the logs"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Want to keep up to date with changes to Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Your email address:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "You've supported this plugin - thank you!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "You get useful software and I get to carry on making it better."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Forever"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Delete the plugin - are you sure?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Yes! Delete the plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "No! Don't delete the plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Redirection Support"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Log"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Delete Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Upload"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Import"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Update"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Auto-generate URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS Token"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404 Logs"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(time to keep logs for)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Redirect Logs"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Plugin Support"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Options"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Two months"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "A month"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "A week"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "A day"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "No logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Delete All"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Add Group"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Search"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Groups"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Save"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Group"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Match"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Add new redirection"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancel"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Download"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Settings"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Error (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Pass-through"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirect to random post"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirect to URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Invalid group when creating redirect"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "Source URL"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Date"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Add Redirect"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "All modules"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "View Redirects"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirects"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Name"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filter"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Reset hits"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Enable"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Disable"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Delete"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Edit"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Last Access"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Hits"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Type"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Modified Posts"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "User Agent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL and user agent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Target URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL only"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referrer"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL and referrer"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Logged Out"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Logged In"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL and login status"
11
  "Language: en_NZ\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  msgstr "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Please do not try and redirect all your 404s - this is not a good thing to do."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Only the 404 page type is currently supported."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Page Type"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Enter IP addresses (one per line)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Describe the purpose of this redirect (optional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - I'm a teapot"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Forbidden"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Bad Request"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Not Modified"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - See Other"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Do nothing (ignore)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "Target URL when not matched (empty to ignore)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "Target URL when matched (empty to ignore)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Show All"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Delete all logs for these entries"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Delete all logs for this entry"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Delete Log Entries"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Group by IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Group by URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "No grouping"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignore URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Block IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirect All"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Count"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL and WordPress page type"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL and IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problem"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Good"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Check"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Check Redirect"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Check redirect for: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "What does this mean?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Not using Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Using Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Found"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Expected"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Error"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Enter full URL, including http:// or https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Redirect Tester"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Target"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL is not being redirected with Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL is being redirected with Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Unable to load details"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Enter server URL to match against"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Enter role or capability value"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Role"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Match against this browser referrer text"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Match against this browser user agent"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "The relative URL you want to redirect from"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "The target URL you want to redirect to if matched"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Force HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Privacy information"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Add New"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Please logout and login again."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL and role/capability"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL and server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relative /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Default /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Site and home protocol"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Site and home are consistent"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Header value"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Header name"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Header"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress filter name"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filter Name"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie value"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie name"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "clearing your cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "If you are using a caching system such as Cloudflare then please read this: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL and HTTP header"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL and custom filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL and cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 deleted"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Raw /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "How Redirection uses the REST API - don't change unless necessary"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "None of the suggestions helped"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Unable to load Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API is working at %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API is not working so routes not checked"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Redirection routes are working"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Redirection routes"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Useragent Error"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Unknown Useragent"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Device"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operating System"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Engine"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Useragent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "No IP logging"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Full IP logging"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymise IP (mask last part)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitor changes to %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP Logging"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(select IP logging level)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Geo Info"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Agent Info"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filter by IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Referrer / User Agent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Geo IP Error"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Something went wrong obtaining this information"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "No details are known for this address."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geo IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "City"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Area"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Timezone"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geo Location"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Powered by {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Trash"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  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"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Never cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "An hour"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Redirect Cache"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Are you sure you want to import from %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Plugin Importers"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "The following redirect plugins were detected on your site and can be imported from."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Import from %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "Default WordPress \"old slugs\""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Create associated redirect (added to end of URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Magic fix ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Plugin Status"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Custom"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobile"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Feed Readers"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Libraries"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "URL Monitor Changes"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Save changes to this group"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "For example \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL Monitor"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Delete 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Delete all from IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Delete all matching \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Your server has rejected the request for being too big. You will need to change it to continue."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Also check if your browser is able to load <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Unable to load Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Unable to create group"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Post monitor group is valid"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Post monitor group is invalid"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Post monitor group"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "All redirects have a valid group"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirects with invalid groups detected"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Valid redirect group"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Valid groups detected"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "No valid groups, so you will not be able to create any redirects"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Valid groups"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Database tables"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "The following tables are missing:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "All tables present"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Cached Redirection detected"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Please clear your browser cache and reload this page."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "The data on this page has expired, please reload."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "If you think Redirection is at fault then create an issue."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "This may be caused by another plugin - look at your browser's error console for more details."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Loading, please wait..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection is not working. Try clearing your browser cache and reloading this page."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Create Issue"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Email"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Important details"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Need help?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Gone"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache Module"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Import to group"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Import a CSV, .htaccess, or JSON file."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Click 'Add File' or drag and drop here."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Add File"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "File selected"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importing"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Finished importing"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total redirects imported:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Double-check the file is the correct format!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Close"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "All imports will be appended to the current database."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Export"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Everything"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress redirects"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache redirects"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx redirects"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Nginx rewrite rules"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Redirection JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "View"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Log files can be exported from the log pages."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/Export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Logs"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 errors"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "I'd like to support some more."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirection saved"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log deleted"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Settings saved"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Group saved"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Are you sure you want to delete this item?"
1280
  msgstr[1] "Are you sure you want to delete these items?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "pass"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "All groups"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Moved Permanently"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Found"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Temporary Redirect"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Permanent Redirect"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Unauthorised"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Not Found"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Title"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "When matched"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "with HTTP code"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Show advanced options"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Matched Target"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Unmatched Target"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Saving..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "View notice"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Invalid source URL"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Invalid redirect action"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Invalid redirect matcher"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Unable to add new redirect"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Something went wrong 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Log entries (%d max)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Search by IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Select bulk action"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Bulk Actions"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Apply"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "First page"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Prev page"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Current Page"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "of %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Next page"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Last page"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s item"
1419
  msgstr[1] "%s items"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Select All"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Sorry, something went wrong loading the data - please try again"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "No results"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Delete the logs - are you sure?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Yes! Delete the logs"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "No! Don't delete the logs"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Want to keep up to date with changes to Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Your email address:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "You've supported this plugin - thank you!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "You get useful software and I get to carry on making it better."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Forever"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Delete the plugin - are you sure?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Yes! Delete the plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "No! Don't delete the plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Manage all your 301 redirects and monitor 404 errors."
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Redirection Support"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Log"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Delete Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Upload"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Import"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Update"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Auto-generate URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS Token"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404 Logs"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(time to keep logs for)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Redirect Logs"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "I'm a nice person and I have helped support the author of this plugin."
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Plugin Support"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Options"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Two months"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "A month"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "A week"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "A day"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "No logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Delete All"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Add Group"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Search"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Groups"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Save"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Group"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Match"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Add new redirection"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancel"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Download"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Settings"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Error (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Pass-through"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirect to random post"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirect to URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Invalid group when creating redirect"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "Source URL"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Date"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Add Redirect"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "All modules"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "View Redirects"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirects"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Name"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filter"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Reset hits"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Enable"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Disable"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Delete"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Edit"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Last Access"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Hits"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Modified Posts"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "User Agent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL and user agent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Target URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL only"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referrer"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL and referrer"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Logged Out"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Logged In"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL and login status"
locale/redirection-es_ES.mo CHANGED
Binary file
locale/redirection-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-11-10 18:26:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  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"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "PHP no compatible"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection requiere PHP v%1$1s, estás usando v%2$2s. Este plugin dejará de funcionar en la próxima versión."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Por favor, no intentes redirigir todos tus 404s - no es una buena idea."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "De momento solo es compatible con el tipo 404 de página de error."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Tipo de página"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Introduce direcciones IP (una por línea)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Describe la finalidad de esta redirección (opcional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - Soy una tetera"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Prohibido"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Mala petición"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - No modificada"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - Ver otra"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "No hacer nada (ignorar)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "URL de destino cuando no coinciden (vacío para ignorar)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "URL de destino cuando coinciden (vacío para ignorar)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Mostrar todo"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Borrar todos los registros de estas entradas"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Borrar todos los registros de esta entrada"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Borrar entradas del registro"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Agrupar por IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Agrupar por URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "Si agrupar"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignorar URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Bloquear IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirigir todo"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Contador"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL y tipo de página de WordPress"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL e IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problema"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Bueno"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Comprobar"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Comprobar la redirección"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Comprobar la redirección para: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "¿Qué significa esto?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "No uso la redirección"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Usando la redirección"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Encontrado"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} a {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Esperado"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Error"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Probar redirecciones"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Destino"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "La URL no está siendo redirigida por Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "La URL está siendo redirigida por Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "No se han podido cargar los detalles"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Escribe la URL del servidor que comprobar"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Servidor"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Escribe el valor de perfil o capacidad"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Perfil"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Comparar contra el texto de referencia de este navegador"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Comparar contra el agente usuario de este navegador"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "La URL relativa desde la que quieres redirigir"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "La URL de destino a la que quieres redirigir si coincide"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Forzar HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "Información de RGPD / Provacidad"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Añadir nueva"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Cierra sesión y vuelve a entrar, por favor."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL y perfil/capacidad"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL y servidor"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "/wp-json/ relativo"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "/wp-json/ por defecto"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "Si no puedes hacer que funcione nada entonces Redirection puede tener dificultades para comunicarse con tu servidor. Puedes intentar cambiar manualmente este ajuste:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Protocolo de portada y el sitio"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Portada y sitio son consistentes"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  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."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Aceptar idioma"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Valor de cabecera"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Nombre de cabecera"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "Cabecera HTTP"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "Nombre del filtro WordPress"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Nombre del filtro"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Valor de la cookie"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Nombre de la cookie"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "vaciando tu caché."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL y cabecera HTTP"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL y filtro personalizado"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL y cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 borrado"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Sin modificar /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress devolvió un mensaje inesperado. Esto podría deberse a que tu REST API no funciona, o por otro plugin o tema."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Por favor, echa un vistazo al {{link}}estado del plugin{{/link}}. Podría ser capaz de identificar y resolver \"mágicamente\" el problema."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection no puede conectar con tu REST API{{/link}}. Si la has desactivado entonces necesitarás activarla."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Un software de seguridad podría estar bloqueando Redirection{{/link}}. Deberías configurarlo para permitir peticiones de la REST API."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Un software de caché{{/link}}, en particular Cloudflare, podría cachear lo que no debería. Prueba a borrar todas tus cachés."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Ninguna de las sugerencias ha ayudado"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "No se puede cargar Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "La REST API de WordPress está funcionando en %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "REST API de WordPress"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "La REST API no está funcionando, así que las rutas no se comprueban"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Las rutas de redirección están funcionando"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Rutas de redirección"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla para que Redirection continúe funcionando"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Error de agente de usuario"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Agente de usuario desconocido"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Dispositivo"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Sistema operativo"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Navegador"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Motor"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Agente de usuario"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agente"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Sin registro de IP"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Registro completo de IP"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonimizar IP (enmascarar la última parte)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitorizar cambios de %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "Registro de IP"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(seleccionar el nivel de registro de IP)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Información de geolocalización"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Información de agente"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filtrar por IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Procedencia / Agente de usuario"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Error de geolocalización de IP"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Algo ha ido mal obteniendo esta información"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "Esta es una IP de una red privada. Significa que se encuentra dentro de una casa o red de empresa y no se puede mostrar más información."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "No se conoce ningún detalle para esta dirección."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geolocalización de IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Ciudad"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Área"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Zona horaria"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geolocalización"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Papelera"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  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>."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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}}."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "No cachear nunca"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "Una hora"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Redireccionar caché"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "¿Estás seguro de querer importar de %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Importadores de plugins"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Importar de %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection no está instalado correctamente"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, ac
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "\"Viejos slugs\" por defecto de WordPress"
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  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."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Arreglo mágico ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Estado del plugin"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Personalizado"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Móvil"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Lectores de feeds"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Bibliotecas"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "Monitorizar el cambio de URL"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Guardar los cambios de este grupo"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "Por ejemplo \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "Supervisar URL"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Borrar 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Borra todo de la IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Borra todo lo que tenga \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  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é."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "No ha sido posible cargar Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "No fue posible crear el grupo"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Fallo al reparar las tablas de la base de datos"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "El grupo de monitoreo de entradas es válido"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "El grupo de monitoreo de entradas no es válido"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Grupo de monitoreo de entradas"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "Todas las redirecciones tienen un grupo válido"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Detectadas redirecciones con grupos no válidos"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Grupo de redirección válido"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Detectados grupos válidos"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "No hay grupos válidos, así que no podrás crear redirecciones"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Grupos válidos"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Tablas de la base de datos"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "Faltan las siguientes tablas:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Están presentes todas las tablas"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Detectada caché de Redirection"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Los datos de esta página han caducado, por favor, recarga."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Cargando, por favor espera…"
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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í)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  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."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Crear aviso de problema"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Correo electrónico"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Detalles importantes"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "¿Necesitas ayuda?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  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."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Desaparecido"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Posición"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Módulo Apache"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importar a un grupo"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importa un archivo CSV, .htaccess o JSON."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Añadir archivo"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Archivo seleccionado"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importando"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Importación finalizada"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total de redirecciones importadas:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "Aceptar"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Cerrar"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Exportar"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Todo"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "Redirecciones WordPress"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Redirecciones Apache"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Redirecciones Nginx"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr ".htaccess de Apache"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Reglas de rewrite de Nginx"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "JSON de Redirection"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Ver"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Importar/Exportar"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Registros"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "Errores 404"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Me gustaría dar algo más de apoyo."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Apoyar 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirección guardada"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Registro borrado"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Ajustes guardados"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Grupo guardado"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
1008
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "pass"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Todos los grupos"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Movido permanentemente"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Encontrado"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Redirección temporal"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Redirección permanente"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - No autorizado"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - No encontrado"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Título"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "Cuando coincide"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "con el código HTTP"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Mostrar opciones avanzadas"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Objetivo coincidente"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Objetivo no coincidente"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Guardando…"
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Ver aviso"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "URL de origen no válida"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Acción de redirección no válida"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Coincidencia de redirección no válida"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Coincidencia de redirección no válida"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "No ha sido posible añadir la nueva redirección"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Algo fue mal 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Entradas del registro (máximo %d)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Buscar por IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Elegir acción en lote"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Acciones en lote"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Aplicar"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "Primera página"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Página anterior"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Página actual"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "de %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Página siguiente"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Última página"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s elemento"
1147
  msgstr[1] "%s elementos"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Elegir todos"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "No hay resultados"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Borrar los registros - ¿estás seguro?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "¡Sí! Borra los registros"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "¡No! No borres los registros"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Boletín"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  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."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Tu dirección de correo electrónico:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Siempre"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Borrar el plugin - ¿estás seguro?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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. "
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  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."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "¡Sí! Borrar el plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "¡No! No borrar el plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}. "
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Soporte de Redirection"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Soporte"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Registro"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Borrar Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Subir"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Importar"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Actualizar"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Auto generar URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  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)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "Token RSS"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "Registros 404"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(tiempo que se mantendrán los registros)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Registros de redirecciones"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Soporte del plugin"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Opciones"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Dos meses"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "Un mes"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "Una semana"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "Un dia"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "No hay logs"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Borrar todo"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Añadir grupo"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Buscar"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Grupos"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Guardar"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Grupo"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Coincidencia"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Añadir nueva redirección"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancelar"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Descargar"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Ajustes"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Error (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Pasar directo"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirigir a entrada aleatoria"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirigir a URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Grupo no válido a la hora de crear la redirección"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "URL de origen"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Fecha"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Añadir redirección"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "Todos los módulos"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "Ver redirecciones"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Módulo"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirecciones"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Nombre"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filtro"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Restablecer aciertos"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Activar"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Desactivar"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Eliminar"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Editar"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Último acceso"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Hits"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Tipo"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Entradas modificadas"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirecciones"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "Agente usuario HTTP"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL y cliente de usuario (user agent)"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "URL de destino"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "Sólo URL"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Expresión regular"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referente"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL y referente"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Desconectado"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Conectado"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  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-01-13 17:05:06+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr "Como con cualquier actualización, deberías hacer una copia de seguridad. Puedes hacer esto {{download}}descargando{{/download}} una copia de tus datos de Redirección."
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ 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."
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr "La base de datos de Redirection necesita actualizarse"
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr "Actualización obligatoria"
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr "¡Necesito algo de ayuda!"
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr "Finalizar configuración"
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr "Comprobando tu REST API"
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr "Reintentar"
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ 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."
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ 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}}."
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr "Algún otro plugin que bloquea la API REST"
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr "Software de caché, por ejemplo Cloudflare"
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr "Un cortafuegos del servidor u otra configuración del servidor"
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr "Un plugin de seguridad"
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ 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:"
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr "Volver"
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr "Continuar la configuración"
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ 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)."
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr "Almacena información IP para redirecciones y errores 404."
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ 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."
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr "Guarda un registro de todas las redirecciones y errores 404."
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr "{{link}}Leer más sobre esto.{{/link}}"
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr "Si cambias el enlace permanente en una entrada o página, entonces Redirection puede crear automáticamente una redirección para ti."
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr "Supervisar los cambios de los enlaces permanentes en las entradas y páginas de WordPress"
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr "Estas son algunas de las opciones que puedes activar ahora. Se pueden cambiar en cualquier momento."
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr "Configuración básica"
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr "Iniciar configuración"
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr "Cuando estés listo, pulsa el botón para continuar."
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr "Primero se te harán algunas preguntas, y luego Redirection configurará tu base de datos."
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr "¿Cuáles son las novedades?"
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr "Comprueba si una URL está siendo redirigida"
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr "Coincidencia de URLs más potente, incluidas las expresiones {{regular}}regulares {{/regular}}, y {{other}} otras condiciones{{{/other}}."
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr "{{link}}Importar{{/link}} desde .htaccess, CSV, y una gran variedad de otros plugins"
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr "{{link}}Supervisar errores 404{{{/link}}, obtener información detallada sobre el visitante, y solucionar cualquier problema"
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr "Algunas de las características que puedes encontrar útiles son"
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr "La documentación completa la puedes encontrar en la {{link}}web de Redirection{{/link}}."
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr "Eso es todo lo que hay que hacer - ¡ya estás redireccionando!"
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr "La URL de destino es la nueva URL"
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr "La URL de origen es tu URL antigua u original"
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ 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):"
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr "¿Cómo utilizo este plugin?"
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr "Redirection está diseñado para utilizarse desde sitios con unos pocos redirecciones a sitios con miles de redirecciones."
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ 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."
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr "Bienvenido a Redirection 🚀🎉"
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr "Esto redireccionará todo, incluyendo las páginas de inicio de sesión. Por favor, asegúrate de que quieres hacer esto."
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ 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}}."
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr "Recuerda activar la casilla de verificación \"regex\" si se trata de una expresión regular."
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr "La URL de origen probablemente debería comenzar con un {{code}}/{{/code}}."
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr "Esto se convertirá en una redirección de servidor para el dominio {{code}}%(server)s{{{/code}}}."
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr "Los valores de anclaje no se envían al servidor y no pueden ser redirigidos."
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr "{{code}}%(status)d{{/code}} a {{code}}%(target)s{{/code}}"
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr "¡Terminado! 🎉"
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr "Progreso: %(complete)d$"
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr "Salir antes de que el proceso haya terminado puede causar problemas."
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr "Configurando Redirection"
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr "Actualizando Redirection"
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr "Por favor, permanece en esta página hasta que se complete."
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr "Si quieres {{support}}solicitar ayuda{{/support}}por favor, incluye estos detalles:"
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr "Parar actualización"
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr "Saltarse esta etapa"
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr "Intentarlo de nuevo"
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr "Problema en la base de datos"
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr "Por favor, activa JavaScript"
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr "Por favor, actualiza tu base de datos"
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr "Actualizar base de datos"
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr "Por favor, completa tu <a href=\"%s\">configuración de Redirection</a> para activar el plugin."
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr "Tu base de datos no necesita actualizarse a %s."
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr "Fallo al realizar la consulta \"%s\"."
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr "La tabla \"%s\" no existe"
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr "Crear datos básicos"
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr "Instalar tablas de Redirection"
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  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"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Por favor, no intentes redirigir todos tus 404s - no es una buena idea."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "De momento solo es compatible con el tipo 404 de página de error."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Tipo de página"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Introduce direcciones IP (una por línea)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Describe la finalidad de esta redirección (opcional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - Soy una tetera"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Prohibido"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Mala petición"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - No modificada"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - Ver otra"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "No hacer nada (ignorar)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "URL de destino cuando no coinciden (vacío para ignorar)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "URL de destino cuando coinciden (vacío para ignorar)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Mostrar todo"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Borrar todos los registros de estas entradas"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Borrar todos los registros de esta entrada"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Borrar entradas del registro"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Agrupar por IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Agrupar por URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "Si agrupar"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignorar URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Bloquear IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirigir todo"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Contador"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL y tipo de página de WordPress"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL e IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problema"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Bueno"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Comprobar"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Comprobar la redirección"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Comprobar la redirección para: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "¿Qué significa esto?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "No uso la redirección"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Usando la redirección"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Encontrado"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} a {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Esperado"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Error"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Introduce la URL completa, incluyendo http:// o https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Probar redirecciones"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Destino"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "La URL no está siendo redirigida por Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "La URL está siendo redirigida por Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "No se han podido cargar los detalles"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Escribe la URL del servidor que comprobar"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Servidor"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Escribe el valor de perfil o capacidad"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Perfil"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Comparar contra el texto de referencia de este navegador"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Comparar contra el agente usuario de este navegador"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "La URL relativa desde la que quieres redirigir"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "La URL de destino a la que quieres redirigir si coincide"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Forzar redirección de HTTP a HTTPs. Antes de activarlo asegúrate de que HTTPS funciona"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Forzar HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "Información de RGPD / Provacidad"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Añadir nueva"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Cierra sesión y vuelve a entrar, por favor."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL y perfil/capacidad"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL y servidor"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "/wp-json/ relativo"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "/wp-json/ por defecto"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "Si no puedes hacer que funcione nada entonces Redirection puede tener dificultades para comunicarse con tu servidor. Puedes intentar cambiar manualmente este ajuste:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Protocolo de portada y el sitio"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Portada y sitio son consistentes"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  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."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Aceptar idioma"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Valor de cabecera"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Nombre de cabecera"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "Cabecera HTTP"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "Nombre del filtro WordPress"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Nombre del filtro"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Valor de la cookie"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Nombre de la cookie"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "vaciando tu caché."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Si estás usando un sistema de caché como Cloudflare entonces, por favor, lee esto:"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL y cabecera HTTP"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL y filtro personalizado"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL y cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 borrado"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Sin modificar /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Cómo utiliza Redirection la REST API - no cambiar a no ser que sea necesario"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress devolvió un mensaje inesperado. Esto podría deberse a que tu REST API no funciona, o por otro plugin o tema."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Por favor, echa un vistazo al {{link}}estado del plugin{{/link}}. Podría ser capaz de identificar y resolver \"mágicamente\" el problema."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection no puede conectar con tu REST API{{/link}}. Si la has desactivado entonces necesitarás activarla."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Un software de seguridad podría estar bloqueando Redirection{{/link}}. Deberías configurarlo para permitir peticiones de la REST API."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Un software de caché{{/link}}, en particular Cloudflare, podría cachear lo que no debería. Prueba a borrar todas tus cachés."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Por favor, ¡desactiva temporalmente otros plugins!{{/link}} Esto arregla muchos problemas."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Ninguna de las sugerencias ha ayudado"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Por favor, consulta la <a href=\"https://redirection.me/support/problems/\">lista de problemas habituales</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "No se puede cargar Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "La REST API de WordPress está funcionando en %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "REST API de WordPress"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "La REST API no está funcionando, así que las rutas no se comprueban"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Las rutas de redirección están funcionando"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection no aparece en las rutas de tu REST API. ¿La has desactivado con un plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Rutas de redirección"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "La REST API de tu WordPress está desactivada. Necesitarás activarla para que Redirection continúe funcionando"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Error de agente de usuario"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Agente de usuario desconocido"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Dispositivo"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Sistema operativo"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Navegador"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Motor"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Agente de usuario"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agente"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Sin registro de IP"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Registro completo de IP"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonimizar IP (enmascarar la última parte)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitorizar cambios de %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "Registro de IP"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(seleccionar el nivel de registro de IP)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Información de geolocalización"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Información de agente"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filtrar por IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Procedencia / Agente de usuario"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Error de geolocalización de IP"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Algo ha ido mal obteniendo esta información"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "Esta es una IP de una red privada. Significa que se encuentra dentro de una casa o red de empresa y no se puede mostrar más información."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "No se conoce ningún detalle para esta dirección."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geolocalización de IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Ciudad"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Área"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Zona horaria"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geolocalización"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Funciona gracias a {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Papelera"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr "Ten en cuenta que Redirection requiere que la API REST de WordPress esté activada. Si la has desactivado, no podrás usar Redirection"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  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>."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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}}."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "No cachear nunca"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "Una hora"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Redireccionar caché"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "¿Estás seguro de querer importar de %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Importadores de plugins"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Importar de %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "\"Viejos slugs\" por defecto de WordPress"
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Crea una redirección asociada (añadida al final de la URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  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."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Arreglo mágico ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Estado del plugin"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Personalizado"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Móvil"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Lectores de feeds"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Bibliotecas"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "Monitorizar el cambio de URL"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Guardar los cambios de este grupo"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "Por ejemplo \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "Supervisar URL"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Borrar 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Borra todo de la IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Borra todo lo que tenga \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "También comprueba si tu navegador puede cargar <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  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é."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "No ha sido posible cargar Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "No fue posible crear el grupo"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "El grupo de monitoreo de entradas es válido"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "El grupo de monitoreo de entradas no es válido"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Grupo de monitoreo de entradas"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "Todas las redirecciones tienen un grupo válido"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Detectadas redirecciones con grupos no válidos"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Grupo de redirección válido"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Detectados grupos válidos"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "No hay grupos válidos, así que no podrás crear redirecciones"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Grupos válidos"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Tablas de la base de datos"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "Faltan las siguientes tablas:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Están presentes todas las tablas"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Detectada caché de Redirection"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Por favor, vacía la caché de tu navegador y recarga esta página"
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Los datos de esta página han caducado, por favor, recarga."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "Si crees que es un fallo de Redirection entonces envía un aviso de problema."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Cargando, por favor espera…"
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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í)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  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."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Crear aviso de problema"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Correo electrónico"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Detalles importantes"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "¿Necesitas ayuda?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  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."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Desaparecido"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Posición"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Módulo Apache"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importar a un grupo"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importa un archivo CSV, .htaccess o JSON."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Haz clic en 'Añadir archivo' o arrastra y suelta aquí."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Añadir archivo"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Archivo seleccionado"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importando"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Importación finalizada"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total de redirecciones importadas:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "¡Vuelve a comprobar que el archivo esté en el formato correcto!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "Aceptar"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Cerrar"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Todas las importaciones se añadirán a la base de datos actual."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Exportar"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Todo"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "Redirecciones WordPress"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Redirecciones Apache"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Redirecciones Nginx"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr ".htaccess de Apache"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Reglas de rewrite de Nginx"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "JSON de Redirection"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Ver"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Los archivos de registro se pueden exportar desde las páginas de registro."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Importar/Exportar"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Registros"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "Errores 404"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Me gustaría dar algo más de apoyo."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Apoyar 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirección guardada"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Registro borrado"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Ajustes guardados"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Grupo guardado"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "¿Estás seguro de querer borrar este elemento?"
1280
  msgstr[1] "¿Estás seguro de querer borrar estos elementos?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "pass"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Todos los grupos"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Movido permanentemente"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Encontrado"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Redirección temporal"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Redirección permanente"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - No autorizado"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - No encontrado"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Título"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "Cuando coincide"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "con el código HTTP"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Mostrar opciones avanzadas"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Objetivo coincidente"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Objetivo no coincidente"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Guardando…"
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Ver aviso"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "URL de origen no válida"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Acción de redirección no válida"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Coincidencia de redirección no válida"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "No ha sido posible añadir la nueva redirección"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Algo fue mal 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Entradas del registro (máximo %d)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Buscar por IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Elegir acción en lote"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Acciones en lote"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Aplicar"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "Primera página"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Página anterior"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Página actual"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "de %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Página siguiente"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Última página"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s elemento"
1419
  msgstr[1] "%s elementos"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Elegir todos"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "No hay resultados"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Borrar los registros - ¿estás seguro?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "¡Sí! Borra los registros"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "¡No! No borres los registros"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Boletín"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "¿Quieres estar al día de los cambios en Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  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."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Tu dirección de correo electrónico:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "Ya has apoyado a este plugin - ¡gracias!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Siempre"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Borrar el plugin - ¿estás seguro?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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. "
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  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."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "¡Sí! Borrar el plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "¡No! No borrar el plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}. "
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Soporte de Redirection"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Soporte"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Registro"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Borrar Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Subir"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Importar"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Actualizar"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Auto generar URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  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)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "Token RSS"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "Registros 404"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(tiempo que se mantendrán los registros)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Registros de redirecciones"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "Soy una buena persona y he apoyado al autor de este plugin"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Soporte del plugin"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Opciones"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Dos meses"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "Un mes"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "Una semana"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "Un dia"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "No hay logs"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Borrar todo"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Añadir grupo"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Buscar"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Grupos"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Guardar"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Grupo"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Coincidencia"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Añadir nueva redirección"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancelar"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Descargar"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Ajustes"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Error (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Pasar directo"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirigir a entrada aleatoria"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirigir a URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Grupo no válido a la hora de crear la redirección"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "URL de origen"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Fecha"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Añadir redirección"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "Todos los módulos"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "Ver redirecciones"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Módulo"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirecciones"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Nombre"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filtro"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Restablecer aciertos"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Activar"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Desactivar"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Eliminar"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Editar"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Último acceso"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Hits"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Tipo"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Entradas modificadas"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirecciones"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "Agente usuario HTTP"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL y cliente de usuario (user agent)"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "URL de destino"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "Sólo URL"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Expresión regular"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referente"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL y referente"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Desconectado"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Conectado"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "Estado de URL y conexión"
locale/redirection-fr_FR.mo CHANGED
Binary file
locale/redirection-fr_FR.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "PHP non supporté"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection nécessite PHP v%1$1s, vous utilisez %2$2s. Cette extension arrêtera de fonctionner à partir de la prochaine version."
 
 
 
 
 
 
 
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Seul le type de page 404 est actuellement supporté."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Type de page"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Saisissez les adresses IP (une par ligne)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Décrivez le but de cette redirection (facultatif)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - Je suis une théière"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Interdit"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - mauvaise requête"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Non modifié"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - Voir ailleur"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Ne rien faire (ignorer)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "URL cible si aucune correspondance (laisser vide pour ignorer)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "URL cible si il y a une correspondance (laisser vide pour ignorer)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Tout afficher"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Supprimer les journaux pour ces entrées"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Supprimer les journaux pour cet entrée"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Supprimer les entrées du journal"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Grouper par IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Grouper par URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "Aucun regroupement"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignorer l’URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Bloquer l’IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Tout rediriger"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Compter"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL et type de page WordPress"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL et IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problème"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Bon"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Vérifier"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Vérifier la redirection"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Vérifier la redirection pour : {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "Qu’est-ce que cela veut dire ?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "N’utilisant pas Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Utilisant Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Trouvé"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Attendu"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Erreur"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Saisissez l’URL complète, avec http:// ou https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Testeur de redirection"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Cible"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "L’URL n’est pas redirigée avec Redirection."
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "L’URL est redirigée avec Redirection."
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Impossible de charger les détails"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Saisissez l’URL du serveur à comparer avec"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Serveur"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Saisissez la valeur de rôle ou de capacité"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Rôle"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Correspondance avec ce texte de référence du navigateur"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "L’URL relative que vous voulez rediriger"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(bêta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Forcer HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "RGPD/information de confidentialité"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Ajouter une nouvelle"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL et rôle/capacité"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL et serveur"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "/wp-json/ relatif"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "/wp-json/ par défaut"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Protocole du site et de l’accueil"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Le site et l’accueil sont cohérents"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  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."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accepter la langue"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Valeur de l’en-tête"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Nom de l’en-tête"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "En-tête HTTP"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "Nom de filtre WordPress"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Nom du filtre"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Valeur du cookie"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Nom du cookie"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "vider votre cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL et en-tête HTTP"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL et filtre personnalisé"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL et cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 supprimée"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "/index.php?rest_route=/ brut"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "API REST"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Aucune de ces suggestions n’a aidé"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Impossible de charger Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "L’API REST WordPress fonctionne à %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "API REST WordPress"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Les redirections fonctionnent"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Routes de redirection"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Erreur de l’agent utilisateur"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Agent utilisateur inconnu"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Appareil"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Système d’exploitation"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Navigateur"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Moteur"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Agent utilisateur"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Aucune IP journalisée"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Connexion avec IP complète"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitorer les modifications de %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "Journalisation d’IP"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(sélectionnez le niveau de journalisation des IP)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Informations géographiques"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Informations sur l’agent"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filtrer par IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Référent / Agent utilisateur"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Erreur de l’IP géographique"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Un problème est survenu lors de l’obtention de cette information"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "Aucun détail n’est connu pour cette adresse."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "IP géographique"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Ville"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Zone"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Fuseau horaire"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Emplacement géographique"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Propulsé par {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Propulsé par {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Corbeille"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  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."
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  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>."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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}}."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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 !"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Jamais de cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "Une heure"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Cache de redirection"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Confirmez-vous l’importation depuis %s ?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Importeurs d’extensions"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Importer depuis %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection n’est pas correctement installé"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuille
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "« Anciens slugs » de WordPress par défaut"
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  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."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Correction magique ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Statut de l’extension"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Personnalisé"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobile"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Lecteurs de flux"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Librairies"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "Surveiller la modification des URL"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Enregistrer les modifications apportées à ce groupe"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "Par exemple « /amp »"
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL à surveiller"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Supprimer les pages 404"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Tout supprimer depuis l’IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Supprimer toutes les correspondances « %s »"
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  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."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Impossible de charger Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Impossible de créer un groupe"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "La réparation des tables de la base de données a échoué."
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Le groupe de surveillance d’articles est valide"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Le groupe de surveillance d’articles est non valide"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Groupe de surveillance d’article"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "Toutes les redirections ont un groupe valide"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirections avec des groupes non valides détectées"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Groupe de redirection valide"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Groupes valides détectés"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "Aucun groupe valide, vous ne pourrez pas créer de redirections."
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Groupes valides"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Tables de la base de données"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "Les tables suivantes sont manquantes :"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Toutes les tables présentes"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Redirection en cache détectée"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Les données de cette page ont expiré, veuillez la recharger."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Veuillez patienter pendant le chargement…"
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Créer un rapport"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "E-mail"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Informations importantes"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Besoin d’aide ?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  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."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 – Gone"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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é."
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Module Apache"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importer dans le groupe"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Ajouter un fichier"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Fichier sélectionné"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Import"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Import terminé"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total des redirections importées :"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Fermer"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Exporter"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Tout"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "Redirections WordPress"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Redirections Apache"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Redirections Nginx"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr ".htaccess Apache"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Règles de réécriture Nginx"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Redirection JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Visualiser"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Import/export"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Journaux"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "Erreurs 404"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Je voudrais soutenir un peu plus."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirection sauvegardée"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Journal supprimé"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Réglages sauvegardés"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Groupe sauvegardé"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Confirmez-vous la suppression de cet élément ?"
1008
  msgstr[1] "Confirmez-vous la suppression de ces éléments ?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "Passer"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Tous les groupes"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - déplacé de façon permanente"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 – trouvé"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 – Redirigé temporairement"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 – Redirigé de façon permanente"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 – Non-autorisé"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 – Introuvable"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Titre"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "Quand cela correspond"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "avec code HTTP"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Afficher les options avancées"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Cible correspondant"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Cible ne correspondant pas"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Sauvegarde…"
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Voir la notification"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "URL source non-valide"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Action de redirection non-valide"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Correspondance de redirection non-valide"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Correspondance de redirection non-valide"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Incapable de créer une nouvelle redirection"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Quelque chose s’est mal passé 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Entrées du journal (100 max.)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Rechercher par IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Sélectionner l’action groupée"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Actions groupées"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Appliquer"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "Première page"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Page précédente"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Page courante"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "de %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Page suivante"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Dernière page"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s élément"
1147
  msgstr[1] "%s éléments"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Tout sélectionner"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "Aucun résultat"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Confirmez-vous la suppression des journaux ?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Oui ! Supprimer les journaux"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "Non ! Ne pas supprimer les journaux"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Newsletter"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Votre adresse de messagerie :"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Indéfiniment"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Confirmez-vous la suppression de cette extension ?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Oui ! Supprimer l’extension"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "Non ! Ne pas supprimer l’extension"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Support de Redirection"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Journaux"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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;!"
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Supprimer la redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Mettre en ligne"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Importer"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Mettre à jour"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "URL auto-générée "
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  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)."
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "Jeton RSS "
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "Journaux des 404 "
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(durée de conservation des journaux)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Journaux des redirections "
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Support de l’extension "
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Options"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Deux mois"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "Un mois"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "Une semaine"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "Un jour"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "Aucun journal"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Tout supprimer"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Ajouter un groupe"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Rechercher"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Groupes"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Enregistrer"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Groupe"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Correspondant"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Ajouter une nouvelle redirection"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Annuler"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Télécharger"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Réglages"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Erreur (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Outrepasser"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Rediriger vers un article aléatoire"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirection vers une URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Groupe non valide à la création d’une redirection"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "URL source"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Date"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Ajouter une redirection"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "Tous les modules"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "Voir les redirections"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Module"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirections"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Nom"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filtre"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Réinitialiser les vues"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Activer"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Désactiver"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Supprimer"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Modifier"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Dernier accès"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Vues"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Type"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Articles modifiés"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirections"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "Agent utilisateur"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL et agent utilisateur"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "URL cible"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL uniquement"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Référant"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL et référent"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Déconnecté"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Connecté"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL et état de connexion"
11
  "Language: fr\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Veuillez ne pas essayer de rediriger toutes vos 404 - ce n’est pas une bonne chose à faire."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Seul le type de page 404 est actuellement supporté."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Type de page"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Saisissez les adresses IP (une par ligne)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Décrivez le but de cette redirection (facultatif)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - Je suis une théière"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Interdit"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - mauvaise requête"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Non modifié"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - Voir ailleur"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Ne rien faire (ignorer)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "URL cible si aucune correspondance (laisser vide pour ignorer)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "URL cible si il y a une correspondance (laisser vide pour ignorer)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Tout afficher"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Supprimer les journaux pour ces entrées"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Supprimer les journaux pour cet entrée"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Supprimer les entrées du journal"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Grouper par IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Grouper par URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "Aucun regroupement"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignorer l’URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Bloquer l’IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Tout rediriger"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Compter"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL et type de page WordPress"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL et IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problème"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Bon"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Vérifier"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Vérifier la redirection"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Vérifier la redirection pour : {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "Qu’est-ce que cela veut dire ?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "N’utilisant pas Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Utilisant Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Trouvé"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(code)d{{/code}} vers {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Attendu"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Erreur"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Saisissez l’URL complète, avec http:// ou https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Testeur de redirection"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Cible"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "L’URL n’est pas redirigée avec Redirection."
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "L’URL est redirigée avec Redirection."
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Impossible de charger les détails"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Saisissez l’URL du serveur à comparer avec"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Serveur"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Saisissez la valeur de rôle ou de capacité"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Rôle"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Correspondance avec ce texte de référence du navigateur"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Correspondance avec cet agent utilisateur de navigateur"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "L’URL relative que vous voulez rediriger"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "L’URL cible vers laquelle vous voulez rediriger si elle a été trouvée."
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(bêta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Forcer une redirection de HTTP vers HTTPS. Veuillez vous assurer que votre HTTPS fonctionne avant de l’activer."
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Forcer HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "RGPD/information de confidentialité"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Ajouter une nouvelle"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Veuillez vous déconnecter puis vous connecter à nouveau."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL et rôle/capacité"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL et serveur"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "/wp-json/ relatif"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "/wp-json/ par défaut"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "Si vous ne pouvez pas faire fonctionne quoi que ce soit alors l’extension Redirection doit rencontrer des difficultés à communiquer avec votre serveur. Vous pouvez essayer de modifier ces réglages manuellement :"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Protocole du site et de l’accueil"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Le site et l’accueil sont cohérents"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  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."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accepter la langue"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Valeur de l’en-tête"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Nom de l’en-tête"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "En-tête HTTP"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "Nom de filtre WordPress"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Nom du filtre"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Valeur du cookie"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Nom du cookie"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "vider votre cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Si vous utilisez un système de cache comme Cloudflare, veuillez lire ceci : "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL et en-tête HTTP"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL et filtre personnalisé"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL et cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 supprimée"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "/index.php?rest_route=/ brut"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "API REST"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Comment Redirection utilise l’API REST - ne pas changer sauf si nécessaire"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress a renvoyé un message inattendu. Cela peut être causé par votre API REST non fonctionnelle, ou par une autre extension ou thème."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Jetez un œil à {{link}}l’état de l’extension{{/link}}. Ça pourrait identifier et corriger le problème."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}L’extension Redirection ne peut pas communiquer avec l’API REST{{/link}}. Si vous l’avez désactivée alors vous devriez l’activer à nouveau."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Un programme de sécurité peut bloquer Redirection{{/link}}. Veuillez le configurer pour qu’il autorise les requêtes de l’API REST."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Les logiciels de cache{{/link}}, comme Cloudflare en particulier, peuvent mettre en cache les mauvais éléments. Essayez de vider tous vos caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Veuillez temporairement désactiver les autres extensions !{{/link}} Ça pourrait résoudre beaucoup de problèmes."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Aucune de ces suggestions n’a aidé"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Veuillez lire la <a href=\"https://redirection.me/support/problems/\">liste de problèmes communs</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Impossible de charger Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "L’API REST WordPress fonctionne à %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "API REST WordPress"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "L’API REST ne fonctionne pas. Les routes n’ont pas été vérifiées."
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Les redirections fonctionnent"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection n’apparait pas dans vos routes de l’API REST. L’avez-vous désactivée avec une extension ?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Routes de redirection"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Votre API REST WordPress a été désactivée. Vous devez l’activer pour que Redirection continue de fonctionner."
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Erreur de l’agent utilisateur"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Agent utilisateur inconnu"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Appareil"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Système d’exploitation"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Navigateur"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Moteur"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Agent utilisateur"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Aucune IP journalisée"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Connexion avec IP complète"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymiser l’IP (masquer la dernière partie)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitorer les modifications de %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "Journalisation d’IP"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(sélectionnez le niveau de journalisation des IP)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Informations géographiques"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Informations sur l’agent"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filtrer par IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Référent / Agent utilisateur"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Erreur de l’IP géographique"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Un problème est survenu lors de l’obtention de cette information"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "Cette IP provient d’un réseau privé. Elle fait partie du réseau d’un domicile ou d’une entreprise. Aucune autre information ne peut être affichée."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "Aucun détail n’est connu pour cette adresse."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "IP géographique"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Ville"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Zone"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Fuseau horaire"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Emplacement géographique"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Propulsé par {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Corbeille"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  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."
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  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>."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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}}."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Si vous souhaitez signaler un bogue, veuillez lire le guide {{report}}Reporting Bugs {{/report}}."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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 !"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Jamais de cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "Une heure"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Cache de redirection"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "Combien de temps garder les URL redirigées en 301 dans le cache (via l’en-tête HTTP « Expires »)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Confirmez-vous l’importation depuis %s ?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Importeurs d’extensions"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Importer depuis %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection nécessite WordPress v%1$1s, vous utilisez v%2$2s - veuillez mettre à jour votre installation WordPress."
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "« Anciens slugs » de WordPress par défaut"
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  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."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Correction magique ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Statut de l’extension"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Personnalisé"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobile"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Lecteurs de flux"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Librairies"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "Surveiller la modification des URL"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Enregistrer les modifications apportées à ce groupe"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "Par exemple « /amp »"
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL à surveiller"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Supprimer les pages 404"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Tout supprimer depuis l’IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Supprimer toutes les correspondances « %s »"
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Votre serveur a rejeté la requête car elle est volumineuse. Veuillez la modifier pour continuer."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  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."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Impossible de charger Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Impossible de créer un groupe"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Le groupe de surveillance d’articles est valide"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Le groupe de surveillance d’articles est non valide"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Groupe de surveillance d’article"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "Toutes les redirections ont un groupe valide"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirections avec des groupes non valides détectées"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Groupe de redirection valide"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Groupes valides détectés"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "Aucun groupe valide, vous ne pourrez pas créer de redirections."
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Groupes valides"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Tables de la base de données"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "Les tables suivantes sont manquantes :"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Toutes les tables présentes"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Redirection en cache détectée"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Les données de cette page ont expiré, veuillez la recharger."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "Si vous pensez que Redirection est en faute alors créez un rapport."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Veuillez patienter pendant le chargement…"
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Créer un rapport"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "E-mail"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Informations importantes"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Besoin d’aide ?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  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."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 – Gone"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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é."
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Module Apache"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importer dans le groupe"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importer un fichier CSV, .htaccess ou JSON."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Cliquer sur « ajouter un fichier » ou glisser-déposer ici."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Ajouter un fichier"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Fichier sélectionné"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Import"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Import terminé"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total des redirections importées :"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Vérifiez à deux fois si le fichier et dans le bon format !"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Fermer"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Tous les imports seront ajoutés à la base de données actuelle."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Exporter"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Tout"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "Redirections WordPress"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Redirections Apache"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Redirections Nginx"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr ".htaccess Apache"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Règles de réécriture Nginx"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Redirection JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Visualiser"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Les fichier de journal peuvent être exportés depuis les pages du journal."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Import/export"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Journaux"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "Erreurs 404"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Je voudrais soutenir un peu plus."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirection sauvegardée"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Journal supprimé"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Réglages sauvegardés"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Groupe sauvegardé"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Confirmez-vous la suppression de cet élément ?"
1280
  msgstr[1] "Confirmez-vous la suppression de ces éléments ?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "Passer"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Tous les groupes"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - déplacé de façon permanente"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 – trouvé"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 – Redirigé temporairement"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 – Redirigé de façon permanente"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 – Non-autorisé"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 – Introuvable"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Titre"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "Quand cela correspond"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "avec code HTTP"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Afficher les options avancées"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Cible correspondant"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Cible ne correspondant pas"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Sauvegarde…"
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Voir la notification"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "URL source non-valide"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Action de redirection non-valide"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Correspondance de redirection non-valide"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Incapable de créer une nouvelle redirection"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Quelque chose s’est mal passé 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Entrées du journal (100 max.)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Rechercher par IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Sélectionner l’action groupée"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Actions groupées"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Appliquer"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "Première page"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Page précédente"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Page courante"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "de %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Page suivante"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Dernière page"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s élément"
1419
  msgstr[1] "%s éléments"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Tout sélectionner"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "Aucun résultat"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Confirmez-vous la suppression des journaux ?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Oui ! Supprimer les journaux"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "Non ! Ne pas supprimer les journaux"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Newsletter"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Votre adresse de messagerie :"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "Vous avez apporté votre soutien à l’extension. Merci !"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "Vous avez une extension utile, et je peux continuer à l’améliorer."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Indéfiniment"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Confirmez-vous la suppression de cette extension ?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Oui ! Supprimer l’extension"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "Non ! Ne pas supprimer l’extension"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Support de Redirection"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Journaux"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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;!"
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Supprimer la redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Mettre en ligne"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Importer"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Mettre à jour"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "URL auto-générée "
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  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)."
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "Jeton RSS "
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "Journaux des 404 "
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(durée de conservation des journaux)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Journaux des redirections "
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "Je suis un type bien et j’ai aidé l’auteur de cette extension."
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Support de l’extension "
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Options"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Deux mois"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "Un mois"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "Une semaine"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "Un jour"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "Aucun journal"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Tout supprimer"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Ajouter un groupe"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Rechercher"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Groupes"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Enregistrer"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Groupe"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Correspondant"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Ajouter une nouvelle redirection"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Annuler"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Télécharger"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Réglages"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Erreur (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Outrepasser"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Rediriger vers un article aléatoire"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirection vers une URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Groupe non valide à la création d’une redirection"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "URL source"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Date"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Ajouter une redirection"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "Tous les modules"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "Voir les redirections"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Module"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirections"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Nom"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filtre"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Réinitialiser les vues"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Activer"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Désactiver"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Supprimer"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Modifier"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Dernier accès"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Vues"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Articles modifiés"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirections"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "Agent utilisateur"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL et agent utilisateur"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "URL cible"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL uniquement"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Référant"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL et référent"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Déconnecté"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Connecté"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL et état de connexion"
locale/redirection-it_IT.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
  msgstr ""
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr ""
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr ""
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr ""
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr ""
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr ""
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr ""
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr ""
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr ""
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr ""
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr ""
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr ""
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr ""
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr ""
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr ""
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr ""
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr ""
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr ""
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr ""
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr ""
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr ""
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr ""
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr ""
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr ""
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr ""
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr ""
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr ""
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problema"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr ""
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr ""
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr ""
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr ""
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr ""
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr ""
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr ""
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Trovato"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr ""
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr ""
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Errore"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr ""
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr ""
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr ""
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr ""
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr ""
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr ""
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr ""
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr ""
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr ""
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Ruolo"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr ""
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Confronta con questo browser user agent"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "L'URL relativo dal quale vuoi creare una redirezione"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr ""
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Forza HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr ""
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Aggiungi Nuovo"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr ""
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL e ruolo/permesso"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL e server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr ""
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Default /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr ""
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr ""
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr ""
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr ""
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr ""
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Valore dell'header"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr ""
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "Header HTTP"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr ""
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr ""
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Valore cookie"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Nome cookie"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "cancellazione della tua cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr ""
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr ""
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL e cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr ""
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr ""
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr ""
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr ""
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr ""
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr ""
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr ""
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr ""
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr ""
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr ""
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr ""
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr ""
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr ""
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr ""
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr ""
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr ""
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr ""
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr ""
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr ""
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr ""
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Useragent sconosciuto"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Periferica"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Sistema operativo"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Browser"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr ""
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Useragent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr ""
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr ""
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr ""
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonimizza IP (maschera l'ultima parte)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr ""
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr ""
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr ""
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr ""
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr ""
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr ""
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr ""
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr ""
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr ""
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr ""
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr ""
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Città"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Area"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Fuso orario"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr ""
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr ""
552
 
@@ -554,78 +839,69 @@ msgstr ""
554
  msgid "Trash"
555
  msgstr ""
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr ""
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr ""
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  msgstr ""
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr ""
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  msgstr ""
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr ""
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr ""
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr ""
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr ""
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr ""
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr ""
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr ""
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr ""
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr ""
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr ""
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr ""
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr ""
631
 
@@ -633,453 +909,449 @@ msgstr ""
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr ""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr ""
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr ""
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr ""
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr ""
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr ""
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr ""
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr ""
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr ""
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr ""
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr ""
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr ""
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr ""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr ""
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr ""
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr ""
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr ""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr ""
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr ""
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr ""
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr ""
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr ""
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr ""
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr ""
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr ""
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr ""
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr ""
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr ""
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr ""
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr ""
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr ""
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr ""
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr ""
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr ""
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr ""
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr ""
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Pulisci la cache del tuo browser e ricarica questa pagina"
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr ""
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr ""
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr ""
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr ""
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr ""
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr ""
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr ""
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr ""
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr ""
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  msgstr ""
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr ""
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr ""
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr ""
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Hai bisogno di aiuto?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr ""
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr ""
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr ""
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Posizione"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  msgstr ""
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Modulo Apache"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importa nel gruppo"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importa un file CSV, .htaccess o JSON."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Aggiungi File"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "File selezionato"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importazione"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Importazione finita"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Totale redirect importati"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Controlla che il file sia nel formato corretto!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Chiudi"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Esporta"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Tutto"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "Redirezioni di WordPress"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Redirezioni Apache"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Redirezioni nginx"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr ".htaccess Apache"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr ""
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr ""
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr ""
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr ""
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Importa/Esporta"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr ""
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "Errori 404"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr ""
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr ""
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Supporta 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirezione salvata"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Log eliminato"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Impostazioni salvate"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Gruppo salvato"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
1008
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr ""
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Tutti i gruppi"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Spostato in maniera permanente"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Trovato"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Redirezione temporanea"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Redirezione permanente"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Non autorizzato"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Non trovato"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Titolo"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "Quando corrisponde"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "Con codice HTTP"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Mostra opzioni avanzate"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr ""
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr ""
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Salvataggio..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Vedi la notifica"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "URL di origine non valido"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Azione di redirezione non valida"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr ""
1085
 
@@ -1087,458 +1359,462 @@ msgstr ""
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Impossibile aggiungere una nuova redirezione"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Qualcosa è andato storto 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr ""
1097
  "Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\n"
1098
  "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"
1099
 
1100
  #. translators: maximum number of log entries
1101
- #: redirection-admin.php:193
1102
  msgid "Log entries (%d max)"
1103
  msgstr ""
1104
 
1105
- #: redirection-strings.php:74
1106
  msgid "Search by IP"
1107
  msgstr "Cerca per IP"
1108
 
1109
- #: redirection-strings.php:69
1110
  msgid "Select bulk action"
1111
  msgstr "Seleziona l'azione di massa"
1112
 
1113
- #: redirection-strings.php:70
1114
  msgid "Bulk Actions"
1115
  msgstr "Azioni di massa"
1116
 
1117
- #: redirection-strings.php:71
1118
  msgid "Apply"
1119
  msgstr "Applica"
1120
 
1121
- #: redirection-strings.php:62
1122
  msgid "First page"
1123
  msgstr "Prima pagina"
1124
 
1125
- #: redirection-strings.php:63
1126
  msgid "Prev page"
1127
  msgstr "Pagina precedente"
1128
 
1129
- #: redirection-strings.php:64
1130
  msgid "Current Page"
1131
  msgstr "Pagina corrente"
1132
 
1133
- #: redirection-strings.php:65
1134
  msgid "of %(page)s"
1135
  msgstr ""
1136
 
1137
- #: redirection-strings.php:66
1138
  msgid "Next page"
1139
  msgstr "Pagina successiva"
1140
 
1141
- #: redirection-strings.php:67
1142
  msgid "Last page"
1143
  msgstr "Ultima pagina"
1144
 
1145
- #: redirection-strings.php:68
1146
  msgid "%s item"
1147
  msgid_plural "%s items"
1148
  msgstr[0] "%s oggetto"
1149
  msgstr[1] "%s oggetti"
1150
 
1151
- #: redirection-strings.php:61
1152
  msgid "Select All"
1153
  msgstr "Seleziona tutto"
1154
 
1155
- #: redirection-strings.php:73
1156
  msgid "Sorry, something went wrong loading the data - please try again"
1157
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
1158
 
1159
- #: redirection-strings.php:72
1160
  msgid "No results"
1161
  msgstr "Nessun risultato"
1162
 
1163
- #: redirection-strings.php:159
1164
  msgid "Delete the logs - are you sure?"
1165
  msgstr "Cancella i log - sei sicuro?"
1166
 
1167
- #: redirection-strings.php:160
1168
  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."
1169
  msgstr "Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."
1170
 
1171
- #: redirection-strings.php:161
1172
  msgid "Yes! Delete the logs"
1173
  msgstr "Sì! Cancella i log"
1174
 
1175
- #: redirection-strings.php:162
1176
  msgid "No! Don't delete the logs"
1177
  msgstr "No! Non cancellare i log"
1178
 
1179
- #: redirection-strings.php:388
1180
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1181
  msgstr "Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."
1182
 
1183
- #: redirection-strings.php:387 redirection-strings.php:389
1184
  msgid "Newsletter"
1185
  msgstr "Newsletter"
1186
 
1187
- #: redirection-strings.php:390
1188
  msgid "Want to keep up to date with changes to Redirection?"
1189
  msgstr "Vuoi essere informato sulle modifiche a Redirection?"
1190
 
1191
- #: redirection-strings.php:391
1192
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1193
  msgstr "Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."
1194
 
1195
- #: redirection-strings.php:392
1196
  msgid "Your email address:"
1197
  msgstr "Il tuo indirizzo email:"
1198
 
1199
- #: redirection-strings.php:219
1200
  msgid "You've supported this plugin - thank you!"
1201
  msgstr "Hai già supportato questo plugin - grazie!"
1202
 
1203
- #: redirection-strings.php:222
1204
  msgid "You get useful software and I get to carry on making it better."
1205
  msgstr ""
1206
 
1207
- #: redirection-strings.php:230 redirection-strings.php:235
1208
  msgid "Forever"
1209
  msgstr "Per sempre"
1210
 
1211
- #: redirection-strings.php:211
1212
  msgid "Delete the plugin - are you sure?"
1213
  msgstr "Cancella il plugin - sei sicuro?"
1214
 
1215
- #: redirection-strings.php:212
1216
  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."
1217
  msgstr "Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."
1218
 
1219
- #: redirection-strings.php:213
1220
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1221
  msgstr "Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."
1222
 
1223
- #: redirection-strings.php:214
1224
  msgid "Yes! Delete the plugin"
1225
  msgstr "Sì! Cancella il plugin"
1226
 
1227
- #: redirection-strings.php:215
1228
  msgid "No! Don't delete the plugin"
1229
  msgstr "No! Non cancellare il plugin"
1230
 
1231
- #. Author of the plugin/theme
1232
  msgid "John Godley"
1233
  msgstr "John Godley"
1234
 
1235
- #. Description of the plugin/theme
1236
  msgid "Manage all your 301 redirects and monitor 404 errors"
1237
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1238
 
1239
- #: redirection-strings.php:221
1240
  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}}."
1241
  msgstr "Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."
1242
 
1243
- #: redirection-admin.php:310
1244
  msgid "Redirection Support"
1245
  msgstr "Forum di supporto Redirection"
1246
 
1247
- #: redirection-strings.php:54 redirection-strings.php:111
1248
  msgid "Support"
1249
  msgstr "Supporto"
1250
 
1251
- #: redirection-strings.php:51
1252
  msgid "404s"
1253
  msgstr "404"
1254
 
1255
- #: redirection-strings.php:50
1256
  msgid "Log"
1257
  msgstr "Log"
1258
 
1259
- #: redirection-strings.php:217
1260
  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."
1261
  msgstr "Selezionando questa opzione tutti i reindirizzamenti, i log e qualunque altra opzione associata con Redirection verranno cancellati. Assicurarsi che questo è proprio ciò che si vuole fare."
1262
 
1263
- #: redirection-strings.php:216
1264
  msgid "Delete Redirection"
1265
  msgstr "Rimuovi Redirection"
1266
 
1267
- #: redirection-strings.php:129
1268
  msgid "Upload"
1269
  msgstr "Carica"
1270
 
1271
- #: redirection-strings.php:140
1272
  msgid "Import"
1273
  msgstr "Importa"
1274
 
1275
- #: redirection-strings.php:269
1276
  msgid "Update"
1277
  msgstr "Aggiorna"
1278
 
1279
- #: redirection-strings.php:258
1280
  msgid "Auto-generate URL"
1281
  msgstr "Genera URL automaticamente"
1282
 
1283
- #: redirection-strings.php:257
1284
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1285
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1286
 
1287
- #: redirection-strings.php:256
1288
  msgid "RSS Token"
1289
  msgstr "Token RSS"
1290
 
1291
- #: redirection-strings.php:250
1292
  msgid "404 Logs"
1293
  msgstr "Registro 404"
1294
 
1295
- #: redirection-strings.php:249 redirection-strings.php:251
1296
  msgid "(time to keep logs for)"
1297
  msgstr "(per quanto tempo conservare i log)"
1298
 
1299
- #: redirection-strings.php:248
1300
  msgid "Redirect Logs"
1301
  msgstr "Registro redirezioni"
1302
 
1303
- #: redirection-strings.php:247
1304
  msgid "I'm a nice person and I have helped support the author of this plugin"
1305
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1306
 
1307
- #: redirection-strings.php:224
1308
  msgid "Plugin Support"
1309
  msgstr "Supporto del plugin"
1310
 
1311
- #: redirection-strings.php:53 redirection-strings.php:110
1312
  msgid "Options"
1313
  msgstr "Opzioni"
1314
 
1315
- #: redirection-strings.php:229
1316
  msgid "Two months"
1317
  msgstr "Due mesi"
1318
 
1319
- #: redirection-strings.php:228
1320
  msgid "A month"
1321
  msgstr "Un mese"
1322
 
1323
- #: redirection-strings.php:227 redirection-strings.php:234
1324
  msgid "A week"
1325
  msgstr "Una settimana"
1326
 
1327
- #: redirection-strings.php:226 redirection-strings.php:233
1328
  msgid "A day"
1329
  msgstr "Un giorno"
1330
 
1331
- #: redirection-strings.php:225
1332
  msgid "No logs"
1333
  msgstr "Nessun log"
1334
 
1335
- #: redirection-strings.php:158 redirection-strings.php:194
1336
- #: redirection-strings.php:199
1337
  msgid "Delete All"
1338
  msgstr "Elimina tutto"
1339
 
1340
- #: redirection-strings.php:94
1341
  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."
1342
  msgstr "Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."
1343
 
1344
- #: redirection-strings.php:93
1345
  msgid "Add Group"
1346
  msgstr "Aggiungi gruppo"
1347
 
1348
- #: redirection-strings.php:75
1349
  msgid "Search"
1350
  msgstr "Cerca"
1351
 
1352
- #: redirection-strings.php:49 redirection-strings.php:106
1353
  msgid "Groups"
1354
  msgstr "Gruppi"
1355
 
1356
- #: redirection-strings.php:14 redirection-strings.php:103
1357
- #: redirection-strings.php:317
1358
  msgid "Save"
1359
  msgstr "Salva"
1360
 
1361
- #: redirection-strings.php:60 redirection-strings.php:313
1362
  msgid "Group"
1363
  msgstr "Gruppo"
1364
 
1365
- #: redirection-strings.php:310
1366
  msgid "Match"
1367
  msgstr ""
1368
 
1369
- #: redirection-strings.php:332
1370
  msgid "Add new redirection"
1371
  msgstr "Aggiungi un nuovo reindirizzamento"
1372
 
1373
- #: redirection-strings.php:104 redirection-strings.php:130
1374
- #: redirection-strings.php:319
1375
  msgid "Cancel"
1376
  msgstr "Annulla"
1377
 
1378
- #: redirection-strings.php:154
1379
  msgid "Download"
1380
  msgstr "Scaricare"
1381
 
1382
- #. Plugin Name of the plugin/theme
 
1383
  msgid "Redirection"
1384
  msgstr "Redirection"
1385
 
1386
- #: redirection-admin.php:158
1387
  msgid "Settings"
1388
  msgstr "Impostazioni"
1389
 
1390
- #: redirection-strings.php:294
1391
  msgid "Error (404)"
1392
  msgstr "Errore (404)"
1393
 
1394
- #: redirection-strings.php:293
1395
  msgid "Pass-through"
1396
  msgstr "Pass-through"
1397
 
1398
- #: redirection-strings.php:292
1399
  msgid "Redirect to random post"
1400
  msgstr "Reindirizza a un post a caso"
1401
 
1402
- #: redirection-strings.php:291
1403
  msgid "Redirect to URL"
1404
  msgstr "Reindirizza a URL"
1405
 
1406
- #: models/redirect.php:550
1407
  msgid "Invalid group when creating redirect"
1408
  msgstr "Gruppo non valido nella creazione del redirect"
1409
 
1410
- #: redirection-strings.php:167 redirection-strings.php:175
1411
- #: redirection-strings.php:180 redirection-strings.php:354
1412
  msgid "IP"
1413
  msgstr "IP"
1414
 
1415
- #: redirection-strings.php:165 redirection-strings.php:173
1416
- #: redirection-strings.php:178 redirection-strings.php:318
 
1417
  msgid "Source URL"
1418
  msgstr "URL di partenza"
1419
 
1420
- #: redirection-strings.php:164 redirection-strings.php:177
1421
  msgid "Date"
1422
  msgstr "Data"
1423
 
1424
- #: redirection-strings.php:190 redirection-strings.php:203
1425
- #: redirection-strings.php:207 redirection-strings.php:333
1426
  msgid "Add Redirect"
1427
  msgstr "Aggiungi una redirezione"
1428
 
1429
- #: redirection-strings.php:92
1430
  msgid "All modules"
1431
  msgstr "Tutti i moduli"
1432
 
1433
- #: redirection-strings.php:98
1434
  msgid "View Redirects"
1435
  msgstr "Mostra i redirect"
1436
 
1437
- #: redirection-strings.php:88 redirection-strings.php:102
1438
  msgid "Module"
1439
  msgstr "Modulo"
1440
 
1441
- #: redirection-strings.php:48 redirection-strings.php:87
1442
  msgid "Redirects"
1443
  msgstr "Reindirizzamenti"
1444
 
1445
- #: redirection-strings.php:86 redirection-strings.php:95
1446
- #: redirection-strings.php:101
1447
  msgid "Name"
1448
  msgstr "Nome"
1449
 
1450
- #: redirection-strings.php:59
1451
  msgid "Filter"
1452
  msgstr "Filtro"
1453
 
1454
- #: redirection-strings.php:330
1455
  msgid "Reset hits"
1456
  msgstr ""
1457
 
1458
- #: redirection-strings.php:90 redirection-strings.php:100
1459
- #: redirection-strings.php:328 redirection-strings.php:370
1460
  msgid "Enable"
1461
  msgstr "Attiva"
1462
 
1463
- #: redirection-strings.php:91 redirection-strings.php:99
1464
- #: redirection-strings.php:329 redirection-strings.php:368
1465
  msgid "Disable"
1466
  msgstr "Disattiva"
1467
 
1468
- #: redirection-strings.php:89 redirection-strings.php:97
1469
- #: redirection-strings.php:168 redirection-strings.php:169
1470
- #: redirection-strings.php:181 redirection-strings.php:184
1471
- #: redirection-strings.php:206 redirection-strings.php:218
1472
- #: redirection-strings.php:327 redirection-strings.php:367
1473
  msgid "Delete"
1474
  msgstr "Cancella"
1475
 
1476
- #: redirection-strings.php:96 redirection-strings.php:366
1477
  msgid "Edit"
1478
  msgstr "Modifica"
1479
 
1480
- #: redirection-strings.php:326
1481
  msgid "Last Access"
1482
  msgstr "Ultimo accesso"
1483
 
1484
- #: redirection-strings.php:325
1485
  msgid "Hits"
1486
  msgstr "Visite"
1487
 
1488
- #: redirection-strings.php:323 redirection-strings.php:383
1489
  msgid "URL"
1490
  msgstr "URL"
1491
 
1492
- #: redirection-strings.php:322
1493
  msgid "Type"
1494
  msgstr "Tipo"
1495
 
1496
- #: models/database.php:139
1497
  msgid "Modified Posts"
1498
  msgstr "Post modificati"
1499
 
1500
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1501
  msgid "Redirections"
1502
  msgstr "Reindirizzamenti"
1503
 
1504
- #: redirection-strings.php:334
1505
  msgid "User Agent"
1506
  msgstr "User agent"
1507
 
1508
- #: matches/user-agent.php:10 redirection-strings.php:284
1509
  msgid "URL and user agent"
1510
  msgstr "URL e user agent"
1511
 
1512
- #: redirection-strings.php:278
 
1513
  msgid "Target URL"
1514
  msgstr "URL di arrivo"
1515
 
1516
- #: matches/url.php:7 redirection-strings.php:280
1517
  msgid "URL only"
1518
  msgstr "solo URL"
1519
 
1520
- #: redirection-strings.php:316 redirection-strings.php:340
1521
- #: redirection-strings.php:344 redirection-strings.php:352
1522
- #: redirection-strings.php:361
1523
  msgid "Regex"
1524
  msgstr "Regex"
1525
 
1526
- #: redirection-strings.php:359
1527
  msgid "Referrer"
1528
  msgstr "Referrer"
1529
 
1530
- #: matches/referrer.php:10 redirection-strings.php:283
1531
  msgid "URL and referrer"
1532
  msgstr "URL e referrer"
1533
 
1534
- #: redirection-strings.php:272
1535
  msgid "Logged Out"
1536
  msgstr ""
1537
 
1538
- #: redirection-strings.php:270
1539
  msgid "Logged In"
1540
  msgstr ""
1541
 
1542
- #: matches/login.php:8 redirection-strings.php:281
1543
  msgid "URL and login status"
1544
  msgstr "status URL e login"
11
  "Language: it\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
  msgstr ""
97
 
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
  msgstr ""
102
 
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr ""
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr ""
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr ""
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr ""
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr ""
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr ""
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr ""
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr ""
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr ""
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr ""
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr ""
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr ""
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr ""
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr ""
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr ""
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr ""
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr ""
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problema"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr ""
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr ""
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr ""
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr ""
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr ""
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr ""
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr ""
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Trovato"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr ""
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr ""
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Errore"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr ""
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr ""
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr ""
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr ""
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr ""
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr ""
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr ""
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr ""
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr ""
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Ruolo"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Confronta con questo browser user agent"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "L'URL relativo dal quale vuoi creare una redirezione"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr ""
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Forza un reindirizzamento da HTTP a HTTPS. Verifica che HTTPS funzioni correttamente prima di abilitarlo"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Forza HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr ""
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Aggiungi Nuovo"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr ""
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL e ruolo/permesso"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL e server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr ""
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Default /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr ""
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr ""
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr ""
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr ""
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Valore dell'header"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr ""
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "Header HTTP"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr ""
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr ""
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Valore cookie"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Nome cookie"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "cancellazione della tua cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Se stai utilizzando un sistema di caching come Cloudflare, per favore leggi questo:"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr ""
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr ""
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL e cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr ""
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr ""
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr ""
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr ""
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr ""
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr ""
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr ""
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr ""
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr ""
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr ""
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr ""
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr ""
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr ""
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr ""
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr ""
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr ""
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr ""
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr ""
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr ""
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr ""
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Useragent sconosciuto"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Periferica"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Sistema operativo"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Browser"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Useragent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr ""
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr ""
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr ""
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonimizza IP (maschera l'ultima parte)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr ""
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr ""
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr ""
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr ""
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr ""
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr ""
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr ""
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr ""
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr ""
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr ""
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr ""
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr ""
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Città"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Area"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Fuso orario"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr ""
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr ""
837
 
839
  msgid "Trash"
840
  msgstr ""
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr ""
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr ""
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  msgstr ""
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr ""
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  msgstr ""
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr ""
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr ""
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr ""
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr ""
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr ""
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr ""
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr ""
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr ""
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr ""
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr ""
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr ""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr ""
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr ""
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr ""
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr ""
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr ""
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr ""
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr ""
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr ""
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr ""
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr ""
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr ""
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr ""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr ""
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr ""
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr ""
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr ""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr ""
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr ""
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr ""
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr ""
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr ""
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr ""
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr ""
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr ""
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr ""
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr ""
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr ""
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr ""
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr ""
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr ""
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr ""
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr ""
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr ""
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr ""
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Pulisci la cache del tuo browser e ricarica questa pagina"
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr ""
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr ""
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr ""
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr ""
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr ""
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr ""
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr ""
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr ""
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr ""
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  msgstr ""
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr ""
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr ""
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr ""
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Hai bisogno di aiuto?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr ""
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr ""
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr ""
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Posizione"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  msgstr ""
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Modulo Apache"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importa nel gruppo"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importa un file CSV, .htaccess o JSON."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Premi 'Aggiungi File' o trascina e rilascia qui."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Aggiungi File"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "File selezionato"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importazione"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Importazione finita"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Totale redirect importati"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Controlla che il file sia nel formato corretto!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Chiudi"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Tutte le importazioni verranno aggiunte al database corrente."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Esporta"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Tutto"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "Redirezioni di WordPress"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Redirezioni Apache"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Redirezioni nginx"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr ".htaccess Apache"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr ""
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr ""
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr ""
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr ""
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Importa/Esporta"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr ""
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "Errori 404"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr ""
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr ""
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Supporta 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirezione salvata"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Log eliminato"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Impostazioni salvate"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Gruppo salvato"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Sei sicuro di voler eliminare questo oggetto?"
1280
  msgstr[1] "Sei sicuro di voler eliminare questi oggetti?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr ""
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Tutti i gruppi"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Spostato in maniera permanente"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Trovato"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Redirezione temporanea"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Redirezione permanente"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Non autorizzato"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Non trovato"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Titolo"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "Quando corrisponde"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "Con codice HTTP"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Mostra opzioni avanzate"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr ""
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr ""
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Salvataggio..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Vedi la notifica"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "URL di origine non valido"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Azione di redirezione non valida"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr ""
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Impossibile aggiungere una nuova redirezione"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Qualcosa è andato storto 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr ""
1369
  "Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\n"
1370
  "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"
1371
 
1372
  #. translators: maximum number of log entries
1373
+ #: redirection-admin.php:182
1374
  msgid "Log entries (%d max)"
1375
  msgstr ""
1376
 
1377
+ #: redirection-strings.php:177
1378
  msgid "Search by IP"
1379
  msgstr "Cerca per IP"
1380
 
1381
+ #: redirection-strings.php:172
1382
  msgid "Select bulk action"
1383
  msgstr "Seleziona l'azione di massa"
1384
 
1385
+ #: redirection-strings.php:173
1386
  msgid "Bulk Actions"
1387
  msgstr "Azioni di massa"
1388
 
1389
+ #: redirection-strings.php:174
1390
  msgid "Apply"
1391
  msgstr "Applica"
1392
 
1393
+ #: redirection-strings.php:165
1394
  msgid "First page"
1395
  msgstr "Prima pagina"
1396
 
1397
+ #: redirection-strings.php:166
1398
  msgid "Prev page"
1399
  msgstr "Pagina precedente"
1400
 
1401
+ #: redirection-strings.php:167
1402
  msgid "Current Page"
1403
  msgstr "Pagina corrente"
1404
 
1405
+ #: redirection-strings.php:168
1406
  msgid "of %(page)s"
1407
  msgstr ""
1408
 
1409
+ #: redirection-strings.php:169
1410
  msgid "Next page"
1411
  msgstr "Pagina successiva"
1412
 
1413
+ #: redirection-strings.php:170
1414
  msgid "Last page"
1415
  msgstr "Ultima pagina"
1416
 
1417
+ #: redirection-strings.php:171
1418
  msgid "%s item"
1419
  msgid_plural "%s items"
1420
  msgstr[0] "%s oggetto"
1421
  msgstr[1] "%s oggetti"
1422
 
1423
+ #: redirection-strings.php:164
1424
  msgid "Select All"
1425
  msgstr "Seleziona tutto"
1426
 
1427
+ #: redirection-strings.php:176
1428
  msgid "Sorry, something went wrong loading the data - please try again"
1429
  msgstr "Qualcosa è andato storto leggendo i dati - riprova"
1430
 
1431
+ #: redirection-strings.php:175
1432
  msgid "No results"
1433
  msgstr "Nessun risultato"
1434
 
1435
+ #: redirection-strings.php:314
1436
  msgid "Delete the logs - are you sure?"
1437
  msgstr "Cancella i log - sei sicuro?"
1438
 
1439
+ #: redirection-strings.php:315
1440
  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."
1441
  msgstr "Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."
1442
 
1443
+ #: redirection-strings.php:316
1444
  msgid "Yes! Delete the logs"
1445
  msgstr "Sì! Cancella i log"
1446
 
1447
+ #: redirection-strings.php:317
1448
  msgid "No! Don't delete the logs"
1449
  msgstr "No! Non cancellare i log"
1450
 
1451
+ #: redirection-strings.php:459
1452
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1453
  msgstr "Grazie per esserti iscritto! {{a}}Clicca qui{{/a}} se vuoi tornare alla tua sottoscrizione."
1454
 
1455
+ #: redirection-strings.php:458 redirection-strings.php:460
1456
  msgid "Newsletter"
1457
  msgstr "Newsletter"
1458
 
1459
+ #: redirection-strings.php:461
1460
  msgid "Want to keep up to date with changes to Redirection?"
1461
  msgstr "Vuoi essere informato sulle modifiche a Redirection?"
1462
 
1463
+ #: redirection-strings.php:462
1464
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1465
  msgstr "Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."
1466
 
1467
+ #: redirection-strings.php:463
1468
  msgid "Your email address:"
1469
  msgstr "Il tuo indirizzo email:"
1470
 
1471
+ #: redirection-strings.php:374
1472
  msgid "You've supported this plugin - thank you!"
1473
  msgstr "Hai già supportato questo plugin - grazie!"
1474
 
1475
+ #: redirection-strings.php:377
1476
  msgid "You get useful software and I get to carry on making it better."
1477
  msgstr ""
1478
 
1479
+ #: redirection-strings.php:385 redirection-strings.php:390
1480
  msgid "Forever"
1481
  msgstr "Per sempre"
1482
 
1483
+ #: redirection-strings.php:366
1484
  msgid "Delete the plugin - are you sure?"
1485
  msgstr "Cancella il plugin - sei sicuro?"
1486
 
1487
+ #: redirection-strings.php:367
1488
  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."
1489
  msgstr "Cancellando questo plugin verranno rimossi tutti i reindirizzamenti, i log e le impostazioni. Fallo se vuoi rimuovere il plugin o se vuoi reimpostare il plugin."
1490
 
1491
+ #: redirection-strings.php:368
1492
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1493
  msgstr "Dopo averle elimininati, i tuoi reindirizzamenti smetteranno di funzionare. Se sembra che continuino a funzionare cancella la cache del tuo browser."
1494
 
1495
+ #: redirection-strings.php:369
1496
  msgid "Yes! Delete the plugin"
1497
  msgstr "Sì! Cancella il plugin"
1498
 
1499
+ #: redirection-strings.php:370
1500
  msgid "No! Don't delete the plugin"
1501
  msgstr "No! Non cancellare il plugin"
1502
 
1503
+ #. Author of the plugin
1504
  msgid "John Godley"
1505
  msgstr "John Godley"
1506
 
1507
+ #. Description of the plugin
1508
  msgid "Manage all your 301 redirects and monitor 404 errors"
1509
  msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1510
 
1511
+ #: redirection-strings.php:376
1512
  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}}."
1513
  msgstr "Redirection può essere utilizzato gratuitamente - la vita è davvero fantastica e piena di tante belle cose! Lo sviluppo di questo plugin richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo sostegno {{strong}}tramite una piccola donazione{{/strong}}."
1514
 
1515
+ #: redirection-admin.php:300
1516
  msgid "Redirection Support"
1517
  msgstr "Forum di supporto Redirection"
1518
 
1519
+ #: redirection-strings.php:65 redirection-strings.php:266
1520
  msgid "Support"
1521
  msgstr "Supporto"
1522
 
1523
+ #: redirection-strings.php:62
1524
  msgid "404s"
1525
  msgstr "404"
1526
 
1527
+ #: redirection-strings.php:61
1528
  msgid "Log"
1529
  msgstr "Log"
1530
 
1531
+ #: redirection-strings.php:372
1532
  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."
1533
  msgstr "Selezionando questa opzione tutti i reindirizzamenti, i log e qualunque altra opzione associata con Redirection verranno cancellati. Assicurarsi che questo è proprio ciò che si vuole fare."
1534
 
1535
+ #: redirection-strings.php:371
1536
  msgid "Delete Redirection"
1537
  msgstr "Rimuovi Redirection"
1538
 
1539
+ #: redirection-strings.php:284
1540
  msgid "Upload"
1541
  msgstr "Carica"
1542
 
1543
+ #: redirection-strings.php:295
1544
  msgid "Import"
1545
  msgstr "Importa"
1546
 
1547
+ #: redirection-strings.php:424
1548
  msgid "Update"
1549
  msgstr "Aggiorna"
1550
 
1551
+ #: redirection-strings.php:413
1552
  msgid "Auto-generate URL"
1553
  msgstr "Genera URL automaticamente"
1554
 
1555
+ #: redirection-strings.php:412
1556
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1557
  msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
1558
 
1559
+ #: redirection-strings.php:411
1560
  msgid "RSS Token"
1561
  msgstr "Token RSS"
1562
 
1563
+ #: redirection-strings.php:405
1564
  msgid "404 Logs"
1565
  msgstr "Registro 404"
1566
 
1567
+ #: redirection-strings.php:404 redirection-strings.php:406
1568
  msgid "(time to keep logs for)"
1569
  msgstr "(per quanto tempo conservare i log)"
1570
 
1571
+ #: redirection-strings.php:403
1572
  msgid "Redirect Logs"
1573
  msgstr "Registro redirezioni"
1574
 
1575
+ #: redirection-strings.php:402
1576
  msgid "I'm a nice person and I have helped support the author of this plugin"
1577
  msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
1578
 
1579
+ #: redirection-strings.php:379
1580
  msgid "Plugin Support"
1581
  msgstr "Supporto del plugin"
1582
 
1583
+ #: redirection-strings.php:64 redirection-strings.php:265
1584
  msgid "Options"
1585
  msgstr "Opzioni"
1586
 
1587
+ #: redirection-strings.php:384
1588
  msgid "Two months"
1589
  msgstr "Due mesi"
1590
 
1591
+ #: redirection-strings.php:383
1592
  msgid "A month"
1593
  msgstr "Un mese"
1594
 
1595
+ #: redirection-strings.php:382 redirection-strings.php:389
1596
  msgid "A week"
1597
  msgstr "Una settimana"
1598
 
1599
+ #: redirection-strings.php:381 redirection-strings.php:388
1600
  msgid "A day"
1601
  msgstr "Un giorno"
1602
 
1603
+ #: redirection-strings.php:380
1604
  msgid "No logs"
1605
  msgstr "Nessun log"
1606
 
1607
+ #: redirection-strings.php:313 redirection-strings.php:349
1608
+ #: redirection-strings.php:354
1609
  msgid "Delete All"
1610
  msgstr "Elimina tutto"
1611
 
1612
+ #: redirection-strings.php:244
1613
  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."
1614
  msgstr "Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."
1615
 
1616
+ #: redirection-strings.php:243
1617
  msgid "Add Group"
1618
  msgstr "Aggiungi gruppo"
1619
 
1620
+ #: redirection-strings.php:178
1621
  msgid "Search"
1622
  msgstr "Cerca"
1623
 
1624
+ #: redirection-strings.php:60 redirection-strings.php:261
1625
  msgid "Groups"
1626
  msgstr "Gruppi"
1627
 
1628
+ #: redirection-strings.php:25 redirection-strings.php:119
1629
+ #: redirection-strings.php:253
1630
  msgid "Save"
1631
  msgstr "Salva"
1632
 
1633
+ #: redirection-strings.php:115 redirection-strings.php:163
1634
  msgid "Group"
1635
  msgstr "Gruppo"
1636
 
1637
+ #: redirection-strings.php:112
1638
  msgid "Match"
1639
  msgstr ""
1640
 
1641
+ #: redirection-strings.php:435
1642
  msgid "Add new redirection"
1643
  msgstr "Aggiungi un nuovo reindirizzamento"
1644
 
1645
+ #: redirection-strings.php:121 redirection-strings.php:254
1646
+ #: redirection-strings.php:285
1647
  msgid "Cancel"
1648
  msgstr "Annulla"
1649
 
1650
+ #: redirection-strings.php:309
1651
  msgid "Download"
1652
  msgstr "Scaricare"
1653
 
1654
+ #. Plugin Name of the plugin
1655
+ #: redirection-strings.php:233
1656
  msgid "Redirection"
1657
  msgstr "Redirection"
1658
 
1659
+ #: redirection-admin.php:140
1660
  msgid "Settings"
1661
  msgstr "Impostazioni"
1662
 
1663
+ #: redirection-strings.php:96
1664
  msgid "Error (404)"
1665
  msgstr "Errore (404)"
1666
 
1667
+ #: redirection-strings.php:95
1668
  msgid "Pass-through"
1669
  msgstr "Pass-through"
1670
 
1671
+ #: redirection-strings.php:94
1672
  msgid "Redirect to random post"
1673
  msgstr "Reindirizza a un post a caso"
1674
 
1675
+ #: redirection-strings.php:93
1676
  msgid "Redirect to URL"
1677
  msgstr "Reindirizza a URL"
1678
 
1679
+ #: models/redirect.php:553
1680
  msgid "Invalid group when creating redirect"
1681
  msgstr "Gruppo non valido nella creazione del redirect"
1682
 
1683
+ #: redirection-strings.php:144 redirection-strings.php:322
1684
+ #: redirection-strings.php:330 redirection-strings.php:335
1685
  msgid "IP"
1686
  msgstr "IP"
1687
 
1688
+ #: redirection-strings.php:120 redirection-strings.php:193
1689
+ #: redirection-strings.php:320 redirection-strings.php:328
1690
+ #: redirection-strings.php:333
1691
  msgid "Source URL"
1692
  msgstr "URL di partenza"
1693
 
1694
+ #: redirection-strings.php:319 redirection-strings.php:332
1695
  msgid "Date"
1696
  msgstr "Data"
1697
 
1698
+ #: redirection-strings.php:345 redirection-strings.php:358
1699
+ #: redirection-strings.php:362 redirection-strings.php:436
1700
  msgid "Add Redirect"
1701
  msgstr "Aggiungi una redirezione"
1702
 
1703
+ #: redirection-strings.php:242
1704
  msgid "All modules"
1705
  msgstr "Tutti i moduli"
1706
 
1707
+ #: redirection-strings.php:248
1708
  msgid "View Redirects"
1709
  msgstr "Mostra i redirect"
1710
 
1711
+ #: redirection-strings.php:238 redirection-strings.php:252
1712
  msgid "Module"
1713
  msgstr "Modulo"
1714
 
1715
+ #: redirection-strings.php:59 redirection-strings.php:237
1716
  msgid "Redirects"
1717
  msgstr "Reindirizzamenti"
1718
 
1719
+ #: redirection-strings.php:236 redirection-strings.php:245
1720
+ #: redirection-strings.php:251
1721
  msgid "Name"
1722
  msgstr "Nome"
1723
 
1724
+ #: redirection-strings.php:162
1725
  msgid "Filter"
1726
  msgstr "Filtro"
1727
 
1728
+ #: redirection-strings.php:433
1729
  msgid "Reset hits"
1730
  msgstr ""
1731
 
1732
+ #: redirection-strings.php:240 redirection-strings.php:250
1733
+ #: redirection-strings.php:431 redirection-strings.php:441
1734
  msgid "Enable"
1735
  msgstr "Attiva"
1736
 
1737
+ #: redirection-strings.php:241 redirection-strings.php:249
1738
+ #: redirection-strings.php:432 redirection-strings.php:439
1739
  msgid "Disable"
1740
  msgstr "Disattiva"
1741
 
1742
+ #: redirection-strings.php:239 redirection-strings.php:247
1743
+ #: redirection-strings.php:323 redirection-strings.php:324
1744
+ #: redirection-strings.php:336 redirection-strings.php:339
1745
+ #: redirection-strings.php:361 redirection-strings.php:373
1746
+ #: redirection-strings.php:430 redirection-strings.php:438
1747
  msgid "Delete"
1748
  msgstr "Cancella"
1749
 
1750
+ #: redirection-strings.php:246 redirection-strings.php:437
1751
  msgid "Edit"
1752
  msgstr "Modifica"
1753
 
1754
+ #: redirection-strings.php:429
1755
  msgid "Last Access"
1756
  msgstr "Ultimo accesso"
1757
 
1758
+ #: redirection-strings.php:428
1759
  msgid "Hits"
1760
  msgstr "Visite"
1761
 
1762
+ #: redirection-strings.php:426 redirection-strings.php:454
1763
  msgid "URL"
1764
  msgstr "URL"
1765
 
1766
+ #: redirection-strings.php:425
1767
  msgid "Type"
1768
  msgstr "Tipo"
1769
 
1770
+ #: database/schema/latest.php:137
1771
  msgid "Modified Posts"
1772
  msgstr "Post modificati"
1773
 
1774
+ #: database/schema/latest.php:132 models/group.php:148
1775
+ #: redirection-strings.php:260
1776
  msgid "Redirections"
1777
  msgstr "Reindirizzamenti"
1778
 
1779
+ #: redirection-strings.php:124
1780
  msgid "User Agent"
1781
  msgstr "User agent"
1782
 
1783
+ #: matches/user-agent.php:10 redirection-strings.php:86
1784
  msgid "URL and user agent"
1785
  msgstr "URL e user agent"
1786
 
1787
+ #: redirection-strings.php:70 redirection-strings.php:80
1788
+ #: redirection-strings.php:195
1789
  msgid "Target URL"
1790
  msgstr "URL di arrivo"
1791
 
1792
+ #: matches/url.php:7 redirection-strings.php:82
1793
  msgid "URL only"
1794
  msgstr "solo URL"
1795
 
1796
+ #: redirection-strings.php:118 redirection-strings.php:130
1797
+ #: redirection-strings.php:134 redirection-strings.php:142
1798
+ #: redirection-strings.php:151
1799
  msgid "Regex"
1800
  msgstr "Regex"
1801
 
1802
+ #: redirection-strings.php:149
1803
  msgid "Referrer"
1804
  msgstr "Referrer"
1805
 
1806
+ #: matches/referrer.php:10 redirection-strings.php:85
1807
  msgid "URL and referrer"
1808
  msgstr "URL e referrer"
1809
 
1810
+ #: redirection-strings.php:74
1811
  msgid "Logged Out"
1812
  msgstr ""
1813
 
1814
+ #: redirection-strings.php:72
1815
  msgid "Logged In"
1816
  msgstr ""
1817
 
1818
+ #: matches/login.php:8 redirection-strings.php:83
1819
  msgid "URL and login status"
1820
  msgstr "status URL e login"
locale/redirection-ja.mo CHANGED
Binary file
locale/redirection-ja.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
  msgstr ""
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
  msgstr ""
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr ""
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr ""
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr ""
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr ""
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr ""
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr ""
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr ""
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr ""
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr ""
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr ""
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr ""
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr ""
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr ""
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr ""
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr ""
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr ""
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr ""
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr ""
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr ""
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr ""
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr ""
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr ""
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr ""
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr ""
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr ""
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr ""
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr ""
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr ""
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr ""
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr ""
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr ""
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr ""
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr ""
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr ""
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr ""
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr ""
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr ""
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "エラー"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "リダイレクトテスター"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "ターゲット"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL は Redirection によってリダイレクトされません"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL は Redirection によってリダイレクトされます"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "詳細のロードに失敗しました"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "一致するサーバーの URL を入力"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "サーバー"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "権限グループまたは権限の値を入力"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "権限グループ"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "このブラウザーリファラーテキストと一致"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "このブラウザーユーザーエージェントに一致"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "リダイレクト元となる相対 URL"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(ベータ)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "強制 HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / 個人情報"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "新規追加"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "再度ログインし直してください。"
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL と権限グループ / 権限"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL とサーバー"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "相対 /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "デフォルト /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "動作が正常にできていない場合、 Redirection がサーバーと連携するのが困難な状態と考えられます。設定を手動で変更することが可能です :"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "サイト URL とホーム URL のプロトコル"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "サイト URL とホーム URL は一致しています"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "ヘッダー値"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "ヘッダー名"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP ヘッダー"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress フィルター名"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "フィルター名"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie 値"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie 名"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "キャッシュを削除"
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL と HTTP ヘッダー"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL とカスタムフィルター"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL と Cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 deleted"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Raw /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "これらの提案では解決しませんでした"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Redirection のロードに失敗しました☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API は次の URL でアクセス可能です: %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API が動作していないためルートはチェックされません"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Redirection ルートは正常に動作しています"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Redirection ルート"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "ユーザーエージェントエラー"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "不明なユーザーエージェント"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "デバイス"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "オペレーティングシステム"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "ブラウザー"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "エンジン"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "ユーザーエージェント"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "エージェント"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "IP ロギングなし"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "フル IP ロギング"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "匿名 IP (最後の部分をマスクする)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "%(type)sの変更を監視"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP ロギング"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(IP のログレベルを選択)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "位置情報"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "エージェントの情報"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "IP でフィルター"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "リファラー / User Agent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "位置情報エラー"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "この情報の取得中に問題が発生しました。"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "このアドレスには詳細がありません"
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "ジオ IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "市区町村"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "エリア"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "タイムゾーン"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "位置情報"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Powered by {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Powered by {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "ゴミ箱"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  msgstr "公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "キャッシュしない"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "1時間"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "リダイレクトキャッシュ"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "本当に %s からインポートしますか ?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "インポートプラグイン"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "全数 ="
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "%s からインポート"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "データベースのテーブルに問題があります。詳しくは、<a href=\"%s\">support page</a> を御覧ください。"
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection がきちんとインストールされていません"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr ""
631
 
@@ -633,454 +909,450 @@ msgstr ""
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "初期設定の WordPress \"old slugs\""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr ""
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr ""
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️マジック修正⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "プラグインステータス"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "カスタム"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "モバイル"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "フィード読者"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "ライブラリ"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "変更を監視する URL"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "このグループへの変更を保存"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "例: \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL モニター"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "404を削除"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "すべての IP %s からのものを削除"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "すべての \"%s\" に一致するものを削除"
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Redirection のロードに失敗しました"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "グループの作成に失敗しました"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "データベーステーブルの修正に失敗しました"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "投稿モニターグループは有効です"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "投稿モニターグループが無効です"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "投稿モニターグループ"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "すべてのリダイレクトは有効なグループになっています"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "無効なグループのリダイレクトが検出されました"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "有効なリダイレクトグループ"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "有効なグループが検出されました"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "有効なグループがない場合、新規のリダイレクトを追加することはできません。"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "有効なグループ"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "データベーステーブル"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "次のテーブルが不足しています:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "すべてのテーブルが存在しています"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "キャッシュされた Redirection が検知されました"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "このページのデータが期限切れになりました。再読込してください。"
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr ""
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "ロード中です。お待ち下さい…"
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr ""
819
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
820
  " issue{{/link}} を詳細とともに作成してください。"
821
 
822
- #: redirection-strings.php:21
823
  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."
824
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
825
 
826
- #: redirection-admin.php:450 redirection-strings.php:22
827
  msgid "Create Issue"
828
  msgstr "Issue を作成"
829
 
830
- #: redirection-strings.php:23
831
  msgid "Email"
832
  msgstr "メール"
833
 
834
- #: redirection-strings.php:24
835
  msgid "Important details"
836
  msgstr "重要な詳細"
837
 
838
- #: redirection-strings.php:372
839
  msgid "Need help?"
840
  msgstr "ヘルプが必要ですか?"
841
 
842
- #: redirection-strings.php:375
843
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
844
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
845
 
846
- #: redirection-strings.php:324
847
  msgid "Pos"
848
  msgstr "Pos"
849
 
850
- #: redirection-strings.php:306
851
  msgid "410 - Gone"
852
  msgstr "410 - 消滅"
853
 
854
- #: redirection-strings.php:314
855
  msgid "Position"
856
  msgstr "配置"
857
 
858
- #: redirection-strings.php:259
859
  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"
860
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
861
 
862
- #: redirection-strings.php:260
863
  msgid "Apache Module"
864
  msgstr "Apache モジュール"
865
 
866
- #: redirection-strings.php:261
867
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
868
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
869
 
870
- #: redirection-strings.php:124
871
  msgid "Import to group"
872
  msgstr "グループにインポート"
873
 
874
- #: redirection-strings.php:125
875
  msgid "Import a CSV, .htaccess, or JSON file."
876
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
877
 
878
- #: redirection-strings.php:126
879
  msgid "Click 'Add File' or drag and drop here."
880
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
881
 
882
- #: redirection-strings.php:127
883
  msgid "Add File"
884
  msgstr "ファイルを追加"
885
 
886
- #: redirection-strings.php:128
887
  msgid "File selected"
888
  msgstr "選択されたファイル"
889
 
890
- #: redirection-strings.php:131
891
  msgid "Importing"
892
  msgstr "インポート中"
893
 
894
- #: redirection-strings.php:132
895
  msgid "Finished importing"
896
  msgstr "インポートが完了しました"
897
 
898
- #: redirection-strings.php:133
899
  msgid "Total redirects imported:"
900
  msgstr "インポートされたリダイレクト数: "
901
 
902
- #: redirection-strings.php:134
903
  msgid "Double-check the file is the correct format!"
904
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
905
 
906
- #: redirection-strings.php:135
907
  msgid "OK"
908
  msgstr "OK"
909
 
910
- #: redirection-strings.php:136 redirection-strings.php:320
911
  msgid "Close"
912
  msgstr "閉じる"
913
 
914
- #: redirection-strings.php:141
915
  msgid "All imports will be appended to the current database."
916
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
917
 
918
- #: redirection-strings.php:143 redirection-strings.php:163
919
  msgid "Export"
920
  msgstr "エクスポート"
921
 
922
- #: redirection-strings.php:144
923
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
924
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
925
 
926
- #: redirection-strings.php:145
927
  msgid "Everything"
928
  msgstr "すべて"
929
 
930
- #: redirection-strings.php:146
931
  msgid "WordPress redirects"
932
  msgstr "WordPress リダイレクト"
933
 
934
- #: redirection-strings.php:147
935
  msgid "Apache redirects"
936
  msgstr "Apache リダイレクト"
937
 
938
- #: redirection-strings.php:148
939
  msgid "Nginx redirects"
940
  msgstr "Nginx リダイレクト"
941
 
942
- #: redirection-strings.php:149
943
  msgid "CSV"
944
  msgstr "CSV"
945
 
946
- #: redirection-strings.php:150
947
  msgid "Apache .htaccess"
948
  msgstr "Apache .htaccess"
949
 
950
- #: redirection-strings.php:151
951
  msgid "Nginx rewrite rules"
952
  msgstr "Nginx のリライトルール"
953
 
954
- #: redirection-strings.php:152
955
  msgid "Redirection JSON"
956
  msgstr "Redirection JSON"
957
 
958
- #: redirection-strings.php:153
959
  msgid "View"
960
  msgstr "表示"
961
 
962
- #: redirection-strings.php:155
963
  msgid "Log files can be exported from the log pages."
964
  msgstr "ログファイルはログページにてエクスポート出来ます。"
965
 
966
- #: redirection-strings.php:52 redirection-strings.php:107
967
  msgid "Import/Export"
968
  msgstr "インポート / エクスポート"
969
 
970
- #: redirection-strings.php:108
971
  msgid "Logs"
972
  msgstr "ログ"
973
 
974
- #: redirection-strings.php:109
975
  msgid "404 errors"
976
  msgstr "404 エラー"
977
 
978
- #: redirection-strings.php:120
979
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
980
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
981
 
982
- #: redirection-strings.php:220
983
  msgid "I'd like to support some more."
984
  msgstr "もっとサポートがしたいです。"
985
 
986
- #: redirection-strings.php:223
987
  msgid "Support 💰"
988
  msgstr "サポート💰"
989
 
990
- #: redirection-strings.php:398
991
  msgid "Redirection saved"
992
  msgstr "リダイレクトが保存されました"
993
 
994
- #: redirection-strings.php:399
995
  msgid "Log deleted"
996
  msgstr "ログが削除されました"
997
 
998
- #: redirection-strings.php:400
999
  msgid "Settings saved"
1000
  msgstr "設定が保存されました"
1001
 
1002
- #: redirection-strings.php:401
1003
  msgid "Group saved"
1004
  msgstr "グループが保存されました"
1005
 
1006
- #: redirection-strings.php:85
1007
  msgid "Are you sure you want to delete this item?"
1008
  msgid_plural "Are you sure you want to delete these items?"
1009
  msgstr[0] "本当に削除してもよろしいですか?"
1010
 
1011
- #: redirection-strings.php:371
1012
  msgid "pass"
1013
  msgstr "パス"
1014
 
1015
- #: redirection-strings.php:331
1016
  msgid "All groups"
1017
  msgstr "すべてのグループ"
1018
 
1019
- #: redirection-strings.php:296
1020
  msgid "301 - Moved Permanently"
1021
  msgstr "301 - 恒久的に移動"
1022
 
1023
- #: redirection-strings.php:297
1024
  msgid "302 - Found"
1025
  msgstr "302 - 発見"
1026
 
1027
- #: redirection-strings.php:300
1028
  msgid "307 - Temporary Redirect"
1029
  msgstr "307 - 一時リダイレクト"
1030
 
1031
- #: redirection-strings.php:301
1032
  msgid "308 - Permanent Redirect"
1033
  msgstr "308 - 恒久リダイレクト"
1034
 
1035
- #: redirection-strings.php:303
1036
  msgid "401 - Unauthorized"
1037
  msgstr "401 - 認証が必要"
1038
 
1039
- #: redirection-strings.php:305
1040
  msgid "404 - Not Found"
1041
  msgstr "404 - 未検出"
1042
 
1043
- #: redirection-strings.php:308
1044
  msgid "Title"
1045
  msgstr "タイトル"
1046
 
1047
- #: redirection-strings.php:311
1048
  msgid "When matched"
1049
  msgstr "マッチした時"
1050
 
1051
- #: redirection-strings.php:312
1052
  msgid "with HTTP code"
1053
  msgstr "次の HTTP コードと共に"
1054
 
1055
- #: redirection-strings.php:321
1056
  msgid "Show advanced options"
1057
  msgstr "高度な設定を表示"
1058
 
1059
- #: redirection-strings.php:274
1060
  msgid "Matched Target"
1061
  msgstr "見つかったターゲット"
1062
 
1063
- #: redirection-strings.php:276
1064
  msgid "Unmatched Target"
1065
  msgstr "ターゲットが見つかりません"
1066
 
1067
- #: redirection-strings.php:57 redirection-strings.php:58
1068
  msgid "Saving..."
1069
  msgstr "保存中…"
1070
 
1071
- #: redirection-strings.php:55
1072
  msgid "View notice"
1073
  msgstr "通知を見る"
1074
 
1075
- #: models/redirect.php:560
1076
  msgid "Invalid source URL"
1077
  msgstr "不正な元 URL"
1078
 
1079
- #: models/redirect.php:488
1080
  msgid "Invalid redirect action"
1081
  msgstr "不正なリダイレクトアクション"
1082
 
1083
- #: models/redirect.php:482
1084
  msgid "Invalid redirect matcher"
1085
  msgstr "不正なリダイレクトマッチャー"
1086
 
@@ -1088,455 +1360,459 @@ msgstr "不正なリダイレクトマッチャー"
1088
  msgid "Unable to add new redirect"
1089
  msgstr "新しいリダイレクトの追加に失敗しました"
1090
 
1091
- #: redirection-strings.php:12 redirection-strings.php:116
1092
  msgid "Something went wrong 🙁"
1093
  msgstr "問題が発生しました"
1094
 
1095
- #: redirection-strings.php:11
1096
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
  msgstr "何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"
1098
 
1099
  #. translators: maximum number of log entries
1100
- #: redirection-admin.php:193
1101
  msgid "Log entries (%d max)"
1102
  msgstr "ログ (最大 %d)"
1103
 
1104
- #: redirection-strings.php:74
1105
  msgid "Search by IP"
1106
  msgstr "IP による検索"
1107
 
1108
- #: redirection-strings.php:69
1109
  msgid "Select bulk action"
1110
  msgstr "一括操作を選択"
1111
 
1112
- #: redirection-strings.php:70
1113
  msgid "Bulk Actions"
1114
  msgstr "一括操作"
1115
 
1116
- #: redirection-strings.php:71
1117
  msgid "Apply"
1118
  msgstr "適応"
1119
 
1120
- #: redirection-strings.php:62
1121
  msgid "First page"
1122
  msgstr "最初のページ"
1123
 
1124
- #: redirection-strings.php:63
1125
  msgid "Prev page"
1126
  msgstr "前のページ"
1127
 
1128
- #: redirection-strings.php:64
1129
  msgid "Current Page"
1130
  msgstr "現在のページ"
1131
 
1132
- #: redirection-strings.php:65
1133
  msgid "of %(page)s"
1134
  msgstr "%(page)s"
1135
 
1136
- #: redirection-strings.php:66
1137
  msgid "Next page"
1138
  msgstr "次のページ"
1139
 
1140
- #: redirection-strings.php:67
1141
  msgid "Last page"
1142
  msgstr "最後のページ"
1143
 
1144
- #: redirection-strings.php:68
1145
  msgid "%s item"
1146
  msgid_plural "%s items"
1147
  msgstr[0] "%s 個のアイテム"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "すべて選択"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "結果なし"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "本当にログを消去しますか ?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "ログを消去する"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "ログを消去しない"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "ニュースレター"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "メールアドレス: "
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "永久に"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "本当にプラグインを削除しますか ?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "プラグインを消去する"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "プラグインを消去しない"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Redirection を応援する"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "サポート"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404 エラー"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "ログ"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  msgstr "個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "転送ルールを削除"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "アップロード"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "インポート"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "更新"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "URL を自動生成 "
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS トークン"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404 ログ"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(ログの保存期間)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "転送ログ"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "このプラグインの作者に対する援助を行いました"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "プラグインサポート"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "設定"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "2ヶ月"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "1ヶ月"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "1週間"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "1日"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "ログなし"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "すべてを削除"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "グループを追加"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "検索"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "グループ"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "保存"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "グループ"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "一致条件"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "新しい転送ルールを追加"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "キャンセル"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "ダウンロード"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "設定"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "エラー (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "通過"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "ランダムな記事へ転送"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "URL へ転送"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "ソース URL"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "日付"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "転送ルールを追加"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "すべてのモジュール"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "転送ルールを表示"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "モジュール"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "転送ルール"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "名称"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "フィルター"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "訪問数をリセット"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "有効化"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "無効化"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "削除"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "編集"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "前回のアクセス"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "ヒット数"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "タイプ"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "編集済みの投稿"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "転送ルール"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "ユーザーエージェント"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL およびユーザーエージェント"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "ターゲット URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL のみ"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "正規表現"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "リファラー"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL およびリファラー"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "ログアウト中"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "ログイン中"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL およびログイン状態"
11
  "Language: ja_JP\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
  msgstr ""
258
 
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
 
261
  msgstr ""
262
 
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr ""
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr ""
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr ""
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr ""
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr ""
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr ""
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr ""
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr ""
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr ""
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr ""
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr ""
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr ""
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr ""
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr ""
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr ""
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr ""
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr ""
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr ""
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr ""
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr ""
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr ""
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr ""
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr ""
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr ""
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr ""
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr ""
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr ""
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr ""
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "エラー"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "http:// や https:// を含めた完全な URL を入力してください"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr "ブラウザーが URL をキャッシュすることがあり、想定どおりに動作しているか確認が難しい場合があります。きちんとリダイレクトが機能しているかチェックするにはこちらを利用してください。"
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "リダイレクトテスター"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "ターゲット"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL は Redirection によってリダイレクトされません"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL は Redirection によってリダイレクトされます"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "詳細のロードに失敗しました"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "一致するサーバーの URL を入力"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "サーバー"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "権限グループまたは権限の値を入力"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "権限グループ"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "このブラウザーリファラーテキストと一致"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "このブラウザーユーザーエージェントに一致"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "リダイレクト元となる相対 URL"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "一致した場合にリダイレクトさせたいターゲット URL"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(ベータ)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "HTTP から HTTPS へのリダイレクトを矯正します。有効化前にはで正しくサイトが HTTPS で動くことを確認してください。"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "強制 HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / 個人情報"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "新規追加"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "再度ログインし直してください。"
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL と権限グループ / 権限"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL とサーバー"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "相対 /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "デフォルト /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "動作が正常にできていない場合、 Redirection がサーバーと連携するのが困難な状態と考えられます。設定を手動で変更することが可能です :"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "サイト URL とホーム URL のプロトコル"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "サイト URL とホーム URL は一致しています"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "HTTP ヘッダーを PHP に通せるかどうかはサーバーの設定によります。詳しくはお使いのホスティング会社にお問い合わせください。"
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "ヘッダー値"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "ヘッダー名"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP ヘッダー"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress フィルター名"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "フィルター名"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie 値"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie 名"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "キャッシュを削除"
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Cloudflare などのキャッシュシステムをお使いの場合こちらをお読みください :"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL と HTTP ヘッダー"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL とカスタムフィルター"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL と Cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 deleted"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Raw /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Redirection の REST API の使い方 - 必要な場合以外は変更しないでください"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress が予期しないエラーを返却しました。これは REST API が動いていないか、他のプラグインやテーマによって起こされている可能性があります。"
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "{{link}}プラグインステータス{{/link}} をご覧ください。問題を特定でき、問題を修正できるかもしれません。"
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection は REST API との通信に失敗しました。{{/link}} もし無効化している場合、有効化する必要があります。"
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}セキュリティソフトが Redirectin をブロックしている可能性があります。{{/link}} REST API リクエストを許可するために設定を行う必要があります。"
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}キャッシュソフト{{/link}} 特に Cloudflare は間違ったキャッシュを行うことがあります。すべてのキャッシュをクリアしてみてください。"
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}一時的に他のプラグインを無効化してください。{{/link}} 多くの問題はこれで解決します。"
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "これらの提案では解決しませんでした"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "<a href=\"https://redirection.me/support/problems/\">よくある問題一覧</a> をご覧ください。"
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Redirection のロードに失敗しました☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API は次の URL でアクセス可能です: %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API が動作していないためルートはチェックされません"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Redirection ルートは正常に動作しています"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection が REST API ルート上にないようです。プラグインなどを使用して REST API を無効化しましたか ?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Redirection ルート"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "サイト上の WordPress REST API は無効化されています。Redirection の動作のためには再度有効化する必要があります。"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "ユーザーエージェントエラー"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "不明なユーザーエージェント"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "デバイス"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "オペレーティングシステム"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "ブラウザー"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "エンジン"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "ユーザーエージェント"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "エージェント"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "IP ロギングなし"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "フル IP ロギング"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "匿名 IP (最後の部分をマスクする)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "%(type)sの変更を監視"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP ロギング"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(IP のログレベルを選択)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "位置情報"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "エージェントの情報"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "IP でフィルター"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "リファラー / User Agent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "位置情報エラー"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "この情報の取得中に問題が発生しました。"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "これはプライベートネットワーク内からの IP です。家庭もしくは職場ネットワークからのアクセスであり、これ以上の情報を表示することはできません。"
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "このアドレスには詳細がありません"
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "ジオ IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "市区町村"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "エリア"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "タイムゾーン"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "位置情報"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Powered by {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "ゴミ箱"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr "Redirection の使用には WordPress REST API が有効化されている必要があります。REST API が無効化されていると Redirection を使用することができません。"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "Redirection プラグインの詳しい使い方については <a href=\"%s\" target=\"_blank\">redirection.me</a> サポートサイトをご覧ください。"
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  msgstr "Redirection の完全なドキュメントは {{site}}https://redirection.me{{/site}} で参照できます。問題がある場合はまず、{{faq}}FAQ{{/faq}} をチェックしてください。"
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "バグを報告したい場合、こちらの {{report}}バグ報告{{/report}} ガイドをお読みください。"
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  msgstr "公開されているリポジトリに投稿したくない情報を提示したいときは、その内容を可能な限りの詳細な情報を記した上で {{email}}メール{{/email}} を送ってください。"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "キャッシュしない"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "1時間"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "リダイレクトキャッシュ"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "301 URL リダイレクトをキャッシュする長さ (\"Expires\" HTTP ヘッダー)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "本当に %s からインポートしますか ?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "インポートプラグイン"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "サイト上より今プラグインにインポートできる以下のリダイレクトプラグインが見つかりました。"
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "全数 ="
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "%s からインポート"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr ""
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "初期設定の WordPress \"old slugs\""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr ""
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr ""
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr "マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️マジック修正⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "プラグインステータス"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "カスタム"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "モバイル"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "フィード読者"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "ライブラリ"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "変更を監視する URL"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "このグループへの変更を保存"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "例: \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL モニター"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "404を削除"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "すべての IP %s からのものを削除"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "すべての \"%s\" に一致するものを削除"
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "大きすぎるリクエストのためサーバーがリクエストを拒否しました。進めるには変更する必要があります。"
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "また <code>redirection.js</code> をお使いのブラウザがロードできるか確認してください :"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "CloudFlare, OVH などのキャッシュプラグイン・サービスを使用してページをキャッシュしている場合、キャッシュをクリアしてみてください。"
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Redirection のロードに失敗しました"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "グループの作成に失敗しました"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "投稿モニターグループは有効です"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "投稿モニターグループが無効です"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "投稿モニターグループ"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "すべてのリダイレクトは有効なグループになっています"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "無効なグループのリダイレクトが検出されました"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "有効なリダイレクトグループ"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "有効なグループが検出されました"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "有効なグループがない場合、新規のリダイレクトを追加することはできません。"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "有効なグループ"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "データベーステーブル"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "次のテーブルが不足しています:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "すべてのテーブルが存在しています"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "キャッシュされた Redirection が検知されました"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "ブラウザーのキャッシュをクリアしてページを再読込してください。"
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "このページのデータが期限切れになりました。再読込してください。"
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "サーバーが 403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr ""
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "もしこの原因が Redirection だと思うのであれば Issue を作成してください。"
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "ロード中です。お待ち下さい…"
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr "{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr ""
1091
  "もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n"
1092
  " issue{{/link}} を詳細とともに作成してください。"
1093
 
1094
+ #: redirection-strings.php:32
1095
  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."
1096
  msgstr "もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"
1097
 
1098
+ #: redirection-admin.php:405 redirection-strings.php:33
1099
  msgid "Create Issue"
1100
  msgstr "Issue を作成"
1101
 
1102
+ #: redirection-strings.php:34
1103
  msgid "Email"
1104
  msgstr "メール"
1105
 
1106
+ #: redirection-strings.php:35
1107
  msgid "Important details"
1108
  msgstr "重要な詳細"
1109
 
1110
+ #: redirection-strings.php:443
1111
  msgid "Need help?"
1112
  msgstr "ヘルプが必要ですか?"
1113
 
1114
+ #: redirection-strings.php:446
1115
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1116
  msgstr "サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"
1117
 
1118
+ #: redirection-strings.php:427
1119
  msgid "Pos"
1120
  msgstr "Pos"
1121
 
1122
+ #: redirection-strings.php:108
1123
  msgid "410 - Gone"
1124
  msgstr "410 - 消滅"
1125
 
1126
+ #: redirection-strings.php:116
1127
  msgid "Position"
1128
  msgstr "配置"
1129
 
1130
+ #: redirection-strings.php:414
1131
  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"
1132
  msgstr "URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"
1133
 
1134
+ #: redirection-strings.php:415
1135
  msgid "Apache Module"
1136
  msgstr "Apache モジュール"
1137
 
1138
+ #: redirection-strings.php:416
1139
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1140
  msgstr "{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"
1141
 
1142
+ #: redirection-strings.php:279
1143
  msgid "Import to group"
1144
  msgstr "グループにインポート"
1145
 
1146
+ #: redirection-strings.php:280
1147
  msgid "Import a CSV, .htaccess, or JSON file."
1148
  msgstr "CSV や .htaccess、JSON ファイルをインポート"
1149
 
1150
+ #: redirection-strings.php:281
1151
  msgid "Click 'Add File' or drag and drop here."
1152
  msgstr "「新規追加」をクリックしここにドラッグアンドドロップしてください。"
1153
 
1154
+ #: redirection-strings.php:282
1155
  msgid "Add File"
1156
  msgstr "ファイルを追加"
1157
 
1158
+ #: redirection-strings.php:283
1159
  msgid "File selected"
1160
  msgstr "選択されたファイル"
1161
 
1162
+ #: redirection-strings.php:286
1163
  msgid "Importing"
1164
  msgstr "インポート中"
1165
 
1166
+ #: redirection-strings.php:287
1167
  msgid "Finished importing"
1168
  msgstr "インポートが完了しました"
1169
 
1170
+ #: redirection-strings.php:288
1171
  msgid "Total redirects imported:"
1172
  msgstr "インポートされたリダイレクト数: "
1173
 
1174
+ #: redirection-strings.php:289
1175
  msgid "Double-check the file is the correct format!"
1176
  msgstr "ファイルが正しい形式かもう一度チェックしてください。"
1177
 
1178
+ #: redirection-strings.php:290
1179
  msgid "OK"
1180
  msgstr "OK"
1181
 
1182
+ #: redirection-strings.php:122 redirection-strings.php:291
1183
  msgid "Close"
1184
  msgstr "閉じる"
1185
 
1186
+ #: redirection-strings.php:296
1187
  msgid "All imports will be appended to the current database."
1188
  msgstr "すべてのインポートは現在のデータベースに追加されます。"
1189
 
1190
+ #: redirection-strings.php:298 redirection-strings.php:318
1191
  msgid "Export"
1192
  msgstr "エクスポート"
1193
 
1194
+ #: redirection-strings.php:299
1195
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1196
  msgstr "CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"
1197
 
1198
+ #: redirection-strings.php:300
1199
  msgid "Everything"
1200
  msgstr "すべて"
1201
 
1202
+ #: redirection-strings.php:301
1203
  msgid "WordPress redirects"
1204
  msgstr "WordPress リダイレクト"
1205
 
1206
+ #: redirection-strings.php:302
1207
  msgid "Apache redirects"
1208
  msgstr "Apache リダイレクト"
1209
 
1210
+ #: redirection-strings.php:303
1211
  msgid "Nginx redirects"
1212
  msgstr "Nginx リダイレクト"
1213
 
1214
+ #: redirection-strings.php:304
1215
  msgid "CSV"
1216
  msgstr "CSV"
1217
 
1218
+ #: redirection-strings.php:305
1219
  msgid "Apache .htaccess"
1220
  msgstr "Apache .htaccess"
1221
 
1222
+ #: redirection-strings.php:306
1223
  msgid "Nginx rewrite rules"
1224
  msgstr "Nginx のリライトルール"
1225
 
1226
+ #: redirection-strings.php:307
1227
  msgid "Redirection JSON"
1228
  msgstr "Redirection JSON"
1229
 
1230
+ #: redirection-strings.php:308
1231
  msgid "View"
1232
  msgstr "表示"
1233
 
1234
+ #: redirection-strings.php:310
1235
  msgid "Log files can be exported from the log pages."
1236
  msgstr "ログファイルはログページにてエクスポート出来ます。"
1237
 
1238
+ #: redirection-strings.php:63 redirection-strings.php:262
1239
  msgid "Import/Export"
1240
  msgstr "インポート / エクスポート"
1241
 
1242
+ #: redirection-strings.php:263
1243
  msgid "Logs"
1244
  msgstr "ログ"
1245
 
1246
+ #: redirection-strings.php:264
1247
  msgid "404 errors"
1248
  msgstr "404 エラー"
1249
 
1250
+ #: redirection-strings.php:275
1251
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1252
  msgstr "{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"
1253
 
1254
+ #: redirection-strings.php:375
1255
  msgid "I'd like to support some more."
1256
  msgstr "もっとサポートがしたいです。"
1257
 
1258
+ #: redirection-strings.php:378
1259
  msgid "Support 💰"
1260
  msgstr "サポート💰"
1261
 
1262
+ #: redirection-strings.php:469
1263
  msgid "Redirection saved"
1264
  msgstr "リダイレクトが保存されました"
1265
 
1266
+ #: redirection-strings.php:470
1267
  msgid "Log deleted"
1268
  msgstr "ログが削除されました"
1269
 
1270
+ #: redirection-strings.php:471
1271
  msgid "Settings saved"
1272
  msgstr "設定が保存されました"
1273
 
1274
+ #: redirection-strings.php:472
1275
  msgid "Group saved"
1276
  msgstr "グループが保存されました"
1277
 
1278
+ #: redirection-strings.php:235
1279
  msgid "Are you sure you want to delete this item?"
1280
  msgid_plural "Are you sure you want to delete these items?"
1281
  msgstr[0] "本当に削除してもよろしいですか?"
1282
 
1283
+ #: redirection-strings.php:442
1284
  msgid "pass"
1285
  msgstr "パス"
1286
 
1287
+ #: redirection-strings.php:434
1288
  msgid "All groups"
1289
  msgstr "すべてのグループ"
1290
 
1291
+ #: redirection-strings.php:98
1292
  msgid "301 - Moved Permanently"
1293
  msgstr "301 - 恒久的に移動"
1294
 
1295
+ #: redirection-strings.php:99
1296
  msgid "302 - Found"
1297
  msgstr "302 - 発見"
1298
 
1299
+ #: redirection-strings.php:102
1300
  msgid "307 - Temporary Redirect"
1301
  msgstr "307 - 一時リダイレクト"
1302
 
1303
+ #: redirection-strings.php:103
1304
  msgid "308 - Permanent Redirect"
1305
  msgstr "308 - 恒久リダイレクト"
1306
 
1307
+ #: redirection-strings.php:105
1308
  msgid "401 - Unauthorized"
1309
  msgstr "401 - 認証が必要"
1310
 
1311
+ #: redirection-strings.php:107
1312
  msgid "404 - Not Found"
1313
  msgstr "404 - 未検出"
1314
 
1315
+ #: redirection-strings.php:110
1316
  msgid "Title"
1317
  msgstr "タイトル"
1318
 
1319
+ #: redirection-strings.php:113
1320
  msgid "When matched"
1321
  msgstr "マッチした時"
1322
 
1323
+ #: redirection-strings.php:114
1324
  msgid "with HTTP code"
1325
  msgstr "次の HTTP コードと共に"
1326
 
1327
+ #: redirection-strings.php:123
1328
  msgid "Show advanced options"
1329
  msgstr "高度な設定を表示"
1330
 
1331
+ #: redirection-strings.php:76
1332
  msgid "Matched Target"
1333
  msgstr "見つかったターゲット"
1334
 
1335
+ #: redirection-strings.php:78
1336
  msgid "Unmatched Target"
1337
  msgstr "ターゲットが見つかりません"
1338
 
1339
+ #: redirection-strings.php:68 redirection-strings.php:69
1340
  msgid "Saving..."
1341
  msgstr "保存中…"
1342
 
1343
+ #: redirection-strings.php:66
1344
  msgid "View notice"
1345
  msgstr "通知を見る"
1346
 
1347
+ #: models/redirect.php:563
1348
  msgid "Invalid source URL"
1349
  msgstr "不正な元 URL"
1350
 
1351
+ #: models/redirect.php:491
1352
  msgid "Invalid redirect action"
1353
  msgstr "不正なリダイレクトアクション"
1354
 
1355
+ #: models/redirect.php:485
1356
  msgid "Invalid redirect matcher"
1357
  msgstr "不正なリダイレクトマッチャー"
1358
 
1360
  msgid "Unable to add new redirect"
1361
  msgstr "新しいリダイレクトの追加に失敗しました"
1362
 
1363
+ #: redirection-strings.php:23 redirection-strings.php:271
1364
  msgid "Something went wrong 🙁"
1365
  msgstr "問題が発生しました"
1366
 
1367
+ #: redirection-strings.php:22
1368
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
  msgstr "何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"
1370
 
1371
  #. translators: maximum number of log entries
1372
+ #: redirection-admin.php:182
1373
  msgid "Log entries (%d max)"
1374
  msgstr "ログ (最大 %d)"
1375
 
1376
+ #: redirection-strings.php:177
1377
  msgid "Search by IP"
1378
  msgstr "IP による検索"
1379
 
1380
+ #: redirection-strings.php:172
1381
  msgid "Select bulk action"
1382
  msgstr "一括操作を選択"
1383
 
1384
+ #: redirection-strings.php:173
1385
  msgid "Bulk Actions"
1386
  msgstr "一括操作"
1387
 
1388
+ #: redirection-strings.php:174
1389
  msgid "Apply"
1390
  msgstr "適応"
1391
 
1392
+ #: redirection-strings.php:165
1393
  msgid "First page"
1394
  msgstr "最初のページ"
1395
 
1396
+ #: redirection-strings.php:166
1397
  msgid "Prev page"
1398
  msgstr "前のページ"
1399
 
1400
+ #: redirection-strings.php:167
1401
  msgid "Current Page"
1402
  msgstr "現在のページ"
1403
 
1404
+ #: redirection-strings.php:168
1405
  msgid "of %(page)s"
1406
  msgstr "%(page)s"
1407
 
1408
+ #: redirection-strings.php:169
1409
  msgid "Next page"
1410
  msgstr "次のページ"
1411
 
1412
+ #: redirection-strings.php:170
1413
  msgid "Last page"
1414
  msgstr "最後のページ"
1415
 
1416
+ #: redirection-strings.php:171
1417
  msgid "%s item"
1418
  msgid_plural "%s items"
1419
  msgstr[0] "%s 個のアイテム"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "すべて選択"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "データのロード中に問題が発生しました - もう一度お試しください"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "結果なし"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "本当にログを消去しますか ?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "ログを消去する"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "ログを消去しない"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "ニュースレター"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "メールアドレス: "
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "永久に"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "本当にプラグインを削除しますか ?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "プラグインを消去する"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "プラグインを消去しない"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Redirection を応援する"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "サポート"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404 エラー"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "ログ"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  msgstr "個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "転送ルールを削除"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "アップロード"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "インポート"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "更新"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "URL を自動生成 "
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS トークン"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404 ログ"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(ログの保存期間)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "転送ログ"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "このプラグインの作者に対する援助を行いました"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "プラグインサポート"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "設定"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "2ヶ月"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "1ヶ月"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "1週間"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "1日"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "ログなし"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "すべてを削除"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "グループを追加"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "検索"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "グループ"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "保存"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "グループ"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "一致条件"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "新しい転送ルールを追加"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "キャンセル"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "ダウンロード"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "設定"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "エラー (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "通過"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "ランダムな記事へ転送"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "URL へ転送"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "転送ルールを作成する際に無効なグループが指定されました"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "ソース URL"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "日付"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "転送ルールを追加"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "すべてのモジュール"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "転送ルールを表示"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "モジュール"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "転送ルール"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "名称"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "フィルター"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "訪問数をリセット"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "有効化"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "無効化"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "削除"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "編集"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "前回のアクセス"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "ヒット数"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "タイプ"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "編集済みの投稿"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "転送ルール"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "ユーザーエージェント"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL およびユーザーエージェント"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "ターゲット URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL のみ"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "正規表現"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "リファラー"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL およびリファラー"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "ログアウト中"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "ログイン中"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL およびログイン状態"
locale/redirection-lv.mo CHANGED
Binary file
locale/redirection-lv.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: lv\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
  msgstr ""
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
  msgstr ""
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr ""
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr ""
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr ""
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr ""
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr ""
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr ""
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr ""
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr ""
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr ""
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr ""
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr ""
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr ""
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr ""
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr ""
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr ""
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr ""
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr ""
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr ""
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr ""
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr ""
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr ""
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr ""
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr ""
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr ""
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr ""
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr ""
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr ""
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr ""
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr ""
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr ""
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr ""
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr ""
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr ""
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr ""
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr ""
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr ""
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr ""
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr ""
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr ""
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr ""
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Pāradresāciju Testēšana"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr ""
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL netiek pāradresēts ar šo spraudni"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL tiek pāradresēts ar šo spraudni"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Neizdevās izgūt informāciju"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr ""
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Servera domēns"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr ""
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr ""
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr ""
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr ""
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(eksperimentāls)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Piespiedu HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Informācija par privātumu"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Pievienot Jaunu"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr ""
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL un servera domēns"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr ""
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr ""
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr ""
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr ""
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Tīmekļa vietnes un sākumlapas URL ir saderīgi"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr ""
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr ""
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Galvenes saturs"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Galvenes nosaukums"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP Galvene"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress filtra nosaukums"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filtra Nosaukums"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Sīkdatnes saturs"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Sīkdatnes nosaukums"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Sīkdatne"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr ""
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr ""
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr ""
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL un sīkdatne"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr ""
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr ""
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr ""
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr ""
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr ""
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr ""
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr ""
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr ""
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr ""
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Neviens no ieteikumiem nelīdzēja"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr ""
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr ""
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr ""
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr ""
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr ""
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr ""
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr ""
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Nezināma Iekārta"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Iekārta"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operētājsistēma"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Pārlūkprogramma"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr ""
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Iekārtas dati"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr ""
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Bez IP žurnalēšanas"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Pilna IP žurnalēšana"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Daļēja IP maskēšana"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Pārraudzīt izmaiņas %(type)s saturā"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "IP Žurnalēšana"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(atlasiet IP žurnalēšanas līmeni)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr ""
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr ""
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Atlasīt pēc IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Ieteicējs / Iekārtas Dati"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "IP Ģeolokācijas Kļūda"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr ""
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "Par šo adresi nav pieejama informācija."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "IP Ģeolokācija"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Pilsēta"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Reģions"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Laika Zona"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Ģeogr. Atrašanās Vieta"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr ""
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr ""
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr ""
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  msgstr ""
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  msgstr ""
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr ""
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr ""
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr ""
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr ""
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Vai tiešām vēlies importēt datus no %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Importēšana no citiem Spraudņiem"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr ""
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr ""
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr ""
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr ""
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Pāradresētājs nav pareizi uzstādīts"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr ""
631
 
@@ -633,454 +909,450 @@ msgstr ""
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr ""
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr ""
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr ""
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr ""
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr ""
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Spraudņa Statuss"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr ""
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr ""
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Jaunumu Plūsmas lasītāji"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr ""
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr ""
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr ""
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr ""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL Pārraudzība"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Dzēst 404 kļūdas"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Dzēst visu par IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr ""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr ""
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr ""
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr ""
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr ""
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Nav iespējams izveidot grupu"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Neizdevās izlabot tabulas datubāzē"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr ""
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr ""
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr ""
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr ""
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr ""
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr ""
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Konstatētas derīgas grupas"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr ""
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr ""
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Tabulas datubāzē"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "Iztrūkst šādas tabulas:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Visas tabulas ir pieejamas"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Konstatēta kešatmiņā saglabāta pāradresācija"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Lūdzu iztīri savas pārlūkprogrammas kešatmiņu un pārlādē šo lapu."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Dati šajā lapā ir novecojuši. Lūdzu pārlādē to."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr ""
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr ""
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr ""
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr ""
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr ""
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr ""
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr ""
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr ""
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  msgstr ""
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr ""
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr ""
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr ""
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Nepieciešama palīdzība?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr ""
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Secība"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Aizvākts"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Pozīcija"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  msgstr ""
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr ""
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr ""
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr ""
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr ""
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr ""
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr ""
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr ""
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr ""
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr ""
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr ""
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr ""
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "Labi"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Aizvērt"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr ""
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Eksportēšana"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr ""
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr ""
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr ""
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr ""
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr ""
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr ""
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Pāradresētāja JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Skatīt"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr ""
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Importēt/Eksportēt"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Žurnalēšana"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 kļūdas"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr ""
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Es vēlos sniegt papildus atbalstu."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Atbalstīt! 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr ""
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr ""
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Uzstādījumi tika saglabāti"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Grupa tika saglabāta"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Vai tiešām vēlies dzēst šo vienību (-as)?"
1008
  msgstr[1] "Vai tiešām vēlies dzēst šīs vienības?"
1009
  msgstr[2] "Vai tiešām vēlies dzēst šīs vienības?"
1010
 
1011
- #: redirection-strings.php:371
1012
  msgid "pass"
1013
  msgstr ""
1014
 
1015
- #: redirection-strings.php:331
1016
  msgid "All groups"
1017
  msgstr "Visas grupas"
1018
 
1019
- #: redirection-strings.php:296
1020
  msgid "301 - Moved Permanently"
1021
  msgstr "301 - Pārvietots Pavisam"
1022
 
1023
- #: redirection-strings.php:297
1024
  msgid "302 - Found"
1025
  msgstr "302 - Atrasts"
1026
 
1027
- #: redirection-strings.php:300
1028
  msgid "307 - Temporary Redirect"
1029
  msgstr "307 - Pagaidu Pāradresācija"
1030
 
1031
- #: redirection-strings.php:301
1032
  msgid "308 - Permanent Redirect"
1033
  msgstr "308 - Galēja Pāradresācija"
1034
 
1035
- #: redirection-strings.php:303
1036
  msgid "401 - Unauthorized"
1037
  msgstr "401 - Nav Autorizējies"
1038
 
1039
- #: redirection-strings.php:305
1040
  msgid "404 - Not Found"
1041
  msgstr "404 - Nav Atrasts"
1042
 
1043
- #: redirection-strings.php:308
1044
  msgid "Title"
1045
  msgstr "Nosaukums"
1046
 
1047
- #: redirection-strings.php:311
1048
  msgid "When matched"
1049
  msgstr ""
1050
 
1051
- #: redirection-strings.php:312
1052
  msgid "with HTTP code"
1053
  msgstr "ar HTTP kodu"
1054
 
1055
- #: redirection-strings.php:321
1056
  msgid "Show advanced options"
1057
  msgstr "Rādīt papildu iespējas"
1058
 
1059
- #: redirection-strings.php:274
1060
  msgid "Matched Target"
1061
  msgstr ""
1062
 
1063
- #: redirection-strings.php:276
1064
  msgid "Unmatched Target"
1065
  msgstr ""
1066
 
1067
- #: redirection-strings.php:57 redirection-strings.php:58
1068
  msgid "Saving..."
1069
  msgstr "Saglabā izmaiņas..."
1070
 
1071
- #: redirection-strings.php:55
1072
  msgid "View notice"
1073
  msgstr ""
1074
 
1075
- #: models/redirect.php:560
1076
  msgid "Invalid source URL"
1077
  msgstr ""
1078
 
1079
- #: models/redirect.php:488
1080
  msgid "Invalid redirect action"
1081
  msgstr ""
1082
 
1083
- #: models/redirect.php:482
1084
  msgid "Invalid redirect matcher"
1085
  msgstr ""
1086
 
@@ -1088,457 +1360,461 @@ msgstr ""
1088
  msgid "Unable to add new redirect"
1089
  msgstr ""
1090
 
1091
- #: redirection-strings.php:12 redirection-strings.php:116
1092
  msgid "Something went wrong 🙁"
1093
  msgstr "Kaut kas nogāja greizi 🙁"
1094
 
1095
- #: redirection-strings.php:11
1096
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
  msgstr ""
1098
 
1099
  #. translators: maximum number of log entries
1100
- #: redirection-admin.php:193
1101
  msgid "Log entries (%d max)"
1102
  msgstr ""
1103
 
1104
- #: redirection-strings.php:74
1105
  msgid "Search by IP"
1106
  msgstr "Meklēt pēc IP"
1107
 
1108
- #: redirection-strings.php:69
1109
  msgid "Select bulk action"
1110
  msgstr "Izvēlies lielapjoma darbību"
1111
 
1112
- #: redirection-strings.php:70
1113
  msgid "Bulk Actions"
1114
  msgstr "Lielapjoma Darbības"
1115
 
1116
- #: redirection-strings.php:71
1117
  msgid "Apply"
1118
  msgstr "Pielietot"
1119
 
1120
- #: redirection-strings.php:62
1121
  msgid "First page"
1122
  msgstr "Pirmā lapa"
1123
 
1124
- #: redirection-strings.php:63
1125
  msgid "Prev page"
1126
  msgstr "Iepriekšējā lapa"
1127
 
1128
- #: redirection-strings.php:64
1129
  msgid "Current Page"
1130
  msgstr ""
1131
 
1132
- #: redirection-strings.php:65
1133
  msgid "of %(page)s"
1134
  msgstr ""
1135
 
1136
- #: redirection-strings.php:66
1137
  msgid "Next page"
1138
  msgstr "Nākošā lapa"
1139
 
1140
- #: redirection-strings.php:67
1141
  msgid "Last page"
1142
  msgstr "Pēdējā lapa"
1143
 
1144
- #: redirection-strings.php:68
1145
  msgid "%s item"
1146
  msgid_plural "%s items"
1147
  msgstr[0] "%s vienība"
1148
  msgstr[1] "%s vienības"
1149
  msgstr[2] "%s vienības"
1150
 
1151
- #: redirection-strings.php:61
1152
  msgid "Select All"
1153
  msgstr "Iezīmēt Visu"
1154
 
1155
- #: redirection-strings.php:73
1156
  msgid "Sorry, something went wrong loading the data - please try again"
1157
  msgstr ""
1158
 
1159
- #: redirection-strings.php:72
1160
  msgid "No results"
1161
  msgstr ""
1162
 
1163
- #: redirection-strings.php:159
1164
  msgid "Delete the logs - are you sure?"
1165
  msgstr ""
1166
 
1167
- #: redirection-strings.php:160
1168
  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."
1169
  msgstr ""
1170
 
1171
- #: redirection-strings.php:161
1172
  msgid "Yes! Delete the logs"
1173
  msgstr "Jā! Dzēst žurnālus"
1174
 
1175
- #: redirection-strings.php:162
1176
  msgid "No! Don't delete the logs"
1177
  msgstr "Nē! Nedzēst žurnālus"
1178
 
1179
- #: redirection-strings.php:388
1180
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1181
  msgstr ""
1182
 
1183
- #: redirection-strings.php:387 redirection-strings.php:389
1184
  msgid "Newsletter"
1185
  msgstr "Jaunāko ziņu Abonēšana"
1186
 
1187
- #: redirection-strings.php:390
1188
  msgid "Want to keep up to date with changes to Redirection?"
1189
  msgstr "Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"
1190
 
1191
- #: redirection-strings.php:391
1192
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1193
  msgstr ""
1194
 
1195
- #: redirection-strings.php:392
1196
  msgid "Your email address:"
1197
  msgstr "Tava e-pasta adrese:"
1198
 
1199
- #: redirection-strings.php:219
1200
  msgid "You've supported this plugin - thank you!"
1201
  msgstr "Tu esi atbalstījis šo spraudni - paldies Tev!"
1202
 
1203
- #: redirection-strings.php:222
1204
  msgid "You get useful software and I get to carry on making it better."
1205
  msgstr "Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."
1206
 
1207
- #: redirection-strings.php:230 redirection-strings.php:235
1208
  msgid "Forever"
1209
  msgstr "Mūžīgi"
1210
 
1211
- #: redirection-strings.php:211
1212
  msgid "Delete the plugin - are you sure?"
1213
  msgstr "Spraudņa dzēšana - vai tiešām vēlies to darīt?"
1214
 
1215
- #: redirection-strings.php:212
1216
  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."
1217
  msgstr "Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."
1218
 
1219
- #: redirection-strings.php:213
1220
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1221
  msgstr "Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."
1222
 
1223
- #: redirection-strings.php:214
1224
  msgid "Yes! Delete the plugin"
1225
  msgstr "Jā! Dzēst šo spraudni"
1226
 
1227
- #: redirection-strings.php:215
1228
  msgid "No! Don't delete the plugin"
1229
  msgstr "Nē! Nedzēst šo spraudni"
1230
 
1231
- #. Author of the plugin/theme
1232
  msgid "John Godley"
1233
  msgstr "John Godley"
1234
 
1235
- #. Description of the plugin/theme
1236
  msgid "Manage all your 301 redirects and monitor 404 errors"
1237
  msgstr ""
1238
 
1239
- #: redirection-strings.php:221
1240
  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}}."
1241
  msgstr "Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."
1242
 
1243
- #: redirection-admin.php:310
1244
  msgid "Redirection Support"
1245
  msgstr ""
1246
 
1247
- #: redirection-strings.php:54 redirection-strings.php:111
1248
  msgid "Support"
1249
  msgstr "Atbalsts"
1250
 
1251
- #: redirection-strings.php:51
1252
  msgid "404s"
1253
  msgstr ""
1254
 
1255
- #: redirection-strings.php:50
1256
  msgid "Log"
1257
  msgstr ""
1258
 
1259
- #: redirection-strings.php:217
1260
  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."
1261
  msgstr ""
1262
 
1263
- #: redirection-strings.php:216
1264
  msgid "Delete Redirection"
1265
  msgstr ""
1266
 
1267
- #: redirection-strings.php:129
1268
  msgid "Upload"
1269
  msgstr "Augšupielādēt"
1270
 
1271
- #: redirection-strings.php:140
1272
  msgid "Import"
1273
  msgstr "Importēt"
1274
 
1275
- #: redirection-strings.php:269
1276
  msgid "Update"
1277
  msgstr "Saglabāt Izmaiņas"
1278
 
1279
- #: redirection-strings.php:258
1280
  msgid "Auto-generate URL"
1281
  msgstr "URL Autom. Izveide"
1282
 
1283
- #: redirection-strings.php:257
1284
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1285
  msgstr "Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"
1286
 
1287
- #: redirection-strings.php:256
1288
  msgid "RSS Token"
1289
  msgstr "RSS Identifikators"
1290
 
1291
- #: redirection-strings.php:250
1292
  msgid "404 Logs"
1293
  msgstr "404 Žurnalēšana"
1294
 
1295
- #: redirection-strings.php:249 redirection-strings.php:251
1296
  msgid "(time to keep logs for)"
1297
  msgstr "(laiks, cik ilgi paturēt ierakstus žurnālā)"
1298
 
1299
- #: redirection-strings.php:248
1300
  msgid "Redirect Logs"
1301
  msgstr "Pāradresāciju Žurnalēšana"
1302
 
1303
- #: redirection-strings.php:247
1304
  msgid "I'm a nice person and I have helped support the author of this plugin"
1305
  msgstr "Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."
1306
 
1307
- #: redirection-strings.php:224
1308
  msgid "Plugin Support"
1309
  msgstr "Spraudņa Atbalstīšana"
1310
 
1311
- #: redirection-strings.php:53 redirection-strings.php:110
1312
  msgid "Options"
1313
  msgstr "Uzstādījumi"
1314
 
1315
- #: redirection-strings.php:229
1316
  msgid "Two months"
1317
  msgstr "Divus mēnešus"
1318
 
1319
- #: redirection-strings.php:228
1320
  msgid "A month"
1321
  msgstr "Mēnesi"
1322
 
1323
- #: redirection-strings.php:227 redirection-strings.php:234
1324
  msgid "A week"
1325
  msgstr "Nedēļu"
1326
 
1327
- #: redirection-strings.php:226 redirection-strings.php:233
1328
  msgid "A day"
1329
  msgstr "Dienu"
1330
 
1331
- #: redirection-strings.php:225
1332
  msgid "No logs"
1333
  msgstr "Bez žurnalēšanas"
1334
 
1335
- #: redirection-strings.php:158 redirection-strings.php:194
1336
- #: redirection-strings.php:199
1337
  msgid "Delete All"
1338
  msgstr "Dzēst Visu"
1339
 
1340
- #: redirection-strings.php:94
1341
  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."
1342
  msgstr "Izmanto grupas, lai organizētu uzstādītās pāradresācijas. Grupas tiek piesaistītas modulim, kas nosaka, pēc kādiem darbības principiem (metodes) pāradresācijas konkrētajā grupā ir jāveic."
1343
 
1344
- #: redirection-strings.php:93
1345
  msgid "Add Group"
1346
  msgstr "Pievienot grupu"
1347
 
1348
- #: redirection-strings.php:75
1349
  msgid "Search"
1350
  msgstr "Meklēt"
1351
 
1352
- #: redirection-strings.php:49 redirection-strings.php:106
1353
  msgid "Groups"
1354
  msgstr "Grupas"
1355
 
1356
- #: redirection-strings.php:14 redirection-strings.php:103
1357
- #: redirection-strings.php:317
1358
  msgid "Save"
1359
  msgstr "Saglabāt"
1360
 
1361
- #: redirection-strings.php:60 redirection-strings.php:313
1362
  msgid "Group"
1363
  msgstr "Grupa"
1364
 
1365
- #: redirection-strings.php:310
1366
  msgid "Match"
1367
  msgstr ""
1368
 
1369
- #: redirection-strings.php:332
1370
  msgid "Add new redirection"
1371
  msgstr ""
1372
 
1373
- #: redirection-strings.php:104 redirection-strings.php:130
1374
- #: redirection-strings.php:319
1375
  msgid "Cancel"
1376
  msgstr "Atcelt"
1377
 
1378
- #: redirection-strings.php:154
1379
  msgid "Download"
1380
  msgstr "Lejupielādēt"
1381
 
1382
- #. Plugin Name of the plugin/theme
 
1383
  msgid "Redirection"
1384
  msgstr "Pāradresētājs"
1385
 
1386
- #: redirection-admin.php:158
1387
  msgid "Settings"
1388
  msgstr "Iestatījumi"
1389
 
1390
- #: redirection-strings.php:294
1391
  msgid "Error (404)"
1392
  msgstr ""
1393
 
1394
- #: redirection-strings.php:293
1395
  msgid "Pass-through"
1396
  msgstr ""
1397
 
1398
- #: redirection-strings.php:292
1399
  msgid "Redirect to random post"
1400
  msgstr "Pāradresēt uz nejauši izvēlētu rakstu"
1401
 
1402
- #: redirection-strings.php:291
1403
  msgid "Redirect to URL"
1404
  msgstr "Pāradresēt uz URL"
1405
 
1406
- #: models/redirect.php:550
1407
  msgid "Invalid group when creating redirect"
1408
  msgstr ""
1409
 
1410
- #: redirection-strings.php:167 redirection-strings.php:175
1411
- #: redirection-strings.php:180 redirection-strings.php:354
1412
  msgid "IP"
1413
  msgstr "IP"
1414
 
1415
- #: redirection-strings.php:165 redirection-strings.php:173
1416
- #: redirection-strings.php:178 redirection-strings.php:318
 
1417
  msgid "Source URL"
1418
  msgstr "Sākotnējais URL"
1419
 
1420
- #: redirection-strings.php:164 redirection-strings.php:177
1421
  msgid "Date"
1422
  msgstr "Datums"
1423
 
1424
- #: redirection-strings.php:190 redirection-strings.php:203
1425
- #: redirection-strings.php:207 redirection-strings.php:333
1426
  msgid "Add Redirect"
1427
  msgstr "Pievienot Pāradresāciju"
1428
 
1429
- #: redirection-strings.php:92
1430
  msgid "All modules"
1431
  msgstr ""
1432
 
1433
- #: redirection-strings.php:98
1434
  msgid "View Redirects"
1435
  msgstr "Skatīt pāradresācijas"
1436
 
1437
- #: redirection-strings.php:88 redirection-strings.php:102
1438
  msgid "Module"
1439
  msgstr "Modulis"
1440
 
1441
- #: redirection-strings.php:48 redirection-strings.php:87
1442
  msgid "Redirects"
1443
  msgstr "Pāradresācijas"
1444
 
1445
- #: redirection-strings.php:86 redirection-strings.php:95
1446
- #: redirection-strings.php:101
1447
  msgid "Name"
1448
  msgstr "Nosaukums"
1449
 
1450
- #: redirection-strings.php:59
1451
  msgid "Filter"
1452
  msgstr "Atlasīt"
1453
 
1454
- #: redirection-strings.php:330
1455
  msgid "Reset hits"
1456
  msgstr "Atiestatīt Izpildes"
1457
 
1458
- #: redirection-strings.php:90 redirection-strings.php:100
1459
- #: redirection-strings.php:328 redirection-strings.php:370
1460
  msgid "Enable"
1461
  msgstr "Ieslēgt"
1462
 
1463
- #: redirection-strings.php:91 redirection-strings.php:99
1464
- #: redirection-strings.php:329 redirection-strings.php:368
1465
  msgid "Disable"
1466
  msgstr "Atslēgt"
1467
 
1468
- #: redirection-strings.php:89 redirection-strings.php:97
1469
- #: redirection-strings.php:168 redirection-strings.php:169
1470
- #: redirection-strings.php:181 redirection-strings.php:184
1471
- #: redirection-strings.php:206 redirection-strings.php:218
1472
- #: redirection-strings.php:327 redirection-strings.php:367
1473
  msgid "Delete"
1474
  msgstr "Dzēst"
1475
 
1476
- #: redirection-strings.php:96 redirection-strings.php:366
1477
  msgid "Edit"
1478
  msgstr "Labot"
1479
 
1480
- #: redirection-strings.php:326
1481
  msgid "Last Access"
1482
  msgstr "Pēdējā piekļuve"
1483
 
1484
- #: redirection-strings.php:325
1485
  msgid "Hits"
1486
  msgstr "Izpildes"
1487
 
1488
- #: redirection-strings.php:323 redirection-strings.php:383
1489
  msgid "URL"
1490
  msgstr "URL"
1491
 
1492
- #: redirection-strings.php:322
1493
  msgid "Type"
1494
  msgstr "Veids"
1495
 
1496
- #: models/database.php:139
1497
  msgid "Modified Posts"
1498
  msgstr "Izmainītie Raksti"
1499
 
1500
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1501
  msgid "Redirections"
1502
  msgstr "Pāradresācijas"
1503
 
1504
- #: redirection-strings.php:334
1505
  msgid "User Agent"
1506
  msgstr "Programmatūras Dati"
1507
 
1508
- #: matches/user-agent.php:10 redirection-strings.php:284
1509
  msgid "URL and user agent"
1510
  msgstr "URL un iekārtas dati"
1511
 
1512
- #: redirection-strings.php:278
 
1513
  msgid "Target URL"
1514
  msgstr "Galamērķa URL"
1515
 
1516
- #: matches/url.php:7 redirection-strings.php:280
1517
  msgid "URL only"
1518
  msgstr "tikai URL"
1519
 
1520
- #: redirection-strings.php:316 redirection-strings.php:340
1521
- #: redirection-strings.php:344 redirection-strings.php:352
1522
- #: redirection-strings.php:361
1523
  msgid "Regex"
1524
  msgstr "Regulārā Izteiksme"
1525
 
1526
- #: redirection-strings.php:359
1527
  msgid "Referrer"
1528
  msgstr "Ieteicējs (Referrer)"
1529
 
1530
- #: matches/referrer.php:10 redirection-strings.php:283
1531
  msgid "URL and referrer"
1532
  msgstr "URL un ieteicējs (referrer)"
1533
 
1534
- #: redirection-strings.php:272
1535
  msgid "Logged Out"
1536
  msgstr "Ja nav autorizējies"
1537
 
1538
- #: redirection-strings.php:270
1539
  msgid "Logged In"
1540
  msgstr "Ja autorizējies"
1541
 
1542
- #: matches/login.php:8 redirection-strings.php:281
1543
  msgid "URL and login status"
1544
  msgstr "URL un autorizācijas statuss"
11
  "Language: lv\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
  msgstr ""
258
 
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
 
261
  msgstr ""
262
 
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr ""
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr ""
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr ""
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr ""
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr ""
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr ""
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr ""
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr ""
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr ""
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr ""
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr ""
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr ""
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr ""
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr ""
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr ""
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr ""
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr ""
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr ""
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr ""
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr ""
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr ""
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr ""
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr ""
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr ""
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr ""
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr ""
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr ""
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr ""
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr ""
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr ""
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr ""
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Pāradresāciju Testēšana"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr ""
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL netiek pāradresēts ar šo spraudni"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL tiek pāradresēts ar šo spraudni"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Neizdevās izgūt informāciju"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr ""
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Servera domēns"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr ""
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr ""
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr ""
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "Relatīvs sākotnējais URL no kura vēlies veikt pāradresāciju"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "Galamērķa URL, uz kuru Tu vēlies pāradresēt sākotnējo saiti"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(eksperimentāls)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Piespiedu pāradresācija no HTTP uz HTTPS. Lūdzu pārliecinies, ka Tavai tīmekļa vietnei HTTPS darbojas korekti, pirms šī parametra iespējošanas."
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Piespiedu HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Informācija par privātumu"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Pievienot Jaunu"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Lūdzu izej no sistēmas, un autorizējies tajā vēlreiz."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr ""
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL un servera domēns"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr ""
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr ""
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr ""
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr ""
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Tīmekļa vietnes un sākumlapas URL ir saderīgi"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr ""
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Galvenes saturs"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Galvenes nosaukums"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP Galvene"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress filtra nosaukums"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filtra Nosaukums"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Sīkdatnes saturs"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Sīkdatnes nosaukums"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Sīkdatne"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr ""
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Ja Tu izmanto kešošanas sistēmu, piemēram \"CloudFlare\", lūdzi izlasi šo:"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr ""
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr ""
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL un sīkdatne"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr ""
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr ""
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr ""
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr ""
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr ""
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr ""
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr ""
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr ""
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr ""
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Neviens no ieteikumiem nelīdzēja"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Lūdzu apskati <a href=\"https://redirection.me/support/problems/\">sarakstu ar biežākajām problēmām</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Neizdevās ielādēt spraudni \"Pāradresācija\" ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr ""
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr ""
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr ""
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr ""
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr ""
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr ""
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr ""
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Nezināma Iekārta"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Iekārta"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operētājsistēma"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Pārlūkprogramma"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr ""
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Iekārtas dati"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr ""
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Bez IP žurnalēšanas"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Pilna IP žurnalēšana"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Daļēja IP maskēšana"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Pārraudzīt izmaiņas %(type)s saturā"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "IP Žurnalēšana"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(atlasiet IP žurnalēšanas līmeni)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr ""
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr ""
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Atlasīt pēc IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Ieteicējs / Iekārtas Dati"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "IP Ģeolokācijas Kļūda"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr ""
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr ""
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "Par šo adresi nav pieejama informācija."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "IP Ģeolokācija"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Pilsēta"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Reģions"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Laika Zona"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Ģeogr. Atrašanās Vieta"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Darbību nodrošina {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr ""
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr ""
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr ""
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  msgstr ""
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Ja vēlies ziņot par nepilnību, lūdzu iepazīsties ar {{report}}Ziņošana Par Nepilnībām{{/report}} ceļvedi."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  msgstr ""
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr ""
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr ""
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr ""
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr ""
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Vai tiešām vēlies importēt datus no %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Importēšana no citiem Spraudņiem"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr ""
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr ""
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr ""
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr ""
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr ""
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr ""
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr ""
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr ""
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr ""
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Spraudņa Statuss"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr ""
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr ""
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Jaunumu Plūsmas lasītāji"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr ""
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr ""
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr ""
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr ""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL Pārraudzība"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Dzēst 404 kļūdas"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Dzēst visu par IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr ""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr ""
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr ""
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr ""
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr ""
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Nav iespējams izveidot grupu"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr ""
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr ""
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr ""
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr ""
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr ""
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr ""
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Konstatētas derīgas grupas"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr ""
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr ""
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Tabulas datubāzē"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "Iztrūkst šādas tabulas:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Visas tabulas ir pieejamas"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Konstatēta kešatmiņā saglabāta pāradresācija"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Lūdzu iztīri savas pārlūkprogrammas kešatmiņu un pārlādē šo lapu."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Dati šajā lapā ir novecojuši. Lūdzu pārlādē to."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr ""
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr ""
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr ""
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr ""
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr ""
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr ""
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr ""
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr ""
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  msgstr ""
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr ""
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr ""
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr ""
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Nepieciešama palīdzība?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr ""
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Secība"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Aizvākts"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Pozīcija"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  msgstr ""
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr ""
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr ""
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr ""
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr ""
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr ""
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr ""
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr ""
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr ""
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr ""
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr ""
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr ""
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "Labi"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Aizvērt"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr ""
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Eksportēšana"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr ""
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr ""
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr ""
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr ""
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr ""
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr ""
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Pāradresētāja JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Skatīt"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr ""
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Importēt/Eksportēt"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Žurnalēšana"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 kļūdas"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr ""
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Es vēlos sniegt papildus atbalstu."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Atbalstīt! 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr ""
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr ""
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Uzstādījumi tika saglabāti"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Grupa tika saglabāta"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Vai tiešām vēlies dzēst šo vienību (-as)?"
1280
  msgstr[1] "Vai tiešām vēlies dzēst šīs vienības?"
1281
  msgstr[2] "Vai tiešām vēlies dzēst šīs vienības?"
1282
 
1283
+ #: redirection-strings.php:442
1284
  msgid "pass"
1285
  msgstr ""
1286
 
1287
+ #: redirection-strings.php:434
1288
  msgid "All groups"
1289
  msgstr "Visas grupas"
1290
 
1291
+ #: redirection-strings.php:98
1292
  msgid "301 - Moved Permanently"
1293
  msgstr "301 - Pārvietots Pavisam"
1294
 
1295
+ #: redirection-strings.php:99
1296
  msgid "302 - Found"
1297
  msgstr "302 - Atrasts"
1298
 
1299
+ #: redirection-strings.php:102
1300
  msgid "307 - Temporary Redirect"
1301
  msgstr "307 - Pagaidu Pāradresācija"
1302
 
1303
+ #: redirection-strings.php:103
1304
  msgid "308 - Permanent Redirect"
1305
  msgstr "308 - Galēja Pāradresācija"
1306
 
1307
+ #: redirection-strings.php:105
1308
  msgid "401 - Unauthorized"
1309
  msgstr "401 - Nav Autorizējies"
1310
 
1311
+ #: redirection-strings.php:107
1312
  msgid "404 - Not Found"
1313
  msgstr "404 - Nav Atrasts"
1314
 
1315
+ #: redirection-strings.php:110
1316
  msgid "Title"
1317
  msgstr "Nosaukums"
1318
 
1319
+ #: redirection-strings.php:113
1320
  msgid "When matched"
1321
  msgstr ""
1322
 
1323
+ #: redirection-strings.php:114
1324
  msgid "with HTTP code"
1325
  msgstr "ar HTTP kodu"
1326
 
1327
+ #: redirection-strings.php:123
1328
  msgid "Show advanced options"
1329
  msgstr "Rādīt papildu iespējas"
1330
 
1331
+ #: redirection-strings.php:76
1332
  msgid "Matched Target"
1333
  msgstr ""
1334
 
1335
+ #: redirection-strings.php:78
1336
  msgid "Unmatched Target"
1337
  msgstr ""
1338
 
1339
+ #: redirection-strings.php:68 redirection-strings.php:69
1340
  msgid "Saving..."
1341
  msgstr "Saglabā izmaiņas..."
1342
 
1343
+ #: redirection-strings.php:66
1344
  msgid "View notice"
1345
  msgstr ""
1346
 
1347
+ #: models/redirect.php:563
1348
  msgid "Invalid source URL"
1349
  msgstr ""
1350
 
1351
+ #: models/redirect.php:491
1352
  msgid "Invalid redirect action"
1353
  msgstr ""
1354
 
1355
+ #: models/redirect.php:485
1356
  msgid "Invalid redirect matcher"
1357
  msgstr ""
1358
 
1360
  msgid "Unable to add new redirect"
1361
  msgstr ""
1362
 
1363
+ #: redirection-strings.php:23 redirection-strings.php:271
1364
  msgid "Something went wrong 🙁"
1365
  msgstr "Kaut kas nogāja greizi 🙁"
1366
 
1367
+ #: redirection-strings.php:22
1368
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
  msgstr ""
1370
 
1371
  #. translators: maximum number of log entries
1372
+ #: redirection-admin.php:182
1373
  msgid "Log entries (%d max)"
1374
  msgstr ""
1375
 
1376
+ #: redirection-strings.php:177
1377
  msgid "Search by IP"
1378
  msgstr "Meklēt pēc IP"
1379
 
1380
+ #: redirection-strings.php:172
1381
  msgid "Select bulk action"
1382
  msgstr "Izvēlies lielapjoma darbību"
1383
 
1384
+ #: redirection-strings.php:173
1385
  msgid "Bulk Actions"
1386
  msgstr "Lielapjoma Darbības"
1387
 
1388
+ #: redirection-strings.php:174
1389
  msgid "Apply"
1390
  msgstr "Pielietot"
1391
 
1392
+ #: redirection-strings.php:165
1393
  msgid "First page"
1394
  msgstr "Pirmā lapa"
1395
 
1396
+ #: redirection-strings.php:166
1397
  msgid "Prev page"
1398
  msgstr "Iepriekšējā lapa"
1399
 
1400
+ #: redirection-strings.php:167
1401
  msgid "Current Page"
1402
  msgstr ""
1403
 
1404
+ #: redirection-strings.php:168
1405
  msgid "of %(page)s"
1406
  msgstr ""
1407
 
1408
+ #: redirection-strings.php:169
1409
  msgid "Next page"
1410
  msgstr "Nākošā lapa"
1411
 
1412
+ #: redirection-strings.php:170
1413
  msgid "Last page"
1414
  msgstr "Pēdējā lapa"
1415
 
1416
+ #: redirection-strings.php:171
1417
  msgid "%s item"
1418
  msgid_plural "%s items"
1419
  msgstr[0] "%s vienība"
1420
  msgstr[1] "%s vienības"
1421
  msgstr[2] "%s vienības"
1422
 
1423
+ #: redirection-strings.php:164
1424
  msgid "Select All"
1425
  msgstr "Iezīmēt Visu"
1426
 
1427
+ #: redirection-strings.php:176
1428
  msgid "Sorry, something went wrong loading the data - please try again"
1429
  msgstr ""
1430
 
1431
+ #: redirection-strings.php:175
1432
  msgid "No results"
1433
  msgstr ""
1434
 
1435
+ #: redirection-strings.php:314
1436
  msgid "Delete the logs - are you sure?"
1437
  msgstr ""
1438
 
1439
+ #: redirection-strings.php:315
1440
  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."
1441
  msgstr ""
1442
 
1443
+ #: redirection-strings.php:316
1444
  msgid "Yes! Delete the logs"
1445
  msgstr "Jā! Dzēst žurnālus"
1446
 
1447
+ #: redirection-strings.php:317
1448
  msgid "No! Don't delete the logs"
1449
  msgstr "Nē! Nedzēst žurnālus"
1450
 
1451
+ #: redirection-strings.php:459
1452
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1453
  msgstr ""
1454
 
1455
+ #: redirection-strings.php:458 redirection-strings.php:460
1456
  msgid "Newsletter"
1457
  msgstr "Jaunāko ziņu Abonēšana"
1458
 
1459
+ #: redirection-strings.php:461
1460
  msgid "Want to keep up to date with changes to Redirection?"
1461
  msgstr "Vai vēlies pirmais uzzināt par jaunākajām izmaiņām \"Pāradresācija\" spraudnī?"
1462
 
1463
+ #: redirection-strings.php:462
1464
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1465
  msgstr ""
1466
 
1467
+ #: redirection-strings.php:463
1468
  msgid "Your email address:"
1469
  msgstr "Tava e-pasta adrese:"
1470
 
1471
+ #: redirection-strings.php:374
1472
  msgid "You've supported this plugin - thank you!"
1473
  msgstr "Tu esi atbalstījis šo spraudni - paldies Tev!"
1474
 
1475
+ #: redirection-strings.php:377
1476
  msgid "You get useful software and I get to carry on making it better."
1477
  msgstr "Tu saņem noderīgu programmatūru, un es turpinu to padarīt labāku."
1478
 
1479
+ #: redirection-strings.php:385 redirection-strings.php:390
1480
  msgid "Forever"
1481
  msgstr "Mūžīgi"
1482
 
1483
+ #: redirection-strings.php:366
1484
  msgid "Delete the plugin - are you sure?"
1485
  msgstr "Spraudņa dzēšana - vai tiešām vēlies to darīt?"
1486
 
1487
+ #: redirection-strings.php:367
1488
  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."
1489
  msgstr "Dzēšot šo spraudni, tiks nodzēstas visas Tevis izveidotās pāradresācijas, žurnalētie dati un spraudņa uzstādījumi. Dari to tikai tad, ja vēlies aizvākt spraudni pavisam, vai arī veikt tā pilnīgu atiestatīšanu."
1490
 
1491
+ #: redirection-strings.php:368
1492
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1493
  msgstr "Tikko spraudnis tiks nodzēsts, visas caur to uzstādītās pāradresācijas pārstās darboties. Gadījumā, ja tās šķietami turpina darboties, iztīri pārlūkprogrammas kešatmiņu."
1494
 
1495
+ #: redirection-strings.php:369
1496
  msgid "Yes! Delete the plugin"
1497
  msgstr "Jā! Dzēst šo spraudni"
1498
 
1499
+ #: redirection-strings.php:370
1500
  msgid "No! Don't delete the plugin"
1501
  msgstr "Nē! Nedzēst šo spraudni"
1502
 
1503
+ #. Author of the plugin
1504
  msgid "John Godley"
1505
  msgstr "John Godley"
1506
 
1507
+ #. Description of the plugin
1508
  msgid "Manage all your 301 redirects and monitor 404 errors"
1509
  msgstr ""
1510
 
1511
+ #: redirection-strings.php:376
1512
  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}}."
1513
  msgstr "Spraudnis \"Pāradresācija\" ir paredzēts bezmaksas lietošanai - dzīve ir vienkārši lieliska! Tā attīstīšanai ir veltīts daudz laika, un arī Tu vari sniegt atbalstu spraudņa tālākai attīstībai, {{strong}}veicot mazu ziedojumu{{/strong}}."
1514
 
1515
+ #: redirection-admin.php:300
1516
  msgid "Redirection Support"
1517
  msgstr ""
1518
 
1519
+ #: redirection-strings.php:65 redirection-strings.php:266
1520
  msgid "Support"
1521
  msgstr "Atbalsts"
1522
 
1523
+ #: redirection-strings.php:62
1524
  msgid "404s"
1525
  msgstr ""
1526
 
1527
+ #: redirection-strings.php:61
1528
  msgid "Log"
1529
  msgstr ""
1530
 
1531
+ #: redirection-strings.php:372
1532
  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."
1533
  msgstr ""
1534
 
1535
+ #: redirection-strings.php:371
1536
  msgid "Delete Redirection"
1537
  msgstr ""
1538
 
1539
+ #: redirection-strings.php:284
1540
  msgid "Upload"
1541
  msgstr "Augšupielādēt"
1542
 
1543
+ #: redirection-strings.php:295
1544
  msgid "Import"
1545
  msgstr "Importēt"
1546
 
1547
+ #: redirection-strings.php:424
1548
  msgid "Update"
1549
  msgstr "Saglabāt Izmaiņas"
1550
 
1551
+ #: redirection-strings.php:413
1552
  msgid "Auto-generate URL"
1553
  msgstr "URL Autom. Izveide"
1554
 
1555
+ #: redirection-strings.php:412
1556
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1557
  msgstr "Unikāls identifikators, kas ļauj jaunumu plūsmas lasītājiem piekļūt Pāradresāciju žurnāla RSS (atstāj tukšu, lai to izveidotu automātiski)"
1558
 
1559
+ #: redirection-strings.php:411
1560
  msgid "RSS Token"
1561
  msgstr "RSS Identifikators"
1562
 
1563
+ #: redirection-strings.php:405
1564
  msgid "404 Logs"
1565
  msgstr "404 Žurnalēšana"
1566
 
1567
+ #: redirection-strings.php:404 redirection-strings.php:406
1568
  msgid "(time to keep logs for)"
1569
  msgstr "(laiks, cik ilgi paturēt ierakstus žurnālā)"
1570
 
1571
+ #: redirection-strings.php:403
1572
  msgid "Redirect Logs"
1573
  msgstr "Pāradresāciju Žurnalēšana"
1574
 
1575
+ #: redirection-strings.php:402
1576
  msgid "I'm a nice person and I have helped support the author of this plugin"
1577
  msgstr "Esmu foršs cilvēks, jo jau piedalījos šī spraudņa autora atbalstīšanā."
1578
 
1579
+ #: redirection-strings.php:379
1580
  msgid "Plugin Support"
1581
  msgstr "Spraudņa Atbalstīšana"
1582
 
1583
+ #: redirection-strings.php:64 redirection-strings.php:265
1584
  msgid "Options"
1585
  msgstr "Uzstādījumi"
1586
 
1587
+ #: redirection-strings.php:384
1588
  msgid "Two months"
1589
  msgstr "Divus mēnešus"
1590
 
1591
+ #: redirection-strings.php:383
1592
  msgid "A month"
1593
  msgstr "Mēnesi"
1594
 
1595
+ #: redirection-strings.php:382 redirection-strings.php:389
1596
  msgid "A week"
1597
  msgstr "Nedēļu"
1598
 
1599
+ #: redirection-strings.php:381 redirection-strings.php:388
1600
  msgid "A day"
1601
  msgstr "Dienu"
1602
 
1603
+ #: redirection-strings.php:380
1604
  msgid "No logs"
1605
  msgstr "Bez žurnalēšanas"
1606
 
1607
+ #: redirection-strings.php:313 redirection-strings.php:349
1608
+ #: redirection-strings.php:354
1609
  msgid "Delete All"
1610
  msgstr "Dzēst Visu"
1611
 
1612
+ #: redirection-strings.php:244
1613
  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."
1614
  msgstr "Izmanto grupas, lai organizētu uzstādītās pāradresācijas. Grupas tiek piesaistītas modulim, kas nosaka, pēc kādiem darbības principiem (metodes) pāradresācijas konkrētajā grupā ir jāveic."
1615
 
1616
+ #: redirection-strings.php:243
1617
  msgid "Add Group"
1618
  msgstr "Pievienot grupu"
1619
 
1620
+ #: redirection-strings.php:178
1621
  msgid "Search"
1622
  msgstr "Meklēt"
1623
 
1624
+ #: redirection-strings.php:60 redirection-strings.php:261
1625
  msgid "Groups"
1626
  msgstr "Grupas"
1627
 
1628
+ #: redirection-strings.php:25 redirection-strings.php:119
1629
+ #: redirection-strings.php:253
1630
  msgid "Save"
1631
  msgstr "Saglabāt"
1632
 
1633
+ #: redirection-strings.php:115 redirection-strings.php:163
1634
  msgid "Group"
1635
  msgstr "Grupa"
1636
 
1637
+ #: redirection-strings.php:112
1638
  msgid "Match"
1639
  msgstr ""
1640
 
1641
+ #: redirection-strings.php:435
1642
  msgid "Add new redirection"
1643
  msgstr ""
1644
 
1645
+ #: redirection-strings.php:121 redirection-strings.php:254
1646
+ #: redirection-strings.php:285
1647
  msgid "Cancel"
1648
  msgstr "Atcelt"
1649
 
1650
+ #: redirection-strings.php:309
1651
  msgid "Download"
1652
  msgstr "Lejupielādēt"
1653
 
1654
+ #. Plugin Name of the plugin
1655
+ #: redirection-strings.php:233
1656
  msgid "Redirection"
1657
  msgstr "Pāradresētājs"
1658
 
1659
+ #: redirection-admin.php:140
1660
  msgid "Settings"
1661
  msgstr "Iestatījumi"
1662
 
1663
+ #: redirection-strings.php:96
1664
  msgid "Error (404)"
1665
  msgstr ""
1666
 
1667
+ #: redirection-strings.php:95
1668
  msgid "Pass-through"
1669
  msgstr ""
1670
 
1671
+ #: redirection-strings.php:94
1672
  msgid "Redirect to random post"
1673
  msgstr "Pāradresēt uz nejauši izvēlētu rakstu"
1674
 
1675
+ #: redirection-strings.php:93
1676
  msgid "Redirect to URL"
1677
  msgstr "Pāradresēt uz URL"
1678
 
1679
+ #: models/redirect.php:553
1680
  msgid "Invalid group when creating redirect"
1681
  msgstr ""
1682
 
1683
+ #: redirection-strings.php:144 redirection-strings.php:322
1684
+ #: redirection-strings.php:330 redirection-strings.php:335
1685
  msgid "IP"
1686
  msgstr "IP"
1687
 
1688
+ #: redirection-strings.php:120 redirection-strings.php:193
1689
+ #: redirection-strings.php:320 redirection-strings.php:328
1690
+ #: redirection-strings.php:333
1691
  msgid "Source URL"
1692
  msgstr "Sākotnējais URL"
1693
 
1694
+ #: redirection-strings.php:319 redirection-strings.php:332
1695
  msgid "Date"
1696
  msgstr "Datums"
1697
 
1698
+ #: redirection-strings.php:345 redirection-strings.php:358
1699
+ #: redirection-strings.php:362 redirection-strings.php:436
1700
  msgid "Add Redirect"
1701
  msgstr "Pievienot Pāradresāciju"
1702
 
1703
+ #: redirection-strings.php:242
1704
  msgid "All modules"
1705
  msgstr ""
1706
 
1707
+ #: redirection-strings.php:248
1708
  msgid "View Redirects"
1709
  msgstr "Skatīt pāradresācijas"
1710
 
1711
+ #: redirection-strings.php:238 redirection-strings.php:252
1712
  msgid "Module"
1713
  msgstr "Modulis"
1714
 
1715
+ #: redirection-strings.php:59 redirection-strings.php:237
1716
  msgid "Redirects"
1717
  msgstr "Pāradresācijas"
1718
 
1719
+ #: redirection-strings.php:236 redirection-strings.php:245
1720
+ #: redirection-strings.php:251
1721
  msgid "Name"
1722
  msgstr "Nosaukums"
1723
 
1724
+ #: redirection-strings.php:162
1725
  msgid "Filter"
1726
  msgstr "Atlasīt"
1727
 
1728
+ #: redirection-strings.php:433
1729
  msgid "Reset hits"
1730
  msgstr "Atiestatīt Izpildes"
1731
 
1732
+ #: redirection-strings.php:240 redirection-strings.php:250
1733
+ #: redirection-strings.php:431 redirection-strings.php:441
1734
  msgid "Enable"
1735
  msgstr "Ieslēgt"
1736
 
1737
+ #: redirection-strings.php:241 redirection-strings.php:249
1738
+ #: redirection-strings.php:432 redirection-strings.php:439
1739
  msgid "Disable"
1740
  msgstr "Atslēgt"
1741
 
1742
+ #: redirection-strings.php:239 redirection-strings.php:247
1743
+ #: redirection-strings.php:323 redirection-strings.php:324
1744
+ #: redirection-strings.php:336 redirection-strings.php:339
1745
+ #: redirection-strings.php:361 redirection-strings.php:373
1746
+ #: redirection-strings.php:430 redirection-strings.php:438
1747
  msgid "Delete"
1748
  msgstr "Dzēst"
1749
 
1750
+ #: redirection-strings.php:246 redirection-strings.php:437
1751
  msgid "Edit"
1752
  msgstr "Labot"
1753
 
1754
+ #: redirection-strings.php:429
1755
  msgid "Last Access"
1756
  msgstr "Pēdējā piekļuve"
1757
 
1758
+ #: redirection-strings.php:428
1759
  msgid "Hits"
1760
  msgstr "Izpildes"
1761
 
1762
+ #: redirection-strings.php:426 redirection-strings.php:454
1763
  msgid "URL"
1764
  msgstr "URL"
1765
 
1766
+ #: redirection-strings.php:425
1767
  msgid "Type"
1768
  msgstr "Veids"
1769
 
1770
+ #: database/schema/latest.php:137
1771
  msgid "Modified Posts"
1772
  msgstr "Izmainītie Raksti"
1773
 
1774
+ #: database/schema/latest.php:132 models/group.php:148
1775
+ #: redirection-strings.php:260
1776
  msgid "Redirections"
1777
  msgstr "Pāradresācijas"
1778
 
1779
+ #: redirection-strings.php:124
1780
  msgid "User Agent"
1781
  msgstr "Programmatūras Dati"
1782
 
1783
+ #: matches/user-agent.php:10 redirection-strings.php:86
1784
  msgid "URL and user agent"
1785
  msgstr "URL un iekārtas dati"
1786
 
1787
+ #: redirection-strings.php:70 redirection-strings.php:80
1788
+ #: redirection-strings.php:195
1789
  msgid "Target URL"
1790
  msgstr "Galamērķa URL"
1791
 
1792
+ #: matches/url.php:7 redirection-strings.php:82
1793
  msgid "URL only"
1794
  msgstr "tikai URL"
1795
 
1796
+ #: redirection-strings.php:118 redirection-strings.php:130
1797
+ #: redirection-strings.php:134 redirection-strings.php:142
1798
+ #: redirection-strings.php:151
1799
  msgid "Regex"
1800
  msgstr "Regulārā Izteiksme"
1801
 
1802
+ #: redirection-strings.php:149
1803
  msgid "Referrer"
1804
  msgstr "Ieteicējs (Referrer)"
1805
 
1806
+ #: matches/referrer.php:10 redirection-strings.php:85
1807
  msgid "URL and referrer"
1808
  msgstr "URL un ieteicējs (referrer)"
1809
 
1810
+ #: redirection-strings.php:74
1811
  msgid "Logged Out"
1812
  msgstr "Ja nav autorizējies"
1813
 
1814
+ #: redirection-strings.php:72
1815
  msgid "Logged In"
1816
  msgstr "Ja autorizējies"
1817
 
1818
+ #: matches/login.php:8 redirection-strings.php:83
1819
  msgid "URL and login status"
1820
  msgstr "URL un autorizācijas statuss"
locale/redirection-pt_BR.mo CHANGED
Binary file
locale/redirection-pt_BR.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
17
  msgstr "URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "PHP sem suporte"
22
-
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "O Redirection requer PHP v%1$1s, você está usando v%2$2s. Este plugin vai parar de funcionar a partir da próxima versão."
27
-
28
- #: redirection-strings.php:358
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Somente o tipo de página 404 é suportado atualmente."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Tipo de página"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Digite endereços IP (um por linha)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Descreva o propósito deste redirecionamento (opcional)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - Sou uma chaleira"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Proibido"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Solicitação inválida"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Não modificado"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - Veja outro"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Fazer nada (ignorar)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "URL de destino se não houver correspondência (em branco para ignorar)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "URL de destino se houver correspondência (em branco para ignorar)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Mostrar todos"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Excluir todos os registros para estas entradas"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Excluir todos os registros para esta entrada"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Excluir entradas no registro"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Agrupar por IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Agrupar por URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "Não agrupar"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignorar URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Bloquear IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Redirecionar todos"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Número"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL e tipo de página do WordPress"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL e IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problema"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Bom"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Verificar"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Verificar redirecionamento"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Verifique o redirecionamento de: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "O que isto significa?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Sem usar o Redirection"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Usando o Redirection"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Encontrado"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Esperado"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Erro"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  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."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Teste de redirecionamento"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Destino"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "O URL não está sendo redirecionado com o Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "O URL está sendo redirecionado com o Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Não foi possível carregar os detalhes"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Digite o URL do servidor para correspondência"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Servidor"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Digite a função ou capacidade"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Função"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Texto do referenciador do navegador para correspondênica"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Usuário de agente do navegador para correspondência"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "O URL relativo que você quer redirecionar"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Forçar HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Informações sobre privacidade (em inglês)"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Adicionar novo"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Desconecte-se da sua conta e acesse novamente."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL e função/capacidade"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL e servidor"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "/wp-json/ relativo"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "/wp-json/ padrão"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Protocolo do endereço do WordPress e do site"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "O endereço do WordPress e do site são consistentes"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Aceitar Idioma"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Valor do cabeçalho"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Nome cabeçalho"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "Cabeçalho HTTP"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "Nome do filtro WordPress"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Nome do filtro"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Valor do cookie"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Nome do cookie"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "limpando seu cache."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL e cabeçalho HTTP"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL e filtro personalizado"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL e cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 excluído"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "/index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "API REST"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Nenhuma das sugestões ajudou"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Não foi possível carregar o Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "A API REST do WordPress está funcionando em %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "A API REST do WordPress"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "A API REST não está funcionado, por isso as rotas não foram verificadas"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "As rotas do Redirection estão funcionando"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Rotas do Redirection"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Erro de agente de usuário"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Agente de usuário desconhecido"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Dispositivo"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Sistema operacional"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Navegador"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Motor"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Agente de usuário"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agente"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Não registrar IP"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Registrar IP completo"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Tornar IP anônimo (mascarar a última parte)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Monitorar alterações em %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "Registro de IP"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(selecione o nível de registro de IP)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Informações geográficas"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Informação sobre o agente"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filtrar por IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Referenciador / Agente de usuário"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Erro IP Geo"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Algo deu errado ao obter essa informação"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "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."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "Nenhum detalhe é conhecido para este endereço."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "IP Geo"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Cidade"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Região"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Fuso horário"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Coordenadas"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Fornecido por {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Fornecido por {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Lixeira"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  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>."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  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}}."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  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!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Nunca fazer cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "Uma hora"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Cache dos redirecionamentos"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Tem certeza de que deseja importar de %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Importar de plugins"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "total = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Importar de %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Foram detectados problemas com suas tabelas do banco de dados. Visite a <a href=\"%s\">página de suporte</a> para obter mais detalhes."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "O Redirection não foi instalado adequadamente"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versã
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  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."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  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."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Correção mágica ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Status do plugin"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Personalizado"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Móvel"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Leitores de feed"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Bibliotecas"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "Alterações do monitoramento de URLs"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Salvar alterações neste grupo"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "Por exemplo, \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "Monitoramento de URLs"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Excluir 404s"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Excluir registros do IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Excluir tudo que corresponder a \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  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."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Não foi possível carregar o Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Não foi possível criar grupo"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Falha ao corrigir tabelas do banco de dados"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "O grupo do monitoramento de posts é válido"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "O grupo de monitoramento de post é inválido"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Grupo do monitoramento de posts"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "Todos os redirecionamentos têm um grupo válido"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Redirecionamentos com grupos inválidos detectados"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Grupo de redirecionamento válido"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Grupos válidos detectados"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Grupos válidos"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Tabelas do banco de dados"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "As seguintes tabelas estão faltando:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Todas as tabelas presentes"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "O Redirection foi detectado no cache"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Limpe o cache do seu navegador e recarregue esta página."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Os dados nesta página expiraram, por favor recarregue."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "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."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "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?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Carregando, aguarde..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  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)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  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."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Criar chamado"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "E-mail"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Detalhes importantes"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Precisa de ajuda?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Não existe mais"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Posição"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  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"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Módulo Apache"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importar para grupo"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Adicionar arquivo"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Arquivo selecionado"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importando"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Importação concluída"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Total de redirecionamentos importados:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Verifique novamente se o arquivo é o formato correto!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Fechar"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Exportar"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Tudo"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "Redirecionamentos WordPress"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Redirecionamentos Apache"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Redirecionamentos Nginx"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr ".htaccess do Apache"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Regras de reescrita do Nginx"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "JSON do Redirection"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Ver"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Arquivos de registro podem ser exportados nas páginas de registro."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Importar/Exportar"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Registros"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "Erro 404"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Eu gostaria de ajudar mais um pouco."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Doação 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Redirecionamento salvo"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Registro excluído"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Configurações salvas"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Grupo salvo"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Tem certeza de que deseja excluir este item?"
1008
  msgstr[1] "Tem certeza de que deseja excluir estes item?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "manter url"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Todos os grupos"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Mudou permanentemente"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Encontrado"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Redirecionamento temporário"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Redirecionamento permanente"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Não autorizado"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Não encontrado"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Título"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "Quando corresponder"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "com código HTTP"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Exibir opções avançadas"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Destino se correspondido"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Destino se não correspondido"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Salvando..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Veja o aviso"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "URL de origem inválido"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Ação de redirecionamento inválida"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Critério de redirecionamento inválido"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Critério de redirecionamento inválido"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Não foi possível criar novo redirecionamento"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Algo deu errado 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Entradas do registro (máx %d)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Pesquisar por IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Selecionar ações em massa"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Ações em massa"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Aplicar"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "Primeira página"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Página anterior"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Página atual"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "de %(page)s"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Próxima página"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Última página"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s item"
1147
  msgstr[1] "%s itens"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Selecionar tudo"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Desculpe, mas algo deu errado ao carregar os dados - tente novamente"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "Nenhum resultado"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Excluir os registros - Você tem certeza?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  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."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Sim! Exclua os registros"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "Não! Não exclua os registros"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Boletim"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Quer ficar a par de mudanças no Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  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."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Seu endereço de e-mail:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "Você apoiou este plugin - obrigado!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "Você obtém softwares úteis e eu continuo fazendo isso melhor."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "Para sempre"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Excluir o plugin - Você tem certeza?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  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."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Sim! Exclua o plugin"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "Não! Não exclua o plugin"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Gerencie todos os seus redirecionamentos 301 e monitore erros 404"
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  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}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Ajuda do Redirection"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Ajuda"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404s"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Registro"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Excluir o Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Carregar"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Importar"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Atualizar"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Gerar automaticamente o URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "Token RSS"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "Registros de 404"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(tempo para manter os registros)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Registros de redirecionamento"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Suporte do plugin"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Opções"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Dois meses"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "Um mês"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "Uma semana"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "Um dia"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "Não registrar"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Apagar Tudo"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  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."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Adicionar grupo"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Pesquisar"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Grupos"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Salvar"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Grupo"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Corresponder"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Adicionar novo redirecionamento"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Cancelar"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Baixar"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Configurações"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Erro (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Manter URL de origem"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Redirecionar para um post aleatório"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Redirecionar para URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Grupo inválido ao criar o redirecionamento"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "URL de origem"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Data"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Adicionar redirecionamento"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "Todos os módulos"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "Ver redirecionamentos"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Módulo"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Redirecionamentos"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Nome"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filtrar"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Redefinir acessos"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Ativar"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Desativar"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Excluir"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Editar"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Último Acesso"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Acessos"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Tipo"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Posts modificados"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Redirecionamentos"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "Agente de usuário"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL e agente de usuário"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "URL de destino"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "URL somente"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Regex"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Referenciador"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL e referenciador"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Desconectado"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Conectado"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL e status de login"
11
  "Language: pt_BR\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
  #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
  msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
  msgstr "URL do site e do WordPress são inconsistentes. Corrija na página Configurações > Geral: %1$1s não é %2$2s"
312
 
313
+ #: redirection-strings.php:148
 
 
 
 
 
 
 
 
 
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Não tente redirecionar todos os seus 404s - isso não é uma coisa boa."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Somente o tipo de página 404 é suportado atualmente."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Tipo de página"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Digite endereços IP (um por linha)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Descreva o propósito deste redirecionamento (opcional)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - Sou uma chaleira"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Proibido"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Solicitação inválida"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Não modificado"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - Veja outro"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Fazer nada (ignorar)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "URL de destino se não houver correspondência (em branco para ignorar)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "URL de destino se houver correspondência (em branco para ignorar)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Mostrar todos"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Excluir todos os registros para estas entradas"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Excluir todos os registros para esta entrada"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Excluir entradas no registro"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Agrupar por IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Agrupar por URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "Não agrupar"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignorar URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Bloquear IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Redirecionar todos"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Número"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL e tipo de página do WordPress"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL e IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problema"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Bom"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Verificar"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Verificar redirecionamento"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Verifique o redirecionamento de: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "O que isto significa?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Sem usar o Redirection"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Usando o Redirection"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Encontrado"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} para {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Esperado"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Erro"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Digite o URL inteiro, incluindo http:// ou https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  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."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Teste de redirecionamento"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Destino"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "O URL não está sendo redirecionado com o Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "O URL está sendo redirecionado com o Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Não foi possível carregar os detalhes"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Digite o URL do servidor para correspondência"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Servidor"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Digite a função ou capacidade"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Função"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Texto do referenciador do navegador para correspondênica"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Usuário de agente do navegador para correspondência"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "O URL relativo que você quer redirecionar"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "O URL de destino para qual você quer redirecionar, se houver correspondência"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Força o redirecionamento de HTTP para HTTPS. Antes de ativar, verifique se o HTTPS está funcionando"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Forçar HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Informações sobre privacidade (em inglês)"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Adicionar novo"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Desconecte-se da sua conta e acesse novamente."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL e função/capacidade"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL e servidor"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "/wp-json/ relativo"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "/wp-json/ padrão"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "Se nada funcionar, talvez o Redirection não esteja conseguindo se comunicar com o servidor. Você pode tentar alterar manualmente esta configuração:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Protocolo do endereço do WordPress e do site"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "O endereço do WordPress e do site são consistentes"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "É sua a responsabilidade de passar cabeçalhos HTTP ao PHP. Contate o suporte de seu provedor de hospedagem e pergunte como fazê-lo."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Aceitar Idioma"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Valor do cabeçalho"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Nome cabeçalho"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "Cabeçalho HTTP"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "Nome do filtro WordPress"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Nome do filtro"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Valor do cookie"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Nome do cookie"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "limpando seu cache."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Se você estiver usando um sistema de cache como o Cloudflare, então leia isto: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL e cabeçalho HTTP"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL e filtro personalizado"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL e cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 excluído"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "/index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "API REST"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Como o Redirection usa a API REST. Não altere a menos que seja necessário"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "O WordPress retornou uma mensagem inesperada. Isso pode ter sido causado por sua API REST não funcionar ou por outro plugin ou tema."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Dê uma olhada em {{link}}status do plugin{{/link}}. Ali talvez consiga identificar e fazer a \"Correção mágica\" do problema."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}O Redirection não consegue se comunicar com a API REST{{/link}}. Se ela foi desativada, será preciso reativá-la."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Um programa de segurança pode estar bloqueando o Redirection{{/link}}. Configure-o para permitir solicitações da API REST."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Programas de cache{{/link}}, em particular o Cloudflare, podem fazer o cache da coisa errada. Tente liberar seus caches."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Desative temporariamente outros plugins!{{/link}} Isso corrige muitos problemas."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Nenhuma das sugestões ajudou"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Consulte a <a href=\"https://redirection.me/support/problems/\">lista de problemas comuns (em inglês)</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Não foi possível carregar o Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "A API REST do WordPress está funcionando em %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "A API REST do WordPress"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "A API REST não está funcionado, por isso as rotas não foram verificadas"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "As rotas do Redirection estão funcionando"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "O Redirection não aparece nas rotas da API REST. Você a desativou com um plugin?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Rotas do Redirection"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "A API REST do WordPress foi desativada. É preciso ativá-la para que o Redirection continue funcionando."
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Erro de agente de usuário"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Agente de usuário desconhecido"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Dispositivo"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Sistema operacional"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Navegador"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Motor"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Agente de usuário"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agente"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Não registrar IP"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Registrar IP completo"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Tornar IP anônimo (mascarar a última parte)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Monitorar alterações em %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "Registro de IP"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(selecione o nível de registro de IP)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Informações geográficas"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Informação sobre o agente"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filtrar por IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Referenciador / Agente de usuário"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Erro IP Geo"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Algo deu errado ao obter essa informação"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "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."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "Nenhum detalhe é conhecido para este endereço."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "IP Geo"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Cidade"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Região"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Fuso horário"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Coordenadas"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Fornecido por {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Lixeira"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr "O Redirection requer a API REST do WordPress para ser ativado. Se você a desativou, não vai conseguir usar o Redirection"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  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>."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  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}}."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Se quiser comunicar um erro, leia o guia {{report}}Comunicando erros (em inglês){{/report}}."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  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!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Nunca fazer cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "Uma hora"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Cache dos redirecionamentos"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "O tempo que deve ter o cache dos URLs redirecionados com 301 (via \"Expires\" no cabeçalho HTTP)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Tem certeza de que deseja importar de %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Importar de plugins"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Os seguintes plugins de redirecionamento foram detectados em seu site e se pode importar deles."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "total = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Importar de %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "O Redirection requer o WordPress v%1$1s, mas você está usando a versão v%2$2s. Atualize o WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "Redirecionamentos de \"slugs anteriores\" do WordPress"
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Criar redirecionamento atrelado (adicionado ao fim do URL)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  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."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  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."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Correção mágica ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Status do plugin"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Personalizado"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Móvel"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Leitores de feed"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Bibliotecas"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "Alterações do monitoramento de URLs"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Salvar alterações neste grupo"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "Por exemplo, \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "Monitoramento de URLs"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Excluir 404s"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Excluir registros do IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Excluir tudo que corresponder a \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Seu servidor rejeitou a solicitação por ela ser muito grande. Você precisará alterá-la para continuar."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Além disso, verifique se o seu navegador é capaz de carregar <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  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."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Não foi possível carregar o Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Não foi possível criar grupo"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "O grupo do monitoramento de posts é válido"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "O grupo de monitoramento de post é inválido"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Grupo do monitoramento de posts"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "Todos os redirecionamentos têm um grupo válido"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Redirecionamentos com grupos inválidos detectados"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Grupo de redirecionamento válido"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Grupos válidos detectados"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "Nenhum grupo válido. Portanto, você não poderá criar redirecionamentos"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Grupos válidos"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Tabelas do banco de dados"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "As seguintes tabelas estão faltando:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Todas as tabelas presentes"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "O Redirection foi detectado no cache"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Limpe o cache do seu navegador e recarregue esta página."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Os dados nesta página expiraram, por favor recarregue."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "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."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "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?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Inclua esses detalhes em seu relatório {{strong}}juntamente com uma descrição do que você estava fazendo{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "Se você acha que o erro é do Redirection, abra um chamado."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "Isso pode ser causado por outro plugin - veja o console de erros do seu navegador para mais detalhes."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Carregando, aguarde..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  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)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "O Redirection não está funcionando. Tente limpar o cache do navegador e recarregar esta página."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "Se isso não ajudar, abra o console de erros de seu navegador e crie um {{link}}novo chamado{{/link}} com os detalhes."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  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."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Criar chamado"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "E-mail"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Detalhes importantes"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Precisa de ajuda?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Qualquer suporte somente é oferecido à medida que haja tempo disponível, e não é garantido. Não ofereço suporte pago."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Não existe mais"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Posição"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  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"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Módulo Apache"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Digite o caminho completo e o nome do arquivo se quiser que o Redirection atualize o {{code}}.htaccess{{/code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importar para grupo"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importar um arquivo CSV, .htaccess ou JSON."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Clique 'Adicionar arquivo' ou arraste e solte aqui."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Adicionar arquivo"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Arquivo selecionado"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importando"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Importação concluída"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Total de redirecionamentos importados:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Verifique novamente se o arquivo é o formato correto!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Fechar"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Todas as importações serão anexadas ao banco de dados atual."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Exportar"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Exportar para CSV, .htaccess do Apache, Nginx, ou JSON do Redirection (que contém todos os redirecionamentos e grupos)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Tudo"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "Redirecionamentos WordPress"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Redirecionamentos Apache"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Redirecionamentos Nginx"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr ".htaccess do Apache"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Regras de reescrita do Nginx"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "JSON do Redirection"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Ver"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Arquivos de registro podem ser exportados nas páginas de registro."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Importar/Exportar"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Registros"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "Erro 404"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Mencione {{code}}%s{{/code}} e explique o que estava fazendo no momento"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Eu gostaria de ajudar mais um pouco."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Doação 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Redirecionamento salvo"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Registro excluído"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Configurações salvas"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Grupo salvo"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Tem certeza de que deseja excluir este item?"
1280
  msgstr[1] "Tem certeza de que deseja excluir estes item?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "manter url"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Todos os grupos"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Mudou permanentemente"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Encontrado"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Redirecionamento temporário"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Redirecionamento permanente"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Não autorizado"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Não encontrado"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Título"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "Quando corresponder"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "com código HTTP"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Exibir opções avançadas"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Destino se correspondido"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Destino se não correspondido"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Salvando..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Veja o aviso"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "URL de origem inválido"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Ação de redirecionamento inválida"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Critério de redirecionamento inválido"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Não foi possível criar novo redirecionamento"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Algo deu errado 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "Eu estava tentando fazer uma coisa e deu errado. Pode ser um problema temporário e se você tentar novamente, pode funcionar - ótimo!"
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Entradas do registro (máx %d)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Pesquisar por IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Selecionar ações em massa"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Ações em massa"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Aplicar"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "Primeira página"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Página anterior"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Página atual"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "de %(page)s"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Próxima página"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Última página"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s item"
1419
  msgstr[1] "%s itens"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Selecionar tudo"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Desculpe, mas algo deu errado ao carregar os dados - tente novamente"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "Nenhum resultado"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Excluir os registros - Você tem certeza?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  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."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Sim! Exclua os registros"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "Não! Não exclua os registros"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Obrigado pela assinatura! {{a}}Clique aqui{{/a}} se você precisar retornar à sua assinatura."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Boletim"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Quer ficar a par de mudanças no Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  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."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Seu endereço de e-mail:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "Você apoiou este plugin - obrigado!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "Você obtém softwares úteis e eu continuo fazendo isso melhor."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "Para sempre"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Excluir o plugin - Você tem certeza?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  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."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "Uma vez excluído, os seus redirecionamentos deixarão de funcionar. Se eles parecerem continuar funcionando, limpe o cache do seu navegador."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Sim! Exclua o plugin"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "Não! Não exclua o plugin"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Gerencie todos os seus redirecionamentos 301 e monitore erros 404"
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  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}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Ajuda do Redirection"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Ajuda"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404s"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Registro"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Excluir o Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Carregar"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Importar"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Atualizar"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Gerar automaticamente o URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "Um token exclusivo que permite a leitores de feed o acesso ao RSS do registro do Redirection (deixe em branco para gerar automaticamente)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "Token RSS"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "Registros de 404"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(tempo para manter os registros)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Registros de redirecionamento"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "Eu sou uma pessoa legal e ajudei a apoiar o autor deste plugin"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Suporte do plugin"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Opções"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Dois meses"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "Um mês"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "Uma semana"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "Um dia"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "Não registrar"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Apagar Tudo"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  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."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Adicionar grupo"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Pesquisar"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Grupos"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Salvar"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Grupo"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Corresponder"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Adicionar novo redirecionamento"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Cancelar"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Baixar"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Configurações"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Erro (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Manter URL de origem"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Redirecionar para um post aleatório"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Redirecionar para URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Grupo inválido ao criar o redirecionamento"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "URL de origem"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Data"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Adicionar redirecionamento"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "Todos os módulos"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "Ver redirecionamentos"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Módulo"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Redirecionamentos"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Nome"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filtrar"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Redefinir acessos"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Ativar"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Desativar"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Excluir"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Editar"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Último Acesso"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Acessos"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Tipo"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Posts modificados"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Redirecionamentos"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "Agente de usuário"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL e agente de usuário"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "URL de destino"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "URL somente"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Regex"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Referenciador"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL e referenciador"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Desconectado"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Conectado"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL e status de login"
locale/redirection-ru_RU.mo CHANGED
Binary file
locale/redirection-ru_RU.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "Неподдерживаемая версия PHP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
- msgstr "Redirection требуеи PHP не ниже v%1$1s, у вас - v%2$2s. Следующая версия плагина у вас работать не будет."
 
 
 
 
 
 
 
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr "Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr "Сейчас поддерживается только тип страницы 404."
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Тип страницы"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Введите IP адреса (один на строку)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Опишите цель перенаправления (необязательно)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 - Я чайник"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 - Доступ запрещен"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr "400 - Неверный запрос"
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 - Без изменений"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr "303 - Посмотрите другое"
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Ничего не делать (игнорировать)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr ""
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr ""
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Показать все"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr "Удалить все журналы для этих элементов"
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr "Удалить все журналы для этого элемента"
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr "Удалить записи журнала"
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Группировка по IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Группировка по URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "Без группировки"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Игнорировать URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Блокировка IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Перенаправить все"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr "Счетчик"
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr "URL и тип страницы WP"
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL и IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Проблема"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Хорошо"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Проверка"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Проверка перенаправления"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Проверка перенаправления для: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "Что это значит?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Не используется перенаправление"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Использование перенаправления"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Найдено"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr "{{code}}%(status)d{{/code}} на {{code}}%(url)s{{/code}}"
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Ожидается"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Ошибка"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Введите полный URL-адрес, включая http:// или https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr "Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Тестирование перенаправлений"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Цель"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL-адрес не перенаправляется с помощью Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL-адрес перенаправлен с помощью Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Не удается загрузить сведения"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Введите URL-адрес сервера для совпадений"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Сервер"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Введите значение роли или возможности"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Роль"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr "Совпадение с текстом реферера браузера"
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr "Сопоставить с этим пользовательским агентом обозревателя"
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "Относительный URL-адрес, с которого требуется перенаправить"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "Целевой URL-адрес, который требуется перенаправить в случае совпадения"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(бета)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Принудительное HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR / Информация о конфиденциальности"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Добавить новое"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Пожалуйста, выйдите и войдите снова."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL-адрес и роль/возможности"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL и сервер"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Относительный /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "По умолчанию /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Протокол сайта и домашней"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Сайт и домашняя страница соответствуют"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr "Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "заголовок Accept Language"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Значение заголовка"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Имя заголовка"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "Заголовок HTTP"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "Имя фильтра WordPress"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Название фильтра"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Значение куки"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Имя куки"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Куки"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "очистка кеша."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL-адрес и заголовок HTTP"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL-адрес и пользовательский фильтр"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL и куки"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 удалено"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Только /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Как Redirection использует REST API - не изменяются, если это необходимо"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Ни одно из предложений не помогло"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Не удается загрузить Redirection ☹ ️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API работает в %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API не работает, поэтому маршруты не проверены"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Маршруты перенаправления работают"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Маршруты перенаправления"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Ошибка пользовательского агента"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Неизвестный агент пользователя"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Устройство"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Операционная система"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Браузер"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Движок"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Пользовательский агент"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Агент"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Не протоколировать IP"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Полное протоколирование IP-адресов"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Анонимизировать IP (маска последняя часть)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Отслеживание изменений в %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "Протоколирование IP"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(Выберите уровень ведения протокола по IP)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Географическая информация"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Информация о агенте"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Фильтровать по IP"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Пользователь / Агент пользователя"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Ошибка GeoIP"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Что-то пошло не так получение этой информации"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "Сведения об этом адресе не известны."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "GeoIP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Город"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Область"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Часовой пояс"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Геолокация"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Работает на {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Работает на {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Корзина"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr "Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  msgstr "Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  msgstr "Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Не кэшировать"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "Час"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Перенаправление кэша"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Вы действительно хотите импортировать из %s ?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Импортеры плагина"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "всего = "
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Импортировать из %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Обнаружены проблемы с таблицами базы данных. Пожалуйста, посетите <a href=\"%s\">страницу поддержки</a> для более подробной информации."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection установлен не правильно"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"
631
 
@@ -633,454 +909,450 @@ msgstr "Redirection требует WordPress v%1$1s, вы используете
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "\"Старые ярлыки\" WordPress по умолчанию"
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Создание связанного перенаправления (Добавлено в конец URL-адреса)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr "Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Волшебное исправление ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Статус плагина"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Пользовательский"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Мобильный"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Читатели ленты"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Библиотеки"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "URL-адрес монитор изменений"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Сохранить изменения в этой группе"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "Например \"/amp\""
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "Монитор URL"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Удалить 404"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Удалить все с IP %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Удалить все совпадения \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Не удается загрузить Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Невозможно создать группу"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Не удалось исправить таблицы базы данных"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Группа мониторинга сообщений действительна"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Группа мониторинга постов недействительна."
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Группа отслеживания сообщений"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "Все перенаправления имеют допустимую группу"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Перенаправление с недопустимыми группами обнаружены"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Допустимая группа для перенаправления"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Обнаружены допустимые группы"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "Нет допустимых групп, поэтому вы не сможете создавать перенаправления"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Допустимые группы"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Таблицы базы данных"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "Следующие таблицы отсутствуют:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Все таблицы в наличии"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "Обнаружено кэшированное перенаправление"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Очистите кеш браузера и перезагрузите эту страницу."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Данные на этой странице истекли, пожалуйста, перезагрузите."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr "Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Загрузка, пожалуйста подождите..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr "{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  msgstr "Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Создать тикет о проблеме"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "Электронная почта"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Важные детали"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Нужна помощь?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Удалено"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Позиция"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  msgstr "Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Модуль Apache"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Импорт в группу"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Импортируйте файл CSV, .htaccess или JSON."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Нажмите «Добавить файл» или перетащите сюда."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Добавить файл"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Выбран файл"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Импортирование"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Импорт завершен"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Всего импортировано перенаправлений:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Дважды проверьте правильность формата файла!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Закрыть"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "Все импортируемые компоненты будут добавлены в текущую базу данных."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Экспорт"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Все"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "Перенаправления WordPress"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "перенаправления Apache"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "перенаправления NGINX"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Правила перезаписи nginx"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "Перенаправление JSON"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Вид"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Файлы логов можно экспортировать из страниц логов."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Импорт/Экспорт"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Журналы"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404 ошибки"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Мне хотелось бы поддержать чуть больше."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Поддержка 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Перенаправление сохранено"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Лог удален"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Настройки сохранены"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Группа сохранена"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Вы действительно хотите удалить этот пункт?"
1008
  msgstr[1] "Вы действительно хотите удалить этот пункт?"
1009
  msgstr[2] "Вы действительно хотите удалить этот пункт?"
1010
 
1011
- #: redirection-strings.php:371
1012
  msgid "pass"
1013
  msgstr "проход"
1014
 
1015
- #: redirection-strings.php:331
1016
  msgid "All groups"
1017
  msgstr "Все группы"
1018
 
1019
- #: redirection-strings.php:296
1020
  msgid "301 - Moved Permanently"
1021
  msgstr "301 - Переехал навсегда"
1022
 
1023
- #: redirection-strings.php:297
1024
  msgid "302 - Found"
1025
  msgstr "302 - Найдено"
1026
 
1027
- #: redirection-strings.php:300
1028
  msgid "307 - Temporary Redirect"
1029
  msgstr "307 - Временное перенаправление"
1030
 
1031
- #: redirection-strings.php:301
1032
  msgid "308 - Permanent Redirect"
1033
  msgstr "308 - Постоянное перенаправление"
1034
 
1035
- #: redirection-strings.php:303
1036
  msgid "401 - Unauthorized"
1037
  msgstr "401 - Не авторизованы"
1038
 
1039
- #: redirection-strings.php:305
1040
  msgid "404 - Not Found"
1041
  msgstr "404 - Страница не найдена"
1042
 
1043
- #: redirection-strings.php:308
1044
  msgid "Title"
1045
  msgstr "Название"
1046
 
1047
- #: redirection-strings.php:311
1048
  msgid "When matched"
1049
  msgstr "При совпадении"
1050
 
1051
- #: redirection-strings.php:312
1052
  msgid "with HTTP code"
1053
  msgstr "с кодом HTTP"
1054
 
1055
- #: redirection-strings.php:321
1056
  msgid "Show advanced options"
1057
  msgstr "Показать расширенные параметры"
1058
 
1059
- #: redirection-strings.php:274
1060
  msgid "Matched Target"
1061
  msgstr "Совпавшие цели"
1062
 
1063
- #: redirection-strings.php:276
1064
  msgid "Unmatched Target"
1065
  msgstr "Несовпавшая цель"
1066
 
1067
- #: redirection-strings.php:57 redirection-strings.php:58
1068
  msgid "Saving..."
1069
  msgstr "Сохранение..."
1070
 
1071
- #: redirection-strings.php:55
1072
  msgid "View notice"
1073
  msgstr "Просмотреть уведомление"
1074
 
1075
- #: models/redirect.php:560
1076
  msgid "Invalid source URL"
1077
  msgstr "Неверный исходный URL"
1078
 
1079
- #: models/redirect.php:488
1080
  msgid "Invalid redirect action"
1081
  msgstr "Неверное действие перенаправления"
1082
 
1083
- #: models/redirect.php:482
1084
  msgid "Invalid redirect matcher"
1085
  msgstr "Неверное совпадение перенаправления"
1086
 
@@ -1088,457 +1360,461 @@ msgstr "Неверное совпадение перенаправления"
1088
  msgid "Unable to add new redirect"
1089
  msgstr "Не удалось добавить новое перенаправление"
1090
 
1091
- #: redirection-strings.php:12 redirection-strings.php:116
1092
  msgid "Something went wrong 🙁"
1093
  msgstr "Что-то пошло не так 🙁"
1094
 
1095
- #: redirection-strings.php:11
1096
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1097
  msgstr "Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"
1098
 
1099
  #. translators: maximum number of log entries
1100
- #: redirection-admin.php:193
1101
  msgid "Log entries (%d max)"
1102
  msgstr "Журнал записей (%d максимум)"
1103
 
1104
- #: redirection-strings.php:74
1105
  msgid "Search by IP"
1106
  msgstr "Поиск по IP"
1107
 
1108
- #: redirection-strings.php:69
1109
  msgid "Select bulk action"
1110
  msgstr "Выберите массовое действие"
1111
 
1112
- #: redirection-strings.php:70
1113
  msgid "Bulk Actions"
1114
  msgstr "Массовые действия"
1115
 
1116
- #: redirection-strings.php:71
1117
  msgid "Apply"
1118
  msgstr "Применить"
1119
 
1120
- #: redirection-strings.php:62
1121
  msgid "First page"
1122
  msgstr "Первая страница"
1123
 
1124
- #: redirection-strings.php:63
1125
  msgid "Prev page"
1126
  msgstr "Предыдущая страница"
1127
 
1128
- #: redirection-strings.php:64
1129
  msgid "Current Page"
1130
  msgstr "Текущая страница"
1131
 
1132
- #: redirection-strings.php:65
1133
  msgid "of %(page)s"
1134
  msgstr "из %(page)s"
1135
 
1136
- #: redirection-strings.php:66
1137
  msgid "Next page"
1138
  msgstr "Следующая страница"
1139
 
1140
- #: redirection-strings.php:67
1141
  msgid "Last page"
1142
  msgstr "Последняя страница"
1143
 
1144
- #: redirection-strings.php:68
1145
  msgid "%s item"
1146
  msgid_plural "%s items"
1147
  msgstr[0] "%s элемент"
1148
  msgstr[1] "%s элемента"
1149
  msgstr[2] "%s элементов"
1150
 
1151
- #: redirection-strings.php:61
1152
  msgid "Select All"
1153
  msgstr "Выбрать всё"
1154
 
1155
- #: redirection-strings.php:73
1156
  msgid "Sorry, something went wrong loading the data - please try again"
1157
  msgstr "Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"
1158
 
1159
- #: redirection-strings.php:72
1160
  msgid "No results"
1161
  msgstr "Нет результатов"
1162
 
1163
- #: redirection-strings.php:159
1164
  msgid "Delete the logs - are you sure?"
1165
  msgstr "Удалить журналы - вы уверены?"
1166
 
1167
- #: redirection-strings.php:160
1168
  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."
1169
  msgstr "После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."
1170
 
1171
- #: redirection-strings.php:161
1172
  msgid "Yes! Delete the logs"
1173
  msgstr "Да! Удалить журналы"
1174
 
1175
- #: redirection-strings.php:162
1176
  msgid "No! Don't delete the logs"
1177
  msgstr "Нет! Не удаляйте журналы"
1178
 
1179
- #: redirection-strings.php:388
1180
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1181
  msgstr "Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."
1182
 
1183
- #: redirection-strings.php:387 redirection-strings.php:389
1184
  msgid "Newsletter"
1185
  msgstr "Новости"
1186
 
1187
- #: redirection-strings.php:390
1188
  msgid "Want to keep up to date with changes to Redirection?"
1189
  msgstr "Хотите быть в курсе изменений в плагине?"
1190
 
1191
- #: redirection-strings.php:391
1192
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1193
  msgstr "Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."
1194
 
1195
- #: redirection-strings.php:392
1196
  msgid "Your email address:"
1197
  msgstr "Ваш адрес электронной почты:"
1198
 
1199
- #: redirection-strings.php:219
1200
  msgid "You've supported this plugin - thank you!"
1201
  msgstr "Вы поддерживаете этот плагин - спасибо!"
1202
 
1203
- #: redirection-strings.php:222
1204
  msgid "You get useful software and I get to carry on making it better."
1205
  msgstr "Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."
1206
 
1207
- #: redirection-strings.php:230 redirection-strings.php:235
1208
  msgid "Forever"
1209
  msgstr "Всегда"
1210
 
1211
- #: redirection-strings.php:211
1212
  msgid "Delete the plugin - are you sure?"
1213
  msgstr "Удалить плагин-вы уверены?"
1214
 
1215
- #: redirection-strings.php:212
1216
  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."
1217
  msgstr "Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."
1218
 
1219
- #: redirection-strings.php:213
1220
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1221
  msgstr "После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."
1222
 
1223
- #: redirection-strings.php:214
1224
  msgid "Yes! Delete the plugin"
1225
  msgstr "Да! Удалить плагин"
1226
 
1227
- #: redirection-strings.php:215
1228
  msgid "No! Don't delete the plugin"
1229
  msgstr "Нет! Не удаляйте плагин"
1230
 
1231
- #. Author of the plugin/theme
1232
  msgid "John Godley"
1233
  msgstr "John Godley"
1234
 
1235
- #. Description of the plugin/theme
1236
  msgid "Manage all your 301 redirects and monitor 404 errors"
1237
  msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
1238
 
1239
- #: redirection-strings.php:221
1240
  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}}."
1241
  msgstr "Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."
1242
 
1243
- #: redirection-admin.php:310
1244
  msgid "Redirection Support"
1245
  msgstr "Поддержка перенаправления"
1246
 
1247
- #: redirection-strings.php:54 redirection-strings.php:111
1248
  msgid "Support"
1249
  msgstr "Поддержка"
1250
 
1251
- #: redirection-strings.php:51
1252
  msgid "404s"
1253
  msgstr "404"
1254
 
1255
- #: redirection-strings.php:50
1256
  msgid "Log"
1257
  msgstr "Журнал"
1258
 
1259
- #: redirection-strings.php:217
1260
  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."
1261
  msgstr "Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."
1262
 
1263
- #: redirection-strings.php:216
1264
  msgid "Delete Redirection"
1265
  msgstr "Удалить перенаправление"
1266
 
1267
- #: redirection-strings.php:129
1268
  msgid "Upload"
1269
  msgstr "Загрузить"
1270
 
1271
- #: redirection-strings.php:140
1272
  msgid "Import"
1273
  msgstr "Импортировать"
1274
 
1275
- #: redirection-strings.php:269
1276
  msgid "Update"
1277
  msgstr "Обновить"
1278
 
1279
- #: redirection-strings.php:258
1280
  msgid "Auto-generate URL"
1281
  msgstr "Автоматическое создание URL-адреса"
1282
 
1283
- #: redirection-strings.php:257
1284
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1285
  msgstr "Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"
1286
 
1287
- #: redirection-strings.php:256
1288
  msgid "RSS Token"
1289
  msgstr "RSS-токен"
1290
 
1291
- #: redirection-strings.php:250
1292
  msgid "404 Logs"
1293
  msgstr "404 Журналы"
1294
 
1295
- #: redirection-strings.php:249 redirection-strings.php:251
1296
  msgid "(time to keep logs for)"
1297
  msgstr "(время хранения журналов для)"
1298
 
1299
- #: redirection-strings.php:248
1300
  msgid "Redirect Logs"
1301
  msgstr "Перенаправление журналов"
1302
 
1303
- #: redirection-strings.php:247
1304
  msgid "I'm a nice person and I have helped support the author of this plugin"
1305
  msgstr "Я хороший человек, и я помог поддержать автора этого плагина"
1306
 
1307
- #: redirection-strings.php:224
1308
  msgid "Plugin Support"
1309
  msgstr "Поддержка плагина"
1310
 
1311
- #: redirection-strings.php:53 redirection-strings.php:110
1312
  msgid "Options"
1313
  msgstr "Опции"
1314
 
1315
- #: redirection-strings.php:229
1316
  msgid "Two months"
1317
  msgstr "Два месяца"
1318
 
1319
- #: redirection-strings.php:228
1320
  msgid "A month"
1321
  msgstr "Месяц"
1322
 
1323
- #: redirection-strings.php:227 redirection-strings.php:234
1324
  msgid "A week"
1325
  msgstr "Неделя"
1326
 
1327
- #: redirection-strings.php:226 redirection-strings.php:233
1328
  msgid "A day"
1329
  msgstr "День"
1330
 
1331
- #: redirection-strings.php:225
1332
  msgid "No logs"
1333
  msgstr "Нет записей"
1334
 
1335
- #: redirection-strings.php:158 redirection-strings.php:194
1336
- #: redirection-strings.php:199
1337
  msgid "Delete All"
1338
  msgstr "Удалить все"
1339
 
1340
- #: redirection-strings.php:94
1341
  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."
1342
  msgstr "Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."
1343
 
1344
- #: redirection-strings.php:93
1345
  msgid "Add Group"
1346
  msgstr "Добавить группу"
1347
 
1348
- #: redirection-strings.php:75
1349
  msgid "Search"
1350
  msgstr "Поиск"
1351
 
1352
- #: redirection-strings.php:49 redirection-strings.php:106
1353
  msgid "Groups"
1354
  msgstr "Группы"
1355
 
1356
- #: redirection-strings.php:14 redirection-strings.php:103
1357
- #: redirection-strings.php:317
1358
  msgid "Save"
1359
  msgstr "Сохранить"
1360
 
1361
- #: redirection-strings.php:60 redirection-strings.php:313
1362
  msgid "Group"
1363
  msgstr "Группа"
1364
 
1365
- #: redirection-strings.php:310
1366
  msgid "Match"
1367
  msgstr "Совпадение"
1368
 
1369
- #: redirection-strings.php:332
1370
  msgid "Add new redirection"
1371
  msgstr "Добавить новое перенаправление"
1372
 
1373
- #: redirection-strings.php:104 redirection-strings.php:130
1374
- #: redirection-strings.php:319
1375
  msgid "Cancel"
1376
  msgstr "Отменить"
1377
 
1378
- #: redirection-strings.php:154
1379
  msgid "Download"
1380
  msgstr "Скачать"
1381
 
1382
- #. Plugin Name of the plugin/theme
 
1383
  msgid "Redirection"
1384
  msgstr "Redirection"
1385
 
1386
- #: redirection-admin.php:158
1387
  msgid "Settings"
1388
  msgstr "Настройки"
1389
 
1390
- #: redirection-strings.php:294
1391
  msgid "Error (404)"
1392
  msgstr "Ошибка (404)"
1393
 
1394
- #: redirection-strings.php:293
1395
  msgid "Pass-through"
1396
  msgstr "Прозрачно пропускать"
1397
 
1398
- #: redirection-strings.php:292
1399
  msgid "Redirect to random post"
1400
  msgstr "Перенаправить на случайную запись"
1401
 
1402
- #: redirection-strings.php:291
1403
  msgid "Redirect to URL"
1404
  msgstr "Перенаправление на URL"
1405
 
1406
- #: models/redirect.php:550
1407
  msgid "Invalid group when creating redirect"
1408
  msgstr "Неправильная группа при создании переадресации"
1409
 
1410
- #: redirection-strings.php:167 redirection-strings.php:175
1411
- #: redirection-strings.php:180 redirection-strings.php:354
1412
  msgid "IP"
1413
  msgstr "IP"
1414
 
1415
- #: redirection-strings.php:165 redirection-strings.php:173
1416
- #: redirection-strings.php:178 redirection-strings.php:318
 
1417
  msgid "Source URL"
1418
  msgstr "Исходный URL"
1419
 
1420
- #: redirection-strings.php:164 redirection-strings.php:177
1421
  msgid "Date"
1422
  msgstr "Дата"
1423
 
1424
- #: redirection-strings.php:190 redirection-strings.php:203
1425
- #: redirection-strings.php:207 redirection-strings.php:333
1426
  msgid "Add Redirect"
1427
  msgstr "Добавить перенаправление"
1428
 
1429
- #: redirection-strings.php:92
1430
  msgid "All modules"
1431
  msgstr "Все модули"
1432
 
1433
- #: redirection-strings.php:98
1434
  msgid "View Redirects"
1435
  msgstr "Просмотр перенаправлений"
1436
 
1437
- #: redirection-strings.php:88 redirection-strings.php:102
1438
  msgid "Module"
1439
  msgstr "Модуль"
1440
 
1441
- #: redirection-strings.php:48 redirection-strings.php:87
1442
  msgid "Redirects"
1443
  msgstr "Редиректы"
1444
 
1445
- #: redirection-strings.php:86 redirection-strings.php:95
1446
- #: redirection-strings.php:101
1447
  msgid "Name"
1448
  msgstr "Имя"
1449
 
1450
- #: redirection-strings.php:59
1451
  msgid "Filter"
1452
  msgstr "Фильтр"
1453
 
1454
- #: redirection-strings.php:330
1455
  msgid "Reset hits"
1456
  msgstr "Сбросить показы"
1457
 
1458
- #: redirection-strings.php:90 redirection-strings.php:100
1459
- #: redirection-strings.php:328 redirection-strings.php:370
1460
  msgid "Enable"
1461
  msgstr "Включить"
1462
 
1463
- #: redirection-strings.php:91 redirection-strings.php:99
1464
- #: redirection-strings.php:329 redirection-strings.php:368
1465
  msgid "Disable"
1466
  msgstr "Отключить"
1467
 
1468
- #: redirection-strings.php:89 redirection-strings.php:97
1469
- #: redirection-strings.php:168 redirection-strings.php:169
1470
- #: redirection-strings.php:181 redirection-strings.php:184
1471
- #: redirection-strings.php:206 redirection-strings.php:218
1472
- #: redirection-strings.php:327 redirection-strings.php:367
1473
  msgid "Delete"
1474
  msgstr "Удалить"
1475
 
1476
- #: redirection-strings.php:96 redirection-strings.php:366
1477
  msgid "Edit"
1478
  msgstr "Редактировать"
1479
 
1480
- #: redirection-strings.php:326
1481
  msgid "Last Access"
1482
  msgstr "Последний доступ"
1483
 
1484
- #: redirection-strings.php:325
1485
  msgid "Hits"
1486
  msgstr "Показы"
1487
 
1488
- #: redirection-strings.php:323 redirection-strings.php:383
1489
  msgid "URL"
1490
  msgstr "URL"
1491
 
1492
- #: redirection-strings.php:322
1493
  msgid "Type"
1494
  msgstr "Тип"
1495
 
1496
- #: models/database.php:139
1497
  msgid "Modified Posts"
1498
  msgstr "Измененные записи"
1499
 
1500
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1501
  msgid "Redirections"
1502
  msgstr "Перенаправления"
1503
 
1504
- #: redirection-strings.php:334
1505
  msgid "User Agent"
1506
  msgstr "Агент пользователя"
1507
 
1508
- #: matches/user-agent.php:10 redirection-strings.php:284
1509
  msgid "URL and user agent"
1510
  msgstr "URL-адрес и агент пользователя"
1511
 
1512
- #: redirection-strings.php:278
 
1513
  msgid "Target URL"
1514
  msgstr "Целевой URL-адрес"
1515
 
1516
- #: matches/url.php:7 redirection-strings.php:280
1517
  msgid "URL only"
1518
  msgstr "Только URL-адрес"
1519
 
1520
- #: redirection-strings.php:316 redirection-strings.php:340
1521
- #: redirection-strings.php:344 redirection-strings.php:352
1522
- #: redirection-strings.php:361
1523
  msgid "Regex"
1524
  msgstr "Regex"
1525
 
1526
- #: redirection-strings.php:359
1527
  msgid "Referrer"
1528
  msgstr "Ссылающийся URL"
1529
 
1530
- #: matches/referrer.php:10 redirection-strings.php:283
1531
  msgid "URL and referrer"
1532
  msgstr "URL и ссылающийся URL"
1533
 
1534
- #: redirection-strings.php:272
1535
  msgid "Logged Out"
1536
  msgstr "Выход из системы"
1537
 
1538
- #: redirection-strings.php:270
1539
  msgid "Logged In"
1540
  msgstr "Вход в систему"
1541
 
1542
- #: matches/login.php:8 redirection-strings.php:281
1543
  msgid "URL and login status"
1544
  msgstr "Статус URL и входа"
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
  msgstr ""
61
 
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
+ msgstr ""
254
+
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
+
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
261
+ msgstr ""
262
+
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr "Пожалуйста, не пытайтесь перенаправить все ваши 404, это не лучшее что можно сделать."
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr "Сейчас поддерживается только тип страницы 404."
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Тип страницы"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Введите IP адреса (один на строку)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Опишите цель перенаправления (необязательно)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 - Я чайник"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 - Доступ запрещен"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr "400 - Неверный запрос"
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 - Без изменений"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr "303 - Посмотрите другое"
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Ничего не делать (игнорировать)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr ""
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr ""
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Показать все"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr "Удалить все журналы для этих элементов"
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr "Удалить все журналы для этого элемента"
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr "Удалить записи журнала"
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Группировка по IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Группировка по URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "Без группировки"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Игнорировать URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Блокировка IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Перенаправить все"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr "Счетчик"
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr "URL и тип страницы WP"
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL и IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Проблема"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Хорошо"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Проверка"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Проверка перенаправления"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Проверка перенаправления для: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "Что это значит?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Не используется перенаправление"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Использование перенаправления"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Найдено"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr "{{code}}%(status)d{{/code}} на {{code}}%(url)s{{/code}}"
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Ожидается"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Ошибка"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Введите полный URL-адрес, включая http:// или https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr "Иногда ваш браузер может кэшировать URL-адрес, поэтому трудно понять, работает ли он так, как ожидалось. Используйте это, чтобы проверить URL-адрес, чтобы увидеть, как он действительно перенаправляется."
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Тестирование перенаправлений"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Цель"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL-адрес не перенаправляется с помощью Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL-адрес перенаправлен с помощью Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Не удается загрузить сведения"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Введите URL-адрес сервера для совпадений"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Сервер"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Введите значение роли или возможности"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Роль"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr "Совпадение с текстом реферера браузера"
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr "Сопоставить с этим пользовательским агентом обозревателя"
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "Относительный URL-адрес, с которого требуется перенаправить"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "Целевой URL-адрес, который требуется перенаправить в случае совпадения"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(бета)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Принудительное перенаправление с HTTP на HTTPS. Пожалуйста, убедитесь, что ваш HTTPS работает, прежде чем включить"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Принудительное HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR / Информация о конфиденциальности"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Добавить новое"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Пожалуйста, выйдите и войдите снова."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL-адрес и роль/возможности"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL и сервер"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Относительный /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "По умолчанию /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "Если вы не можете получить что-либо, то Redirection может столкнуться с трудностями при общении с вашим сервером. Вы можете вручную изменить этот параметр:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Протокол сайта и домашней"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Сайт и домашняя страница соответствуют"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr "Заметьте, что вы должны передать HTTP заголовки в PHP. Обратитесь за поддержкой к своему хостинг-провайдеру, если вам требуется помощь."
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "заголовок Accept Language"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Значение заголовка"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Имя заголовка"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "Заголовок HTTP"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "Имя фильтра WordPress"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Название фильтра"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Значение куки"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Имя куки"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Куки"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "очистка кеша."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Если вы используете систему кэширования, такую как cloudflare, пожалуйста, прочитайте это: "
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL-адрес и заголовок HTTP"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL-адрес и пользовательский фильтр"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL и куки"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 удалено"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Только /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Как Redirection использует REST API - не изменяются, если это необходимо"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "WordPress вернул неожиданное сообщение. Это может быть вызвано тем, что REST API не работает, или другим плагином или темой."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Взгляните на{{link}}статус плагина{{/link}}. Возможно, он сможет определить и \"волшебно исправить\" проблемы."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection не может соединиться с REST API{{/link}}.Если вы отключили его, то вам нужно будет включить его."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}} Программное обеспечение безопасности может блокировать Redirection{{/link}}. Необходимо настроить, чтобы разрешить запросы REST API."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Кэширование программного обеспечения{{/link}},в частности Cloudflare, может кэшировать неправильные вещи. Попробуйте очистить все кэши."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}} Пожалуйста, временно отключите другие плагины! {{/ link}} Это устраняет множество проблем."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Ни одно из предложений не помогло"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Пожалуйста, обратитесь к <a href=\"https://redirection.me/support/problems/\">списку распространенных проблем</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Не удается загрузить Redirection ☹ ️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API работает в %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API не работает, поэтому маршруты не проверены"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Маршруты перенаправления работают"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Перенаправление не отображается в маршрутах REST API. Вы отключили его с плагином?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Маршруты перенаправления"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Ваш WordPress REST API был отключен. Вам нужно будет включить его для продолжения работы Redirection"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Ошибка пользовательского агента"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Неизвестный агент пользователя"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Устройство"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Операционная система"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Браузер"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Движок"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Пользовательский агент"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Агент"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Не протоколировать IP"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Полное протоколирование IP-адресов"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Анонимизировать IP (маска последняя часть)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Отслеживание изменений в %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "Протоколирование IP"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(Выберите уровень ведения протокола по IP)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Географическая информация"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Информация о агенте"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Фильтровать по IP"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Пользователь / Агент пользователя"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Ошибка GeoIP"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Что-то пошло не так получение этой информации"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "Это IP из частной сети. Это означает, что он находится внутри домашней или бизнес-сети, и больше информации не может быть отображено."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "Сведения об этом адресе не известны."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "GeoIP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Город"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Область"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Часовой пояс"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Геолокация"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Работает на {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Корзина"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr "Обратите внимание, что Redirection требует WordPress REST API для включения. Если вы отключили это, то вы не сможете использовать Redirection"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "Вы можете найти полную документацию об использовании Redirection на <a href=\"%s\" target=\"_blank\">redirection.me</a> поддержки сайта."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  msgstr "Полную документацию по Redirection можно найти на {{site}}https://redirection.me{{/site}}. Если у вас возникли проблемы, пожалуйста, проверьте сперва {{faq}}FAQ{{/faq}}."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Если вы хотите сообщить об ошибке, пожалуйста, прочитайте инструкцию {{report}} отчеты об ошибках {{/report}}."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  msgstr "Если вы хотите отправить информацию, которую вы не хотите в публичный репозиторий, отправьте ее напрямую через {{email}} email {{/e-mail}} - укажите как можно больше информации!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Не кэшировать"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "Час"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Перенаправление кэша"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "Как долго кэшировать перенаправленные 301 URL-адреса (через \"истекает\" HTTP заголовок)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Вы действительно хотите импортировать из %s ?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Импортеры плагина"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Следующие плагины перенаправления были обнаружены на вашем сайте и могут быть импортированы из."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "всего = "
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Импортировать из %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection требует WordPress v%1$1s, вы используете v%2$2s - пожалуйста, обновите ваш WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "\"Старые ярлыки\" WordPress по умолчанию"
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Создание связанного перенаправления (Добавлено в конец URL-адреса)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> не определен. Это обычно означает, что другой плагин блокирует Redirection от загрузки. Пожалуйста, отключите все плагины и повторите попытку."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr "Если волшебная кнопка не работает, то вы должны посмотреть ошибку и решить, сможете ли вы исправить это вручную, иначе следуйте в раздел ниже \"Нужна помощь\"."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Волшебное исправление ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Статус плагина"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Пользовательский"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Мобильный"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Читатели ленты"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Библиотеки"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "URL-адрес монитор изменений"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Сохранить изменения в этой группе"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "Например \"/amp\""
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "Монитор URL"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Удалить 404"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Удалить все с IP %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Удалить все совпадения \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Ваш сервер отклонил запрос потому что он слишком большой. Для продолжения потребуется изменить его."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Также проверьте, может ли ваш браузер загрузить <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "Если вы используете плагин кэширования страниц или услугу (cloudflare, OVH и т.д.), то вы также можете попробовать очистить кэш."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Не удается загрузить Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Невозможно создать группу"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Группа мониторинга сообщений действительна"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Группа мониторинга постов недействительна."
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Группа отслеживания сообщений"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "Все перенаправления имеют допустимую группу"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Перенаправление с недопустимыми группами обнаружены"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Допустимая группа для перенаправления"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Обнаружены допустимые группы"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "Нет допустимых групп, поэтому вы не сможете создавать перенаправления"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Допустимые группы"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Таблицы базы данных"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "Следующие таблицы отсутствуют:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Все таблицы в наличии"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "Обнаружено кэшированное перенаправление"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Очистите кеш браузера и перезагрузите эту страницу."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Данные на этой странице истекли, пожалуйста, перезагрузите."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress не вернул ответ. Это может означать, что произошла ошибка или что запрос был заблокирован. Пожалуйста, проверьте ваш error_log сервера."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr "Ваш сервер вернул ошибку 403 (доступ запрещен), что означает что запрос был заблокирован. Возможно причина в том, что вы используете фаерволл или плагин безопасности? Возможно mod_security?"
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Включите эти сведения в отчет {{strong}} вместе с описанием того, что вы делали{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "Если вы считаете, что ошибка в Redirection, то создайте тикет о проблеме."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "Это может быть вызвано другим плагином-посмотрите на консоль ошибок вашего браузера для более подробной информации."
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Загрузка, пожалуйста подождите..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr "{{strong}} Формат CSV-файла {{/strong}}: {code}} исходный URL, целевой URL {{/code}}-и может быть опционально сопровождаться {{code}} Regex, http кодом {{/code}} ({{code}}regex{{/code}}-0 для НЕТ, 1 для ДА)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection не работает. Попробуйте очистить кэш браузера и перезагрузить эту страницу."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "Если это не поможет, откройте консоль ошибок браузера и создайте {{link}} новую заявку {{/link}} с деталями."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  msgstr "Если это новая проблема, пожалуйста, либо {{strong}} создайте новую заявку{{/strong}} или отправьте ее по{{strong}} электронной почте{{/strong}}. Напишите описание того, что вы пытаетесь сделать, и важные детали, перечисленные ниже. Пожалуйста, включите скриншот."
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Создать тикет о проблеме"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "Электронная почта"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Важные детали"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Нужна помощь?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Обратите внимание, что любая поддержка предоставляется по мере доступности и не гарантируется. Я не предоставляю платной поддержки."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Удалено"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Позиция"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  msgstr "Используется для автоматического создания URL-адреса, если URL-адрес не указан. Используйте специальные теги {{code}} $ dec $ {{code}} или {{code}} $ hex $ {{/ code}}, чтобы вместо этого вставить уникальный идентификатор"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Модуль Apache"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Введите полный путь и имя файла, если вы хотите, чтобы перенаправление автоматически обновляло ваш {{code}}. Htaccess {{code}}."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Импорт в группу"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Импортируйте файл CSV, .htaccess или JSON."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Нажмите «Добавить файл» или перетащите сюда."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Добавить файл"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Выбран файл"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Импортирование"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Импорт завершен"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Всего импортировано перенаправлений:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Дважды проверьте правильность формата файла!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Закрыть"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "Все импортируемые компоненты будут добавлены в текущую базу данных."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Экспорт"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Экспорт в CSV, Apache. htaccess, nginx или Redirection JSON (который содержит все перенаправления и группы)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Все"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "Перенаправления WordPress"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "перенаправления Apache"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "перенаправления NGINX"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Правила перезаписи nginx"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "Перенаправление JSON"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Вид"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Файлы логов можно экспортировать из страниц логов."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Импорт/Экспорт"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Журналы"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404 ошибки"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Пожалуйста, укажите {{code}} %s {{/code}}, и объясните, что вы делали в то время"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Мне хотелось бы поддержать чуть больше."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Поддержка 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Перенаправление сохранено"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Лог удален"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Настройки сохранены"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Группа сохранена"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Вы действительно хотите удалить этот пункт?"
1280
  msgstr[1] "Вы действительно хотите удалить этот пункт?"
1281
  msgstr[2] "Вы действительно хотите удалить этот пункт?"
1282
 
1283
+ #: redirection-strings.php:442
1284
  msgid "pass"
1285
  msgstr "проход"
1286
 
1287
+ #: redirection-strings.php:434
1288
  msgid "All groups"
1289
  msgstr "Все группы"
1290
 
1291
+ #: redirection-strings.php:98
1292
  msgid "301 - Moved Permanently"
1293
  msgstr "301 - Переехал навсегда"
1294
 
1295
+ #: redirection-strings.php:99
1296
  msgid "302 - Found"
1297
  msgstr "302 - Найдено"
1298
 
1299
+ #: redirection-strings.php:102
1300
  msgid "307 - Temporary Redirect"
1301
  msgstr "307 - Временное перенаправление"
1302
 
1303
+ #: redirection-strings.php:103
1304
  msgid "308 - Permanent Redirect"
1305
  msgstr "308 - Постоянное перенаправление"
1306
 
1307
+ #: redirection-strings.php:105
1308
  msgid "401 - Unauthorized"
1309
  msgstr "401 - Не авторизованы"
1310
 
1311
+ #: redirection-strings.php:107
1312
  msgid "404 - Not Found"
1313
  msgstr "404 - Страница не найдена"
1314
 
1315
+ #: redirection-strings.php:110
1316
  msgid "Title"
1317
  msgstr "Название"
1318
 
1319
+ #: redirection-strings.php:113
1320
  msgid "When matched"
1321
  msgstr "При совпадении"
1322
 
1323
+ #: redirection-strings.php:114
1324
  msgid "with HTTP code"
1325
  msgstr "с кодом HTTP"
1326
 
1327
+ #: redirection-strings.php:123
1328
  msgid "Show advanced options"
1329
  msgstr "Показать расширенные параметры"
1330
 
1331
+ #: redirection-strings.php:76
1332
  msgid "Matched Target"
1333
  msgstr "Совпавшие цели"
1334
 
1335
+ #: redirection-strings.php:78
1336
  msgid "Unmatched Target"
1337
  msgstr "Несовпавшая цель"
1338
 
1339
+ #: redirection-strings.php:68 redirection-strings.php:69
1340
  msgid "Saving..."
1341
  msgstr "Сохранение..."
1342
 
1343
+ #: redirection-strings.php:66
1344
  msgid "View notice"
1345
  msgstr "Просмотреть уведомление"
1346
 
1347
+ #: models/redirect.php:563
1348
  msgid "Invalid source URL"
1349
  msgstr "Неверный исходный URL"
1350
 
1351
+ #: models/redirect.php:491
1352
  msgid "Invalid redirect action"
1353
  msgstr "Неверное действие перенаправления"
1354
 
1355
+ #: models/redirect.php:485
1356
  msgid "Invalid redirect matcher"
1357
  msgstr "Неверное совпадение перенаправления"
1358
 
1360
  msgid "Unable to add new redirect"
1361
  msgstr "Не удалось добавить новое перенаправление"
1362
 
1363
+ #: redirection-strings.php:23 redirection-strings.php:271
1364
  msgid "Something went wrong 🙁"
1365
  msgstr "Что-то пошло не так 🙁"
1366
 
1367
+ #: redirection-strings.php:22
1368
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1369
  msgstr "Я пытался что-то сделать, и все пошло не так. Это может быть временная проблема, и если вы попробуете еще раз, это может сработать - здорово!"
1370
 
1371
  #. translators: maximum number of log entries
1372
+ #: redirection-admin.php:182
1373
  msgid "Log entries (%d max)"
1374
  msgstr "Журнал записей (%d максимум)"
1375
 
1376
+ #: redirection-strings.php:177
1377
  msgid "Search by IP"
1378
  msgstr "Поиск по IP"
1379
 
1380
+ #: redirection-strings.php:172
1381
  msgid "Select bulk action"
1382
  msgstr "Выберите массовое действие"
1383
 
1384
+ #: redirection-strings.php:173
1385
  msgid "Bulk Actions"
1386
  msgstr "Массовые действия"
1387
 
1388
+ #: redirection-strings.php:174
1389
  msgid "Apply"
1390
  msgstr "Применить"
1391
 
1392
+ #: redirection-strings.php:165
1393
  msgid "First page"
1394
  msgstr "Первая страница"
1395
 
1396
+ #: redirection-strings.php:166
1397
  msgid "Prev page"
1398
  msgstr "Предыдущая страница"
1399
 
1400
+ #: redirection-strings.php:167
1401
  msgid "Current Page"
1402
  msgstr "Текущая страница"
1403
 
1404
+ #: redirection-strings.php:168
1405
  msgid "of %(page)s"
1406
  msgstr "из %(page)s"
1407
 
1408
+ #: redirection-strings.php:169
1409
  msgid "Next page"
1410
  msgstr "Следующая страница"
1411
 
1412
+ #: redirection-strings.php:170
1413
  msgid "Last page"
1414
  msgstr "Последняя страница"
1415
 
1416
+ #: redirection-strings.php:171
1417
  msgid "%s item"
1418
  msgid_plural "%s items"
1419
  msgstr[0] "%s элемент"
1420
  msgstr[1] "%s элемента"
1421
  msgstr[2] "%s элементов"
1422
 
1423
+ #: redirection-strings.php:164
1424
  msgid "Select All"
1425
  msgstr "Выбрать всё"
1426
 
1427
+ #: redirection-strings.php:176
1428
  msgid "Sorry, something went wrong loading the data - please try again"
1429
  msgstr "Извините, что-то пошло не так при загрузке данных-пожалуйста, попробуйте еще раз"
1430
 
1431
+ #: redirection-strings.php:175
1432
  msgid "No results"
1433
  msgstr "Нет результатов"
1434
 
1435
+ #: redirection-strings.php:314
1436
  msgid "Delete the logs - are you sure?"
1437
  msgstr "Удалить журналы - вы уверены?"
1438
 
1439
+ #: redirection-strings.php:315
1440
  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."
1441
  msgstr "После удаления текущие журналы больше не будут доступны. Если требуется сделать это автоматически, можно задать расписание удаления из параметров перенаправления."
1442
 
1443
+ #: redirection-strings.php:316
1444
  msgid "Yes! Delete the logs"
1445
  msgstr "Да! Удалить журналы"
1446
 
1447
+ #: redirection-strings.php:317
1448
  msgid "No! Don't delete the logs"
1449
  msgstr "Нет! Не удаляйте журналы"
1450
 
1451
+ #: redirection-strings.php:459
1452
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1453
  msgstr "Благодарим за подписку! {{a}} Нажмите здесь {{/ a}}, если вам нужно вернуться к своей подписке."
1454
 
1455
+ #: redirection-strings.php:458 redirection-strings.php:460
1456
  msgid "Newsletter"
1457
  msgstr "Новости"
1458
 
1459
+ #: redirection-strings.php:461
1460
  msgid "Want to keep up to date with changes to Redirection?"
1461
  msgstr "Хотите быть в курсе изменений в плагине?"
1462
 
1463
+ #: redirection-strings.php:462
1464
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1465
  msgstr "Подпишитесь на маленький информационный бюллетень Redirection - информационный бюллетень о новых функциях и изменениях в плагине с небольшим количеством сообщений. Идеально, если вы хотите протестировать бета-версии до выпуска."
1466
 
1467
+ #: redirection-strings.php:463
1468
  msgid "Your email address:"
1469
  msgstr "Ваш адрес электронной почты:"
1470
 
1471
+ #: redirection-strings.php:374
1472
  msgid "You've supported this plugin - thank you!"
1473
  msgstr "Вы поддерживаете этот плагин - спасибо!"
1474
 
1475
+ #: redirection-strings.php:377
1476
  msgid "You get useful software and I get to carry on making it better."
1477
  msgstr "Вы получаете полезное программное обеспечение, и я продолжаю делать его лучше."
1478
 
1479
+ #: redirection-strings.php:385 redirection-strings.php:390
1480
  msgid "Forever"
1481
  msgstr "Всегда"
1482
 
1483
+ #: redirection-strings.php:366
1484
  msgid "Delete the plugin - are you sure?"
1485
  msgstr "Удалить плагин-вы уверены?"
1486
 
1487
+ #: redirection-strings.php:367
1488
  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."
1489
  msgstr "Удаление плагина удалит все ваши перенаправления, журналы и настройки. Сделайте это, если вы хотите удалить плагин, или если вы хотите сбросить плагин."
1490
 
1491
+ #: redirection-strings.php:368
1492
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1493
  msgstr "После удаления перенаправления перестанут работать. Если они, кажется, продолжают работать, пожалуйста, очистите кэш браузера."
1494
 
1495
+ #: redirection-strings.php:369
1496
  msgid "Yes! Delete the plugin"
1497
  msgstr "Да! Удалить плагин"
1498
 
1499
+ #: redirection-strings.php:370
1500
  msgid "No! Don't delete the plugin"
1501
  msgstr "Нет! Не удаляйте плагин"
1502
 
1503
+ #. Author of the plugin
1504
  msgid "John Godley"
1505
  msgstr "John Godley"
1506
 
1507
+ #. Description of the plugin
1508
  msgid "Manage all your 301 redirects and monitor 404 errors"
1509
  msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
1510
 
1511
+ #: redirection-strings.php:376
1512
  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}}."
1513
  msgstr "Redirection является бесплатным для использования - жизнь чудесна и прекрасна! Это потребовало много времени и усилий для развития, и вы можете помочь поддержать эту разработку {{strong}} сделав небольшое пожертвование {{/strong}}."
1514
 
1515
+ #: redirection-admin.php:300
1516
  msgid "Redirection Support"
1517
  msgstr "Поддержка перенаправления"
1518
 
1519
+ #: redirection-strings.php:65 redirection-strings.php:266
1520
  msgid "Support"
1521
  msgstr "Поддержка"
1522
 
1523
+ #: redirection-strings.php:62
1524
  msgid "404s"
1525
  msgstr "404"
1526
 
1527
+ #: redirection-strings.php:61
1528
  msgid "Log"
1529
  msgstr "Журнал"
1530
 
1531
+ #: redirection-strings.php:372
1532
  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."
1533
  msgstr "Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."
1534
 
1535
+ #: redirection-strings.php:371
1536
  msgid "Delete Redirection"
1537
  msgstr "Удалить перенаправление"
1538
 
1539
+ #: redirection-strings.php:284
1540
  msgid "Upload"
1541
  msgstr "Загрузить"
1542
 
1543
+ #: redirection-strings.php:295
1544
  msgid "Import"
1545
  msgstr "Импортировать"
1546
 
1547
+ #: redirection-strings.php:424
1548
  msgid "Update"
1549
  msgstr "Обновить"
1550
 
1551
+ #: redirection-strings.php:413
1552
  msgid "Auto-generate URL"
1553
  msgstr "Автоматическое создание URL-адреса"
1554
 
1555
+ #: redirection-strings.php:412
1556
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1557
  msgstr "Уникальный токен, позволяющий читателям получить доступ к RSS журнала Redirection (оставьте пустым, чтобы автоматически генерировать)"
1558
 
1559
+ #: redirection-strings.php:411
1560
  msgid "RSS Token"
1561
  msgstr "RSS-токен"
1562
 
1563
+ #: redirection-strings.php:405
1564
  msgid "404 Logs"
1565
  msgstr "404 Журналы"
1566
 
1567
+ #: redirection-strings.php:404 redirection-strings.php:406
1568
  msgid "(time to keep logs for)"
1569
  msgstr "(время хранения журналов для)"
1570
 
1571
+ #: redirection-strings.php:403
1572
  msgid "Redirect Logs"
1573
  msgstr "Перенаправление журналов"
1574
 
1575
+ #: redirection-strings.php:402
1576
  msgid "I'm a nice person and I have helped support the author of this plugin"
1577
  msgstr "Я хороший человек, и я помог поддержать автора этого плагина"
1578
 
1579
+ #: redirection-strings.php:379
1580
  msgid "Plugin Support"
1581
  msgstr "Поддержка плагина"
1582
 
1583
+ #: redirection-strings.php:64 redirection-strings.php:265
1584
  msgid "Options"
1585
  msgstr "Опции"
1586
 
1587
+ #: redirection-strings.php:384
1588
  msgid "Two months"
1589
  msgstr "Два месяца"
1590
 
1591
+ #: redirection-strings.php:383
1592
  msgid "A month"
1593
  msgstr "Месяц"
1594
 
1595
+ #: redirection-strings.php:382 redirection-strings.php:389
1596
  msgid "A week"
1597
  msgstr "Неделя"
1598
 
1599
+ #: redirection-strings.php:381 redirection-strings.php:388
1600
  msgid "A day"
1601
  msgstr "День"
1602
 
1603
+ #: redirection-strings.php:380
1604
  msgid "No logs"
1605
  msgstr "Нет записей"
1606
 
1607
+ #: redirection-strings.php:313 redirection-strings.php:349
1608
+ #: redirection-strings.php:354
1609
  msgid "Delete All"
1610
  msgstr "Удалить все"
1611
 
1612
+ #: redirection-strings.php:244
1613
  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."
1614
  msgstr "Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress."
1615
 
1616
+ #: redirection-strings.php:243
1617
  msgid "Add Group"
1618
  msgstr "Добавить группу"
1619
 
1620
+ #: redirection-strings.php:178
1621
  msgid "Search"
1622
  msgstr "Поиск"
1623
 
1624
+ #: redirection-strings.php:60 redirection-strings.php:261
1625
  msgid "Groups"
1626
  msgstr "Группы"
1627
 
1628
+ #: redirection-strings.php:25 redirection-strings.php:119
1629
+ #: redirection-strings.php:253
1630
  msgid "Save"
1631
  msgstr "Сохранить"
1632
 
1633
+ #: redirection-strings.php:115 redirection-strings.php:163
1634
  msgid "Group"
1635
  msgstr "Группа"
1636
 
1637
+ #: redirection-strings.php:112
1638
  msgid "Match"
1639
  msgstr "Совпадение"
1640
 
1641
+ #: redirection-strings.php:435
1642
  msgid "Add new redirection"
1643
  msgstr "Добавить новое перенаправление"
1644
 
1645
+ #: redirection-strings.php:121 redirection-strings.php:254
1646
+ #: redirection-strings.php:285
1647
  msgid "Cancel"
1648
  msgstr "Отменить"
1649
 
1650
+ #: redirection-strings.php:309
1651
  msgid "Download"
1652
  msgstr "Скачать"
1653
 
1654
+ #. Plugin Name of the plugin
1655
+ #: redirection-strings.php:233
1656
  msgid "Redirection"
1657
  msgstr "Redirection"
1658
 
1659
+ #: redirection-admin.php:140
1660
  msgid "Settings"
1661
  msgstr "Настройки"
1662
 
1663
+ #: redirection-strings.php:96
1664
  msgid "Error (404)"
1665
  msgstr "Ошибка (404)"
1666
 
1667
+ #: redirection-strings.php:95
1668
  msgid "Pass-through"
1669
  msgstr "Прозрачно пропускать"
1670
 
1671
+ #: redirection-strings.php:94
1672
  msgid "Redirect to random post"
1673
  msgstr "Перенаправить на случайную запись"
1674
 
1675
+ #: redirection-strings.php:93
1676
  msgid "Redirect to URL"
1677
  msgstr "Перенаправление на URL"
1678
 
1679
+ #: models/redirect.php:553
1680
  msgid "Invalid group when creating redirect"
1681
  msgstr "Неправильная группа при создании переадресации"
1682
 
1683
+ #: redirection-strings.php:144 redirection-strings.php:322
1684
+ #: redirection-strings.php:330 redirection-strings.php:335
1685
  msgid "IP"
1686
  msgstr "IP"
1687
 
1688
+ #: redirection-strings.php:120 redirection-strings.php:193
1689
+ #: redirection-strings.php:320 redirection-strings.php:328
1690
+ #: redirection-strings.php:333
1691
  msgid "Source URL"
1692
  msgstr "Исходный URL"
1693
 
1694
+ #: redirection-strings.php:319 redirection-strings.php:332
1695
  msgid "Date"
1696
  msgstr "Дата"
1697
 
1698
+ #: redirection-strings.php:345 redirection-strings.php:358
1699
+ #: redirection-strings.php:362 redirection-strings.php:436
1700
  msgid "Add Redirect"
1701
  msgstr "Добавить перенаправление"
1702
 
1703
+ #: redirection-strings.php:242
1704
  msgid "All modules"
1705
  msgstr "Все модули"
1706
 
1707
+ #: redirection-strings.php:248
1708
  msgid "View Redirects"
1709
  msgstr "Просмотр перенаправлений"
1710
 
1711
+ #: redirection-strings.php:238 redirection-strings.php:252
1712
  msgid "Module"
1713
  msgstr "Модуль"
1714
 
1715
+ #: redirection-strings.php:59 redirection-strings.php:237
1716
  msgid "Redirects"
1717
  msgstr "Редиректы"
1718
 
1719
+ #: redirection-strings.php:236 redirection-strings.php:245
1720
+ #: redirection-strings.php:251
1721
  msgid "Name"
1722
  msgstr "Имя"
1723
 
1724
+ #: redirection-strings.php:162
1725
  msgid "Filter"
1726
  msgstr "Фильтр"
1727
 
1728
+ #: redirection-strings.php:433
1729
  msgid "Reset hits"
1730
  msgstr "Сбросить показы"
1731
 
1732
+ #: redirection-strings.php:240 redirection-strings.php:250
1733
+ #: redirection-strings.php:431 redirection-strings.php:441
1734
  msgid "Enable"
1735
  msgstr "Включить"
1736
 
1737
+ #: redirection-strings.php:241 redirection-strings.php:249
1738
+ #: redirection-strings.php:432 redirection-strings.php:439
1739
  msgid "Disable"
1740
  msgstr "Отключить"
1741
 
1742
+ #: redirection-strings.php:239 redirection-strings.php:247
1743
+ #: redirection-strings.php:323 redirection-strings.php:324
1744
+ #: redirection-strings.php:336 redirection-strings.php:339
1745
+ #: redirection-strings.php:361 redirection-strings.php:373
1746
+ #: redirection-strings.php:430 redirection-strings.php:438
1747
  msgid "Delete"
1748
  msgstr "Удалить"
1749
 
1750
+ #: redirection-strings.php:246 redirection-strings.php:437
1751
  msgid "Edit"
1752
  msgstr "Редактировать"
1753
 
1754
+ #: redirection-strings.php:429
1755
  msgid "Last Access"
1756
  msgstr "Последний доступ"
1757
 
1758
+ #: redirection-strings.php:428
1759
  msgid "Hits"
1760
  msgstr "Показы"
1761
 
1762
+ #: redirection-strings.php:426 redirection-strings.php:454
1763
  msgid "URL"
1764
  msgstr "URL"
1765
 
1766
+ #: redirection-strings.php:425
1767
  msgid "Type"
1768
  msgstr "Тип"
1769
 
1770
+ #: database/schema/latest.php:137
1771
  msgid "Modified Posts"
1772
  msgstr "Измененные записи"
1773
 
1774
+ #: database/schema/latest.php:132 models/group.php:148
1775
+ #: redirection-strings.php:260
1776
  msgid "Redirections"
1777
  msgstr "Перенаправления"
1778
 
1779
+ #: redirection-strings.php:124
1780
  msgid "User Agent"
1781
  msgstr "Агент пользователя"
1782
 
1783
+ #: matches/user-agent.php:10 redirection-strings.php:86
1784
  msgid "URL and user agent"
1785
  msgstr "URL-адрес и агент пользователя"
1786
 
1787
+ #: redirection-strings.php:70 redirection-strings.php:80
1788
+ #: redirection-strings.php:195
1789
  msgid "Target URL"
1790
  msgstr "Целевой URL-адрес"
1791
 
1792
+ #: matches/url.php:7 redirection-strings.php:82
1793
  msgid "URL only"
1794
  msgstr "Только URL-адрес"
1795
 
1796
+ #: redirection-strings.php:118 redirection-strings.php:130
1797
+ #: redirection-strings.php:134 redirection-strings.php:142
1798
+ #: redirection-strings.php:151
1799
  msgid "Regex"
1800
  msgstr "Regex"
1801
 
1802
+ #: redirection-strings.php:149
1803
  msgid "Referrer"
1804
  msgstr "Ссылающийся URL"
1805
 
1806
+ #: matches/referrer.php:10 redirection-strings.php:85
1807
  msgid "URL and referrer"
1808
  msgstr "URL и ссылающийся URL"
1809
 
1810
+ #: redirection-strings.php:74
1811
  msgid "Logged Out"
1812
  msgstr "Выход из системы"
1813
 
1814
+ #: redirection-strings.php:72
1815
  msgid "Logged In"
1816
  msgstr "Вход в систему"
1817
 
1818
+ #: matches/login.php:8 redirection-strings.php:83
1819
  msgid "URL and login status"
1820
  msgstr "Статус URL и входа"
locale/redirection-sv_SE.mo CHANGED
Binary file
locale/redirection-sv_SE.po CHANGED
@@ -11,542 +11,827 @@ msgstr ""
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
- #. translators: 1: Site URL, 2: Home URL
15
- #: models/fixer.php:56
16
- msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
- #: redirection-admin.php:377
20
- msgid "Unsupported PHP"
21
- msgstr "PHP stöds inte"
22
 
23
- #. translators: 1: Expected PHP version, 2: Actual PHP version
24
- #: redirection-admin.php:374
25
- msgid "Redirection requires PHP v%1$1s, you are using v%2$2s. This plugin will stop working from the next version."
26
  msgstr ""
27
 
28
- #: redirection-strings.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
30
  msgstr ""
31
 
32
- #: redirection-strings.php:357
33
  msgid "Only the 404 page type is currently supported."
34
  msgstr ""
35
 
36
- #: redirection-strings.php:356
37
  msgid "Page Type"
38
  msgstr "Sidtyp"
39
 
40
- #: redirection-strings.php:355
41
  msgid "Enter IP addresses (one per line)"
42
  msgstr "Ange IP-adresser (en per rad)"
43
 
44
- #: redirection-strings.php:309
45
  msgid "Describe the purpose of this redirect (optional)"
46
  msgstr "Beskriv syftet med denna omdirigering (valfritt)"
47
 
48
- #: redirection-strings.php:307
49
  msgid "418 - I'm a teapot"
50
  msgstr "418 – Jag är en tekanna"
51
 
52
- #: redirection-strings.php:304
53
  msgid "403 - Forbidden"
54
  msgstr "403 – Förbjuden"
55
 
56
- #: redirection-strings.php:302
57
  msgid "400 - Bad Request"
58
  msgstr ""
59
 
60
- #: redirection-strings.php:299
61
  msgid "304 - Not Modified"
62
  msgstr "304 – Inte modifierad"
63
 
64
- #: redirection-strings.php:298
65
  msgid "303 - See Other"
66
  msgstr ""
67
 
68
- #: redirection-strings.php:295
69
  msgid "Do nothing (ignore)"
70
  msgstr "Gör ingenting (ignorera)"
71
 
72
- #: redirection-strings.php:273 redirection-strings.php:277
73
  msgid "Target URL when not matched (empty to ignore)"
74
  msgstr "URL-mål när den inte matchas (tom för att ignorera)"
75
 
76
- #: redirection-strings.php:271 redirection-strings.php:275
77
  msgid "Target URL when matched (empty to ignore)"
78
  msgstr "URL-mål vid matchning (tom för att ignorera)"
79
 
80
- #: redirection-strings.php:196 redirection-strings.php:201
81
  msgid "Show All"
82
  msgstr "Visa alla"
83
 
84
- #: redirection-strings.php:193
85
  msgid "Delete all logs for these entries"
86
  msgstr ""
87
 
88
- #: redirection-strings.php:192 redirection-strings.php:205
89
  msgid "Delete all logs for this entry"
90
  msgstr ""
91
 
92
- #: redirection-strings.php:191
93
  msgid "Delete Log Entries"
94
  msgstr ""
95
 
96
- #: redirection-strings.php:189
97
  msgid "Group by IP"
98
  msgstr "Grupp efter IP"
99
 
100
- #: redirection-strings.php:188
101
  msgid "Group by URL"
102
  msgstr "Grupp efter URL"
103
 
104
- #: redirection-strings.php:187
105
  msgid "No grouping"
106
  msgstr "Ingen gruppering"
107
 
108
- #: redirection-strings.php:186 redirection-strings.php:202
109
  msgid "Ignore URL"
110
  msgstr "Ignorera URL"
111
 
112
- #: redirection-strings.php:183 redirection-strings.php:198
113
  msgid "Block IP"
114
  msgstr "Blockera IP"
115
 
116
- #: redirection-strings.php:182 redirection-strings.php:185
117
- #: redirection-strings.php:195 redirection-strings.php:200
118
  msgid "Redirect All"
119
  msgstr "Omdirigera alla"
120
 
121
- #: redirection-strings.php:174 redirection-strings.php:176
122
  msgid "Count"
123
  msgstr ""
124
 
125
- #: matches/page.php:9 redirection-strings.php:290
126
  msgid "URL and WordPress page type"
127
  msgstr ""
128
 
129
- #: matches/ip.php:9 redirection-strings.php:286
130
  msgid "URL and IP"
131
  msgstr "URL och IP"
132
 
133
- #: redirection-strings.php:396
134
  msgid "Problem"
135
  msgstr "Problem"
136
 
137
- #: redirection-strings.php:395
138
  msgid "Good"
139
  msgstr "Bra"
140
 
141
- #: redirection-strings.php:385
142
  msgid "Check"
143
  msgstr "Kontrollera"
144
 
145
- #: redirection-strings.php:369
146
  msgid "Check Redirect"
147
  msgstr "Kontrollera omdirigering"
148
 
149
- #: redirection-strings.php:47
150
  msgid "Check redirect for: {{code}}%s{{/code}}"
151
  msgstr "Kontrollera omdirigering för: {{code}}%s{{/code}}"
152
 
153
- #: redirection-strings.php:46
154
  msgid "What does this mean?"
155
  msgstr "Vad betyder detta?"
156
 
157
- #: redirection-strings.php:45
158
  msgid "Not using Redirection"
159
  msgstr "Använder inte omdirigering"
160
 
161
- #: redirection-strings.php:44
162
  msgid "Using Redirection"
163
  msgstr "Använder omdirigering"
164
 
165
- #: redirection-strings.php:41
166
  msgid "Found"
167
  msgstr "Hittad"
168
 
169
- #: redirection-strings.php:40 redirection-strings.php:42
170
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
171
  msgstr ""
172
 
173
- #: redirection-strings.php:39
174
  msgid "Expected"
175
  msgstr "Förväntad"
176
 
177
- #: redirection-strings.php:37
178
  msgid "Error"
179
  msgstr "Fel"
180
 
181
- #: redirection-strings.php:384
182
  msgid "Enter full URL, including http:// or https://"
183
  msgstr "Ange fullständig URL, inklusive http:// eller https://"
184
 
185
- #: redirection-strings.php:382
186
  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."
187
  msgstr ""
188
 
189
- #: redirection-strings.php:381
190
  msgid "Redirect Tester"
191
  msgstr "Omdirigeringstestare"
192
 
193
- #: redirection-strings.php:380
194
  msgid "Target"
195
  msgstr "Mål"
196
 
197
- #: redirection-strings.php:379
198
  msgid "URL is not being redirected with Redirection"
199
  msgstr "URL omdirigeras inte med Redirection"
200
 
201
- #: redirection-strings.php:378
202
  msgid "URL is being redirected with Redirection"
203
  msgstr "URL omdirigeras med Redirection"
204
 
205
- #: redirection-strings.php:377 redirection-strings.php:386
206
  msgid "Unable to load details"
207
  msgstr "Det gick inte att ladda detaljer"
208
 
209
- #: redirection-strings.php:365
210
  msgid "Enter server URL to match against"
211
  msgstr "Ange server-URL för att matcha mot"
212
 
213
- #: redirection-strings.php:364
214
  msgid "Server"
215
  msgstr "Server"
216
 
217
- #: redirection-strings.php:363
218
  msgid "Enter role or capability value"
219
  msgstr "Ange roll eller behörighetsvärde"
220
 
221
- #: redirection-strings.php:362
222
  msgid "Role"
223
  msgstr "Roll"
224
 
225
- #: redirection-strings.php:360
226
  msgid "Match against this browser referrer text"
227
  msgstr ""
228
 
229
- #: redirection-strings.php:335
230
  msgid "Match against this browser user agent"
231
  msgstr ""
232
 
233
- #: redirection-strings.php:315
234
  msgid "The relative URL you want to redirect from"
235
  msgstr "Den relativa URL du vill omdirigera från"
236
 
237
- #: redirection-strings.php:279
238
  msgid "The target URL you want to redirect to if matched"
239
  msgstr "URL-målet du vill omdirigera till om den matchas"
240
 
241
- #: redirection-strings.php:264
242
  msgid "(beta)"
243
  msgstr "(beta)"
244
 
245
- #: redirection-strings.php:263
246
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
247
  msgstr "Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"
248
 
249
- #: redirection-strings.php:262
250
  msgid "Force HTTPS"
251
  msgstr "Tvinga HTTPS"
252
 
253
- #: redirection-strings.php:254
254
  msgid "GDPR / Privacy information"
255
  msgstr "GDPR/integritetsinformation"
256
 
257
- #: redirection-strings.php:121
258
  msgid "Add New"
259
  msgstr "Lägg till ny"
260
 
261
- #: redirection-strings.php:6
262
  msgid "Please logout and login again."
263
  msgstr "Logga ut och logga in igen."
264
 
265
- #: matches/user-role.php:9 redirection-strings.php:282
266
  msgid "URL and role/capability"
267
  msgstr "URL och roll/behörighet"
268
 
269
- #: matches/server.php:9 redirection-strings.php:287
270
  msgid "URL and server"
271
  msgstr "URL och server"
272
 
273
- #: redirection-strings.php:241
274
  msgid "Relative /wp-json/"
275
  msgstr "Relativ /wp-json/"
276
 
277
- #: redirection-strings.php:239
278
  msgid "Default /wp-json/"
279
  msgstr "Standard /wp-json/"
280
 
281
- #: redirection-strings.php:13
282
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
283
  msgstr "Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"
284
 
285
- #: models/fixer.php:60
286
  msgid "Site and home protocol"
287
  msgstr "Webbplats och hemprotokoll"
288
 
289
- #: models/fixer.php:53
290
  msgid "Site and home are consistent"
291
  msgstr "Webbplats och hem är konsekventa"
292
 
293
- #: redirection-strings.php:353
294
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
295
  msgstr ""
296
 
297
- #: redirection-strings.php:351
298
  msgid "Accept Language"
299
  msgstr "Acceptera språk"
300
 
301
- #: redirection-strings.php:349
302
  msgid "Header value"
303
  msgstr "Värde för sidhuvud"
304
 
305
- #: redirection-strings.php:348
306
  msgid "Header name"
307
  msgstr "Namn på sidhuvud"
308
 
309
- #: redirection-strings.php:347
310
  msgid "HTTP Header"
311
  msgstr "HTTP-sidhuvud"
312
 
313
- #: redirection-strings.php:346
314
  msgid "WordPress filter name"
315
  msgstr "WordPress-filternamn"
316
 
317
- #: redirection-strings.php:345
318
  msgid "Filter Name"
319
  msgstr "Filternamn"
320
 
321
- #: redirection-strings.php:343
322
  msgid "Cookie value"
323
  msgstr "Cookie-värde"
324
 
325
- #: redirection-strings.php:342
326
  msgid "Cookie name"
327
  msgstr "Cookie-namn"
328
 
329
- #: redirection-strings.php:341
330
  msgid "Cookie"
331
  msgstr "Cookie"
332
 
333
- #: redirection-strings.php:115
334
  msgid "clearing your cache."
335
  msgstr "rensa cacheminnet."
336
 
337
- #: redirection-strings.php:114
338
  msgid "If you are using a caching system such as Cloudflare then please read this: "
339
  msgstr "Om du använder ett caching-system som Cloudflare, läs det här:"
340
 
341
- #: matches/http-header.php:11 redirection-strings.php:288
342
  msgid "URL and HTTP header"
343
  msgstr "URL- och HTTP-sidhuvuden"
344
 
345
- #: matches/custom-filter.php:9 redirection-strings.php:289
346
  msgid "URL and custom filter"
347
  msgstr "URL och anpassat filter"
348
 
349
- #: matches/cookie.php:7 redirection-strings.php:285
350
  msgid "URL and cookie"
351
  msgstr "URL och cookie"
352
 
353
- #: redirection-strings.php:402
354
  msgid "404 deleted"
355
  msgstr "404 borttagen"
356
 
357
- #: redirection-strings.php:240
358
  msgid "Raw /index.php?rest_route=/"
359
  msgstr "Rå /index.php?rest_route=/"
360
 
361
- #: redirection-strings.php:267
362
  msgid "REST API"
363
  msgstr "REST API"
364
 
365
- #: redirection-strings.php:268
366
  msgid "How Redirection uses the REST API - don't change unless necessary"
367
  msgstr "Hur Redirection använder REST API &ndash; ändra inte om inte nödvändigt"
368
 
369
- #: redirection-strings.php:10
370
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
371
  msgstr "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."
372
 
373
- #: redirection-strings.php:15
374
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
375
  msgstr "Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."
376
 
377
- #: redirection-strings.php:16
378
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
379
  msgstr "{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."
380
 
381
- #: redirection-strings.php:17
382
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
383
  msgstr "{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."
384
 
385
- #: redirection-strings.php:18
386
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
387
  msgstr "{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."
388
 
389
- #: redirection-strings.php:19
390
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
391
  msgstr "{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."
392
 
393
- #: redirection-strings.php:20
394
  msgid "None of the suggestions helped"
395
  msgstr "Inget av förslagen hjälpte"
396
 
397
- #: redirection-admin.php:445
398
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
399
  msgstr "Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."
400
 
401
- #: redirection-admin.php:439
402
  msgid "Unable to load Redirection ☹️"
403
  msgstr "Kunde inte ladda Redirection ☹️"
404
 
405
  #. translators: %s: URL of REST API
406
- #: models/fixer.php:100
407
  msgid "WordPress REST API is working at %s"
408
  msgstr "WordPress REST API arbetar på %s"
409
 
410
- #: models/fixer.php:96
411
  msgid "WordPress REST API"
412
  msgstr "WordPress REST API"
413
 
414
- #: models/fixer.php:88
415
  msgid "REST API is not working so routes not checked"
416
  msgstr "REST API fungerar inte så flödena kontrolleras inte"
417
 
418
- #: models/fixer.php:83
419
  msgid "Redirection routes are working"
420
  msgstr "Omdirigeringsflödena fungerar"
421
 
422
- #: models/fixer.php:77
423
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
424
  msgstr "Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"
425
 
426
- #: models/fixer.php:69
427
  msgid "Redirection routes"
428
  msgstr "Omdirigeringsflöden"
429
 
430
- #: redirection-strings.php:9
431
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
432
  msgstr "Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"
433
 
434
- #. Author URI of the plugin/theme
435
  msgid "https://johngodley.com"
436
  msgstr "https://johngodley.com"
437
 
438
- #: redirection-strings.php:76
439
  msgid "Useragent Error"
440
  msgstr "Användaragentfel"
441
 
442
- #: redirection-strings.php:78
443
  msgid "Unknown Useragent"
444
  msgstr "Okänd användaragent"
445
 
446
- #: redirection-strings.php:79
447
  msgid "Device"
448
  msgstr "Enhet"
449
 
450
- #: redirection-strings.php:80
451
  msgid "Operating System"
452
  msgstr "Operativsystem"
453
 
454
- #: redirection-strings.php:81
455
  msgid "Browser"
456
  msgstr "Webbläsare"
457
 
458
- #: redirection-strings.php:82
459
  msgid "Engine"
460
  msgstr "Sökmotor"
461
 
462
- #: redirection-strings.php:83
463
  msgid "Useragent"
464
  msgstr "Useragent"
465
 
466
- #: redirection-strings.php:43 redirection-strings.php:84
467
  msgid "Agent"
468
  msgstr "Agent"
469
 
470
- #: redirection-strings.php:236
471
  msgid "No IP logging"
472
  msgstr "Ingen loggning av IP-nummer"
473
 
474
- #: redirection-strings.php:237
475
  msgid "Full IP logging"
476
  msgstr "Fullständig loggning av IP-nummer"
477
 
478
- #: redirection-strings.php:238
479
  msgid "Anonymize IP (mask last part)"
480
  msgstr "Anonymisera IP-nummer (maska sista delen)"
481
 
482
- #: redirection-strings.php:246
483
  msgid "Monitor changes to %(type)s"
484
  msgstr "Övervaka ändringar till %(type)s"
485
 
486
- #: redirection-strings.php:252
487
  msgid "IP Logging"
488
  msgstr "Läggning av IP-nummer"
489
 
490
- #: redirection-strings.php:253
491
  msgid "(select IP logging level)"
492
  msgstr "(välj loggningsnivå för IP)"
493
 
494
- #: redirection-strings.php:170 redirection-strings.php:197
495
- #: redirection-strings.php:208
496
  msgid "Geo Info"
497
  msgstr "Geo-info"
498
 
499
- #: redirection-strings.php:171 redirection-strings.php:209
500
  msgid "Agent Info"
501
  msgstr "Agentinfo"
502
 
503
- #: redirection-strings.php:172 redirection-strings.php:210
504
  msgid "Filter by IP"
505
  msgstr "Filtrera på IP-nummer"
506
 
507
- #: redirection-strings.php:166 redirection-strings.php:179
508
  msgid "Referrer / User Agent"
509
  msgstr "Hänvisare/Användaragent"
510
 
511
- #: redirection-strings.php:26
512
  msgid "Geo IP Error"
513
  msgstr "Geo-IP-fel"
514
 
515
- #: redirection-strings.php:27 redirection-strings.php:38
516
- #: redirection-strings.php:77
517
  msgid "Something went wrong obtaining this information"
518
  msgstr "Något gick fel när denna information skulle hämtas"
519
 
520
- #: redirection-strings.php:29
521
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
522
  msgstr "Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."
523
 
524
- #: redirection-strings.php:31
525
  msgid "No details are known for this address."
526
  msgstr "Det finns inga kända detaljer för denna adress."
527
 
528
- #: redirection-strings.php:28 redirection-strings.php:30
529
- #: redirection-strings.php:32
530
  msgid "Geo IP"
531
  msgstr "Geo IP"
532
 
533
- #: redirection-strings.php:33
534
  msgid "City"
535
  msgstr "Stad"
536
 
537
- #: redirection-strings.php:34
538
  msgid "Area"
539
  msgstr "Region"
540
 
541
- #: redirection-strings.php:35
542
  msgid "Timezone"
543
  msgstr "Tidszon"
544
 
545
- #: redirection-strings.php:36
546
  msgid "Geo Location"
547
  msgstr "Geo-plats"
548
 
549
- #: redirection-strings.php:56
550
  msgid "Powered by {{link}}redirect.li{{/link}}"
551
  msgstr "Drivs av {{link}}redirect.li{{/link}}"
552
 
@@ -554,78 +839,69 @@ msgstr "Drivs av {{link}}redirect.li{{/link}}"
554
  msgid "Trash"
555
  msgstr "Släng"
556
 
557
- #: redirection-admin.php:444
558
  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"
559
  msgstr "Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"
560
 
561
  #. translators: URL
562
- #: redirection-admin.php:309
563
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
564
  msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."
565
 
566
- #. Plugin URI of the plugin/theme
567
  msgid "https://redirection.me/"
568
  msgstr "https://redirection.me/"
569
 
570
- #: redirection-strings.php:373
571
  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."
572
  msgstr "Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."
573
 
574
- #: redirection-strings.php:374
575
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
576
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
577
 
578
- #: redirection-strings.php:376
579
  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!"
580
  msgstr "Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"
581
 
582
- #: redirection-strings.php:231
583
  msgid "Never cache"
584
  msgstr "Använd aldrig cache"
585
 
586
- #: redirection-strings.php:232
587
  msgid "An hour"
588
  msgstr "En timma"
589
 
590
- #: redirection-strings.php:265
591
  msgid "Redirect Cache"
592
  msgstr "Omdirigera cache"
593
 
594
- #: redirection-strings.php:266
595
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
596
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
597
 
598
- #: redirection-strings.php:137
599
  msgid "Are you sure you want to import from %s?"
600
  msgstr "Är du säker på att du vill importera från %s?"
601
 
602
- #: redirection-strings.php:138
603
  msgid "Plugin Importers"
604
  msgstr "Tilläggsimporterare"
605
 
606
- #: redirection-strings.php:139
607
  msgid "The following redirect plugins were detected on your site and can be imported from."
608
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
609
 
610
- #: redirection-strings.php:122
611
  msgid "total = "
612
  msgstr "totalt ="
613
 
614
- #: redirection-strings.php:123
615
  msgid "Import from %s"
616
  msgstr "Importera från %s"
617
 
618
- #. translators: URL
619
- #: redirection-admin.php:392
620
- msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
621
- msgstr "Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."
622
-
623
- #: redirection-admin.php:395
624
- msgid "Redirection not installed properly"
625
- msgstr "Redirection har inte installerats ordentligt"
626
-
627
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
628
- #: redirection-admin.php:358
629
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
630
  msgstr "Redirection kräver WordPress v%1$1s, du använder v%2$2s – uppdatera WordPress"
631
 
@@ -633,453 +909,449 @@ msgstr "Redirection kräver WordPress v%1$1s, du använder v%2$2s – uppdatera
633
  msgid "Default WordPress \"old slugs\""
634
  msgstr "WordPress standard ”gamla permalänkar”"
635
 
636
- #: redirection-strings.php:245
637
  msgid "Create associated redirect (added to end of URL)"
638
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
639
 
640
- #: redirection-admin.php:447
641
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
642
  msgstr "<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."
643
 
644
- #: redirection-strings.php:393
645
  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."
646
  msgstr "Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."
647
 
648
- #: redirection-strings.php:394
649
  msgid "⚡️ Magic fix ⚡️"
650
  msgstr "⚡️ Magisk fix ⚡️"
651
 
652
- #: redirection-strings.php:397
653
  msgid "Plugin Status"
654
  msgstr "Tilläggsstatus"
655
 
656
- #: redirection-strings.php:336 redirection-strings.php:350
657
  msgid "Custom"
658
  msgstr "Anpassad"
659
 
660
- #: redirection-strings.php:337
661
  msgid "Mobile"
662
  msgstr "Mobil"
663
 
664
- #: redirection-strings.php:338
665
  msgid "Feed Readers"
666
  msgstr "Feedläsare"
667
 
668
- #: redirection-strings.php:339
669
  msgid "Libraries"
670
  msgstr "Bibliotek"
671
 
672
- #: redirection-strings.php:242
673
  msgid "URL Monitor Changes"
674
  msgstr "Övervaka URL-ändringar"
675
 
676
- #: redirection-strings.php:243
677
  msgid "Save changes to this group"
678
  msgstr "Spara ändringar till den här gruppen"
679
 
680
- #: redirection-strings.php:244
681
  msgid "For example \"/amp\""
682
  msgstr "Till exempel ”/amp”"
683
 
684
- #: redirection-strings.php:255
685
  msgid "URL Monitor"
686
  msgstr "URL-övervakning"
687
 
688
- #: redirection-strings.php:204
689
  msgid "Delete 404s"
690
  msgstr "Radera 404:or"
691
 
692
- #: redirection-strings.php:156
693
  msgid "Delete all from IP %s"
694
  msgstr "Ta bort allt från IP-numret %s"
695
 
696
- #: redirection-strings.php:157
697
  msgid "Delete all matching \"%s\""
698
  msgstr "Ta bort allt som matchar \"%s\""
699
 
700
- #: redirection-strings.php:8
701
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
702
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
703
 
704
- #: redirection-admin.php:442
705
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
706
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
707
 
708
- #: redirection-admin.php:441 redirection-strings.php:118
709
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
710
  msgstr "Om du använder ett tillägg eller en tjänst för att cacha sidor (CloudFlare, OVH m.m.) så kan du också prova att rensa den cachen."
711
 
712
- #: redirection-admin.php:361
713
  msgid "Unable to load Redirection"
714
  msgstr "Det gick inte att ladda Redirection"
715
 
716
- #: models/fixer.php:265
717
  msgid "Unable to create group"
718
  msgstr "Det gick inte att skapa grupp"
719
 
720
- #: models/fixer.php:257
721
- msgid "Failed to fix database tables"
722
- msgstr "Det gick inte att korrigera databastabellerna"
723
-
724
- #: models/fixer.php:40
725
  msgid "Post monitor group is valid"
726
  msgstr "Övervakningsgrupp för inlägg är giltig"
727
 
728
- #: models/fixer.php:40
729
  msgid "Post monitor group is invalid"
730
  msgstr "Övervakningsgrupp för inlägg är ogiltig"
731
 
732
- #: models/fixer.php:38
733
  msgid "Post monitor group"
734
  msgstr "Övervakningsgrupp för inlägg"
735
 
736
- #: models/fixer.php:34
737
  msgid "All redirects have a valid group"
738
  msgstr "Alla omdirigeringar har en giltig grupp"
739
 
740
- #: models/fixer.php:34
741
  msgid "Redirects with invalid groups detected"
742
  msgstr "Omdirigeringar med ogiltiga grupper upptäcktes"
743
 
744
- #: models/fixer.php:32
745
  msgid "Valid redirect group"
746
  msgstr "Giltig omdirigeringsgrupp"
747
 
748
- #: models/fixer.php:28
749
  msgid "Valid groups detected"
750
  msgstr "Giltiga grupper upptäcktes"
751
 
752
- #: models/fixer.php:28
753
  msgid "No valid groups, so you will not be able to create any redirects"
754
  msgstr "Inga giltiga grupper, du kan inte skapa nya omdirigeringar"
755
 
756
- #: models/fixer.php:26
757
  msgid "Valid groups"
758
  msgstr "Giltiga grupper"
759
 
760
- #: models/fixer.php:23
761
  msgid "Database tables"
762
  msgstr "Databastabeller"
763
 
764
- #: models/database.php:317
765
  msgid "The following tables are missing:"
766
  msgstr "Följande tabeller saknas:"
767
 
768
- #: models/database.php:317
769
  msgid "All tables present"
770
  msgstr "Alla tabeller närvarande"
771
 
772
- #: redirection-strings.php:112
773
  msgid "Cached Redirection detected"
774
  msgstr "En cachad version av Redirection upptäcktes"
775
 
776
- #: redirection-strings.php:113
777
  msgid "Please clear your browser cache and reload this page."
778
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
779
 
780
- #: redirection-strings.php:4
781
  msgid "The data on this page has expired, please reload."
782
  msgstr "Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."
783
 
784
- #: redirection-strings.php:5
785
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
786
  msgstr "WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."
787
 
788
- #: redirection-strings.php:7
789
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
790
  msgstr ""
791
 
792
- #: redirection-strings.php:25
793
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
794
  msgstr "Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."
795
 
796
- #: redirection-admin.php:446
797
  msgid "If you think Redirection is at fault then create an issue."
798
  msgstr "Om du tror att Redirection orsakar felet, skapa en felrapport."
799
 
800
- #: redirection-admin.php:440
801
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
802
  msgstr "Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "
803
 
804
- #: redirection-admin.php:432
805
  msgid "Loading, please wait..."
806
  msgstr "Laddar, vänligen vänta..."
807
 
808
- #: redirection-strings.php:142
809
  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)."
810
  msgstr "{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."
811
 
812
- #: redirection-strings.php:117
813
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
814
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
815
 
816
- #: redirection-strings.php:119
817
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
818
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
819
 
820
- #: redirection-strings.php:21
821
  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."
822
  msgstr "Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "
823
 
824
- #: redirection-admin.php:450 redirection-strings.php:22
825
  msgid "Create Issue"
826
  msgstr "Skapa felrapport"
827
 
828
- #: redirection-strings.php:23
829
  msgid "Email"
830
  msgstr "E-post"
831
 
832
- #: redirection-strings.php:24
833
  msgid "Important details"
834
  msgstr "Viktiga detaljer"
835
 
836
- #: redirection-strings.php:372
837
  msgid "Need help?"
838
  msgstr "Behöver du hjälp?"
839
 
840
- #: redirection-strings.php:375
841
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
842
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
843
 
844
- #: redirection-strings.php:324
845
  msgid "Pos"
846
  msgstr "Pos"
847
 
848
- #: redirection-strings.php:306
849
  msgid "410 - Gone"
850
  msgstr "410 - Borttagen"
851
 
852
- #: redirection-strings.php:314
853
  msgid "Position"
854
  msgstr "Position"
855
 
856
- #: redirection-strings.php:259
857
  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"
858
  msgstr "Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"
859
 
860
- #: redirection-strings.php:260
861
  msgid "Apache Module"
862
  msgstr "Apache-modul"
863
 
864
- #: redirection-strings.php:261
865
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
866
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
867
 
868
- #: redirection-strings.php:124
869
  msgid "Import to group"
870
  msgstr "Importera till grupp"
871
 
872
- #: redirection-strings.php:125
873
  msgid "Import a CSV, .htaccess, or JSON file."
874
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
875
 
876
- #: redirection-strings.php:126
877
  msgid "Click 'Add File' or drag and drop here."
878
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
879
 
880
- #: redirection-strings.php:127
881
  msgid "Add File"
882
  msgstr "Lägg till fil"
883
 
884
- #: redirection-strings.php:128
885
  msgid "File selected"
886
  msgstr "Fil vald"
887
 
888
- #: redirection-strings.php:131
889
  msgid "Importing"
890
  msgstr "Importerar"
891
 
892
- #: redirection-strings.php:132
893
  msgid "Finished importing"
894
  msgstr "Importering klar"
895
 
896
- #: redirection-strings.php:133
897
  msgid "Total redirects imported:"
898
  msgstr "Antal omdirigeringar importerade:"
899
 
900
- #: redirection-strings.php:134
901
  msgid "Double-check the file is the correct format!"
902
  msgstr "Dubbelkolla att filen är i rätt format!"
903
 
904
- #: redirection-strings.php:135
905
  msgid "OK"
906
  msgstr "OK"
907
 
908
- #: redirection-strings.php:136 redirection-strings.php:320
909
  msgid "Close"
910
  msgstr "Stäng"
911
 
912
- #: redirection-strings.php:141
913
  msgid "All imports will be appended to the current database."
914
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
915
 
916
- #: redirection-strings.php:143 redirection-strings.php:163
917
  msgid "Export"
918
  msgstr "Exportera"
919
 
920
- #: redirection-strings.php:144
921
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
922
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
923
 
924
- #: redirection-strings.php:145
925
  msgid "Everything"
926
  msgstr "Allt"
927
 
928
- #: redirection-strings.php:146
929
  msgid "WordPress redirects"
930
  msgstr "WordPress omdirigeringar"
931
 
932
- #: redirection-strings.php:147
933
  msgid "Apache redirects"
934
  msgstr "Apache omdirigeringar"
935
 
936
- #: redirection-strings.php:148
937
  msgid "Nginx redirects"
938
  msgstr "Nginx omdirigeringar"
939
 
940
- #: redirection-strings.php:149
941
  msgid "CSV"
942
  msgstr "CSV"
943
 
944
- #: redirection-strings.php:150
945
  msgid "Apache .htaccess"
946
  msgstr "Apache .htaccess"
947
 
948
- #: redirection-strings.php:151
949
  msgid "Nginx rewrite rules"
950
  msgstr "Nginx omskrivningsregler"
951
 
952
- #: redirection-strings.php:152
953
  msgid "Redirection JSON"
954
  msgstr "JSON omdirigeringar"
955
 
956
- #: redirection-strings.php:153
957
  msgid "View"
958
  msgstr "Visa"
959
 
960
- #: redirection-strings.php:155
961
  msgid "Log files can be exported from the log pages."
962
  msgstr "Loggfiler kan exporteras från loggsidorna."
963
 
964
- #: redirection-strings.php:52 redirection-strings.php:107
965
  msgid "Import/Export"
966
  msgstr "Importera/Exportera"
967
 
968
- #: redirection-strings.php:108
969
  msgid "Logs"
970
  msgstr "Loggar"
971
 
972
- #: redirection-strings.php:109
973
  msgid "404 errors"
974
  msgstr "404-fel"
975
 
976
- #: redirection-strings.php:120
977
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
978
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
979
 
980
- #: redirection-strings.php:220
981
  msgid "I'd like to support some more."
982
  msgstr "Jag skulle vilja stödja lite till."
983
 
984
- #: redirection-strings.php:223
985
  msgid "Support 💰"
986
  msgstr "Support 💰"
987
 
988
- #: redirection-strings.php:398
989
  msgid "Redirection saved"
990
  msgstr "Omdirigering sparad"
991
 
992
- #: redirection-strings.php:399
993
  msgid "Log deleted"
994
  msgstr "Logginlägg raderades"
995
 
996
- #: redirection-strings.php:400
997
  msgid "Settings saved"
998
  msgstr "Inställning sparad"
999
 
1000
- #: redirection-strings.php:401
1001
  msgid "Group saved"
1002
  msgstr "Grupp sparad"
1003
 
1004
- #: redirection-strings.php:85
1005
  msgid "Are you sure you want to delete this item?"
1006
  msgid_plural "Are you sure you want to delete these items?"
1007
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
1008
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
1009
 
1010
- #: redirection-strings.php:371
1011
  msgid "pass"
1012
  msgstr "lösen"
1013
 
1014
- #: redirection-strings.php:331
1015
  msgid "All groups"
1016
  msgstr "Alla grupper"
1017
 
1018
- #: redirection-strings.php:296
1019
  msgid "301 - Moved Permanently"
1020
  msgstr "301 - Flyttad permanent"
1021
 
1022
- #: redirection-strings.php:297
1023
  msgid "302 - Found"
1024
  msgstr "302 - Hittad"
1025
 
1026
- #: redirection-strings.php:300
1027
  msgid "307 - Temporary Redirect"
1028
  msgstr "307 - Tillfällig omdirigering"
1029
 
1030
- #: redirection-strings.php:301
1031
  msgid "308 - Permanent Redirect"
1032
  msgstr "308 - Permanent omdirigering"
1033
 
1034
- #: redirection-strings.php:303
1035
  msgid "401 - Unauthorized"
1036
  msgstr "401 - Obehörig"
1037
 
1038
- #: redirection-strings.php:305
1039
  msgid "404 - Not Found"
1040
  msgstr "404 - Hittades inte"
1041
 
1042
- #: redirection-strings.php:308
1043
  msgid "Title"
1044
  msgstr "Titel"
1045
 
1046
- #: redirection-strings.php:311
1047
  msgid "When matched"
1048
  msgstr "När matchning sker"
1049
 
1050
- #: redirection-strings.php:312
1051
  msgid "with HTTP code"
1052
  msgstr "med HTTP-kod"
1053
 
1054
- #: redirection-strings.php:321
1055
  msgid "Show advanced options"
1056
  msgstr "Visa avancerande alternativ"
1057
 
1058
- #: redirection-strings.php:274
1059
  msgid "Matched Target"
1060
  msgstr "Matchande mål"
1061
 
1062
- #: redirection-strings.php:276
1063
  msgid "Unmatched Target"
1064
  msgstr "Ej matchande mål"
1065
 
1066
- #: redirection-strings.php:57 redirection-strings.php:58
1067
  msgid "Saving..."
1068
  msgstr "Sparar..."
1069
 
1070
- #: redirection-strings.php:55
1071
  msgid "View notice"
1072
  msgstr "Visa meddelande"
1073
 
1074
- #: models/redirect.php:560
1075
  msgid "Invalid source URL"
1076
  msgstr "Ogiltig URL-källa"
1077
 
1078
- #: models/redirect.php:488
1079
  msgid "Invalid redirect action"
1080
  msgstr "Ogiltig omdirigeringsåtgärd"
1081
 
1082
- #: models/redirect.php:482
1083
  msgid "Invalid redirect matcher"
1084
  msgstr "Ogiltig omdirigeringsmatchning"
1085
 
@@ -1087,456 +1359,460 @@ msgstr "Ogiltig omdirigeringsmatchning"
1087
  msgid "Unable to add new redirect"
1088
  msgstr "Det går inte att lägga till en ny omdirigering"
1089
 
1090
- #: redirection-strings.php:12 redirection-strings.php:116
1091
  msgid "Something went wrong 🙁"
1092
  msgstr "Något gick fel 🙁"
1093
 
1094
- #: redirection-strings.php:11
1095
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1096
  msgstr "Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."
1097
 
1098
  #. translators: maximum number of log entries
1099
- #: redirection-admin.php:193
1100
  msgid "Log entries (%d max)"
1101
  msgstr "Antal logginlägg per sida (max %d)"
1102
 
1103
- #: redirection-strings.php:74
1104
  msgid "Search by IP"
1105
  msgstr "Sök via IP"
1106
 
1107
- #: redirection-strings.php:69
1108
  msgid "Select bulk action"
1109
  msgstr "Välj massåtgärd"
1110
 
1111
- #: redirection-strings.php:70
1112
  msgid "Bulk Actions"
1113
  msgstr "Massåtgärd"
1114
 
1115
- #: redirection-strings.php:71
1116
  msgid "Apply"
1117
  msgstr "Tillämpa"
1118
 
1119
- #: redirection-strings.php:62
1120
  msgid "First page"
1121
  msgstr "Första sidan"
1122
 
1123
- #: redirection-strings.php:63
1124
  msgid "Prev page"
1125
  msgstr "Föregående sida"
1126
 
1127
- #: redirection-strings.php:64
1128
  msgid "Current Page"
1129
  msgstr "Aktuell sida"
1130
 
1131
- #: redirection-strings.php:65
1132
  msgid "of %(page)s"
1133
  msgstr "av %(sidor)"
1134
 
1135
- #: redirection-strings.php:66
1136
  msgid "Next page"
1137
  msgstr "Nästa sida"
1138
 
1139
- #: redirection-strings.php:67
1140
  msgid "Last page"
1141
  msgstr "Sista sidan"
1142
 
1143
- #: redirection-strings.php:68
1144
  msgid "%s item"
1145
  msgid_plural "%s items"
1146
  msgstr[0] "%s objekt"
1147
  msgstr[1] "%s objekt"
1148
 
1149
- #: redirection-strings.php:61
1150
  msgid "Select All"
1151
  msgstr "Välj allt"
1152
 
1153
- #: redirection-strings.php:73
1154
  msgid "Sorry, something went wrong loading the data - please try again"
1155
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
1156
 
1157
- #: redirection-strings.php:72
1158
  msgid "No results"
1159
  msgstr "Inga resultat"
1160
 
1161
- #: redirection-strings.php:159
1162
  msgid "Delete the logs - are you sure?"
1163
  msgstr "Är du säker på att du vill radera loggarna?"
1164
 
1165
- #: redirection-strings.php:160
1166
  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."
1167
  msgstr "När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."
1168
 
1169
- #: redirection-strings.php:161
1170
  msgid "Yes! Delete the logs"
1171
  msgstr "Ja! Radera loggarna"
1172
 
1173
- #: redirection-strings.php:162
1174
  msgid "No! Don't delete the logs"
1175
  msgstr "Nej! Radera inte loggarna"
1176
 
1177
- #: redirection-strings.php:388
1178
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1179
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
1180
 
1181
- #: redirection-strings.php:387 redirection-strings.php:389
1182
  msgid "Newsletter"
1183
  msgstr "Nyhetsbrev"
1184
 
1185
- #: redirection-strings.php:390
1186
  msgid "Want to keep up to date with changes to Redirection?"
1187
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
1188
 
1189
- #: redirection-strings.php:391
1190
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1191
  msgstr "Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."
1192
 
1193
- #: redirection-strings.php:392
1194
  msgid "Your email address:"
1195
  msgstr "Din e-postadress:"
1196
 
1197
- #: redirection-strings.php:219
1198
  msgid "You've supported this plugin - thank you!"
1199
  msgstr "Du har stöttat detta tillägg - tack!"
1200
 
1201
- #: redirection-strings.php:222
1202
  msgid "You get useful software and I get to carry on making it better."
1203
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
1204
 
1205
- #: redirection-strings.php:230 redirection-strings.php:235
1206
  msgid "Forever"
1207
  msgstr "För evigt"
1208
 
1209
- #: redirection-strings.php:211
1210
  msgid "Delete the plugin - are you sure?"
1211
  msgstr "Radera tillägget - är du verkligen säker på det?"
1212
 
1213
- #: redirection-strings.php:212
1214
  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."
1215
  msgstr "Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."
1216
 
1217
- #: redirection-strings.php:213
1218
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1219
  msgstr "När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."
1220
 
1221
- #: redirection-strings.php:214
1222
  msgid "Yes! Delete the plugin"
1223
  msgstr "Ja! Radera detta tillägg"
1224
 
1225
- #: redirection-strings.php:215
1226
  msgid "No! Don't delete the plugin"
1227
  msgstr "Nej! Radera inte detta tillägg"
1228
 
1229
- #. Author of the plugin/theme
1230
  msgid "John Godley"
1231
  msgstr "John Godley"
1232
 
1233
- #. Description of the plugin/theme
1234
  msgid "Manage all your 301 redirects and monitor 404 errors"
1235
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
1236
 
1237
- #: redirection-strings.php:221
1238
  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}}."
1239
  msgstr "Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."
1240
 
1241
- #: redirection-admin.php:310
1242
  msgid "Redirection Support"
1243
  msgstr "Support för Redirection"
1244
 
1245
- #: redirection-strings.php:54 redirection-strings.php:111
1246
  msgid "Support"
1247
  msgstr "Support"
1248
 
1249
- #: redirection-strings.php:51
1250
  msgid "404s"
1251
  msgstr "404:or"
1252
 
1253
- #: redirection-strings.php:50
1254
  msgid "Log"
1255
  msgstr "Logg"
1256
 
1257
- #: redirection-strings.php:217
1258
  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."
1259
  msgstr "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."
1260
 
1261
- #: redirection-strings.php:216
1262
  msgid "Delete Redirection"
1263
  msgstr "Ta bort Redirection"
1264
 
1265
- #: redirection-strings.php:129
1266
  msgid "Upload"
1267
  msgstr "Ladda upp"
1268
 
1269
- #: redirection-strings.php:140
1270
  msgid "Import"
1271
  msgstr "Importera"
1272
 
1273
- #: redirection-strings.php:269
1274
  msgid "Update"
1275
  msgstr "Uppdatera"
1276
 
1277
- #: redirection-strings.php:258
1278
  msgid "Auto-generate URL"
1279
  msgstr "Autogenerera URL"
1280
 
1281
- #: redirection-strings.php:257
1282
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1283
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
1284
 
1285
- #: redirection-strings.php:256
1286
  msgid "RSS Token"
1287
  msgstr "RSS-nyckel"
1288
 
1289
- #: redirection-strings.php:250
1290
  msgid "404 Logs"
1291
  msgstr "404-loggar"
1292
 
1293
- #: redirection-strings.php:249 redirection-strings.php:251
1294
  msgid "(time to keep logs for)"
1295
  msgstr "(hur länge loggar ska sparas)"
1296
 
1297
- #: redirection-strings.php:248
1298
  msgid "Redirect Logs"
1299
  msgstr "Redirection-loggar"
1300
 
1301
- #: redirection-strings.php:247
1302
  msgid "I'm a nice person and I have helped support the author of this plugin"
1303
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
1304
 
1305
- #: redirection-strings.php:224
1306
  msgid "Plugin Support"
1307
  msgstr "Support för tillägg"
1308
 
1309
- #: redirection-strings.php:53 redirection-strings.php:110
1310
  msgid "Options"
1311
  msgstr "Alternativ"
1312
 
1313
- #: redirection-strings.php:229
1314
  msgid "Two months"
1315
  msgstr "Två månader"
1316
 
1317
- #: redirection-strings.php:228
1318
  msgid "A month"
1319
  msgstr "En månad"
1320
 
1321
- #: redirection-strings.php:227 redirection-strings.php:234
1322
  msgid "A week"
1323
  msgstr "En vecka"
1324
 
1325
- #: redirection-strings.php:226 redirection-strings.php:233
1326
  msgid "A day"
1327
  msgstr "En dag"
1328
 
1329
- #: redirection-strings.php:225
1330
  msgid "No logs"
1331
  msgstr "Inga loggar"
1332
 
1333
- #: redirection-strings.php:158 redirection-strings.php:194
1334
- #: redirection-strings.php:199
1335
  msgid "Delete All"
1336
  msgstr "Radera alla"
1337
 
1338
- #: redirection-strings.php:94
1339
  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."
1340
  msgstr "Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."
1341
 
1342
- #: redirection-strings.php:93
1343
  msgid "Add Group"
1344
  msgstr "Lägg till grupp"
1345
 
1346
- #: redirection-strings.php:75
1347
  msgid "Search"
1348
  msgstr "Sök"
1349
 
1350
- #: redirection-strings.php:49 redirection-strings.php:106
1351
  msgid "Groups"
1352
  msgstr "Grupper"
1353
 
1354
- #: redirection-strings.php:14 redirection-strings.php:103
1355
- #: redirection-strings.php:317
1356
  msgid "Save"
1357
  msgstr "Spara"
1358
 
1359
- #: redirection-strings.php:60 redirection-strings.php:313
1360
  msgid "Group"
1361
  msgstr "Grupp"
1362
 
1363
- #: redirection-strings.php:310
1364
  msgid "Match"
1365
  msgstr "Matcha"
1366
 
1367
- #: redirection-strings.php:332
1368
  msgid "Add new redirection"
1369
  msgstr "Lägg till ny omdirigering"
1370
 
1371
- #: redirection-strings.php:104 redirection-strings.php:130
1372
- #: redirection-strings.php:319
1373
  msgid "Cancel"
1374
  msgstr "Avbryt"
1375
 
1376
- #: redirection-strings.php:154
1377
  msgid "Download"
1378
  msgstr "Hämta"
1379
 
1380
- #. Plugin Name of the plugin/theme
 
1381
  msgid "Redirection"
1382
  msgstr "Redirection"
1383
 
1384
- #: redirection-admin.php:158
1385
  msgid "Settings"
1386
  msgstr "Inställningar"
1387
 
1388
- #: redirection-strings.php:294
1389
  msgid "Error (404)"
1390
  msgstr "Fel (404)"
1391
 
1392
- #: redirection-strings.php:293
1393
  msgid "Pass-through"
1394
  msgstr "Passera"
1395
 
1396
- #: redirection-strings.php:292
1397
  msgid "Redirect to random post"
1398
  msgstr "Omdirigering till slumpmässigt inlägg"
1399
 
1400
- #: redirection-strings.php:291
1401
  msgid "Redirect to URL"
1402
  msgstr "Omdirigera till URL"
1403
 
1404
- #: models/redirect.php:550
1405
  msgid "Invalid group when creating redirect"
1406
  msgstr "Gruppen är ogiltig när omdirigering skapas"
1407
 
1408
- #: redirection-strings.php:167 redirection-strings.php:175
1409
- #: redirection-strings.php:180 redirection-strings.php:354
1410
  msgid "IP"
1411
  msgstr "IP"
1412
 
1413
- #: redirection-strings.php:165 redirection-strings.php:173
1414
- #: redirection-strings.php:178 redirection-strings.php:318
 
1415
  msgid "Source URL"
1416
  msgstr "URL-källa"
1417
 
1418
- #: redirection-strings.php:164 redirection-strings.php:177
1419
  msgid "Date"
1420
  msgstr "Datum"
1421
 
1422
- #: redirection-strings.php:190 redirection-strings.php:203
1423
- #: redirection-strings.php:207 redirection-strings.php:333
1424
  msgid "Add Redirect"
1425
  msgstr "Lägg till omdirigering"
1426
 
1427
- #: redirection-strings.php:92
1428
  msgid "All modules"
1429
  msgstr "Alla moduler"
1430
 
1431
- #: redirection-strings.php:98
1432
  msgid "View Redirects"
1433
  msgstr "Visa omdirigeringar"
1434
 
1435
- #: redirection-strings.php:88 redirection-strings.php:102
1436
  msgid "Module"
1437
  msgstr "Modul"
1438
 
1439
- #: redirection-strings.php:48 redirection-strings.php:87
1440
  msgid "Redirects"
1441
  msgstr "Omdirigering"
1442
 
1443
- #: redirection-strings.php:86 redirection-strings.php:95
1444
- #: redirection-strings.php:101
1445
  msgid "Name"
1446
  msgstr "Namn"
1447
 
1448
- #: redirection-strings.php:59
1449
  msgid "Filter"
1450
  msgstr "Filtrera"
1451
 
1452
- #: redirection-strings.php:330
1453
  msgid "Reset hits"
1454
  msgstr "Nollställ träffar"
1455
 
1456
- #: redirection-strings.php:90 redirection-strings.php:100
1457
- #: redirection-strings.php:328 redirection-strings.php:370
1458
  msgid "Enable"
1459
  msgstr "Aktivera"
1460
 
1461
- #: redirection-strings.php:91 redirection-strings.php:99
1462
- #: redirection-strings.php:329 redirection-strings.php:368
1463
  msgid "Disable"
1464
  msgstr "Inaktivera"
1465
 
1466
- #: redirection-strings.php:89 redirection-strings.php:97
1467
- #: redirection-strings.php:168 redirection-strings.php:169
1468
- #: redirection-strings.php:181 redirection-strings.php:184
1469
- #: redirection-strings.php:206 redirection-strings.php:218
1470
- #: redirection-strings.php:327 redirection-strings.php:367
1471
  msgid "Delete"
1472
  msgstr "Radera"
1473
 
1474
- #: redirection-strings.php:96 redirection-strings.php:366
1475
  msgid "Edit"
1476
  msgstr "Redigera"
1477
 
1478
- #: redirection-strings.php:326
1479
  msgid "Last Access"
1480
  msgstr "Senast använd"
1481
 
1482
- #: redirection-strings.php:325
1483
  msgid "Hits"
1484
  msgstr "Träffar"
1485
 
1486
- #: redirection-strings.php:323 redirection-strings.php:383
1487
  msgid "URL"
1488
  msgstr "URL"
1489
 
1490
- #: redirection-strings.php:322
1491
  msgid "Type"
1492
  msgstr "Typ"
1493
 
1494
- #: models/database.php:139
1495
  msgid "Modified Posts"
1496
  msgstr "Modifierade inlägg"
1497
 
1498
- #: models/database.php:138 models/group.php:148 redirection-strings.php:105
 
1499
  msgid "Redirections"
1500
  msgstr "Omdirigeringar"
1501
 
1502
- #: redirection-strings.php:334
1503
  msgid "User Agent"
1504
  msgstr "Användaragent"
1505
 
1506
- #: matches/user-agent.php:10 redirection-strings.php:284
1507
  msgid "URL and user agent"
1508
  msgstr "URL och användaragent"
1509
 
1510
- #: redirection-strings.php:278
 
1511
  msgid "Target URL"
1512
  msgstr "Mål-URL"
1513
 
1514
- #: matches/url.php:7 redirection-strings.php:280
1515
  msgid "URL only"
1516
  msgstr "Endast URL"
1517
 
1518
- #: redirection-strings.php:316 redirection-strings.php:340
1519
- #: redirection-strings.php:344 redirection-strings.php:352
1520
- #: redirection-strings.php:361
1521
  msgid "Regex"
1522
  msgstr "Reguljärt uttryck"
1523
 
1524
- #: redirection-strings.php:359
1525
  msgid "Referrer"
1526
  msgstr "Hänvisningsadress"
1527
 
1528
- #: matches/referrer.php:10 redirection-strings.php:283
1529
  msgid "URL and referrer"
1530
  msgstr "URL och hänvisande webbplats"
1531
 
1532
- #: redirection-strings.php:272
1533
  msgid "Logged Out"
1534
  msgstr "Utloggad"
1535
 
1536
- #: redirection-strings.php:270
1537
  msgid "Logged In"
1538
  msgstr "Inloggad"
1539
 
1540
- #: matches/login.php:8 redirection-strings.php:281
1541
  msgid "URL and login status"
1542
  msgstr "URL och inloggnings-status"
11
  "Language: sv_SE\n"
12
  "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:258
15
+ msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:257
19
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:256
23
+ msgid "Redirection database needs updating"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:255
27
+ msgid "Update Required"
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:234
31
+ msgid "I need some support!"
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:231
35
+ msgid "Finish Setup"
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:230
39
+ msgid "Checking your REST API"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:229
43
+ msgid "Retry"
44
+ msgstr ""
45
+
46
+ #: redirection-strings.php:228
47
+ 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."
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:227
51
+ 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}}."
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:226
55
+ msgid "Some other plugin that blocks the REST API"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:225
59
+ msgid "Caching software, for example Cloudflare"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:224
63
+ msgid "A server firewall or other server configuration"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:223
67
+ msgid "A security plugin"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:222
71
+ 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:"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:220 redirection-strings.php:232
75
+ msgid "Go back"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:219
79
+ msgid "Continue Setup"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:217
83
+ 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)."
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:216
87
+ msgid "Store IP information for redirects and 404 errors."
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:214
91
+ 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."
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:213
95
+ msgid "Keep a log of all redirects and 404 errors."
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:212 redirection-strings.php:215
99
+ #: redirection-strings.php:218
100
+ msgid "{{link}}Read more about this.{{/link}}"
101
+ msgstr ""
102
+
103
+ #: redirection-strings.php:211
104
+ msgid "If you change the permalink in a post or page then Redirection can automatically create a redirect for you."
105
+ msgstr ""
106
+
107
+ #: redirection-strings.php:210
108
+ msgid "Monitor permalink changes in WordPress posts and pages"
109
+ msgstr ""
110
+
111
+ #: redirection-strings.php:209
112
+ msgid "These are some options you may want to enable now. They can be changed at any time."
113
+ msgstr ""
114
+
115
+ #: redirection-strings.php:208
116
+ msgid "Basic Setup"
117
+ msgstr ""
118
+
119
+ #: redirection-strings.php:207
120
+ msgid "Start Setup"
121
+ msgstr ""
122
+
123
+ #: redirection-strings.php:206
124
+ msgid "When ready please press the button to continue."
125
+ msgstr ""
126
+
127
+ #: redirection-strings.php:205
128
+ msgid "First you will be asked a few questions, and then Redirection will set up your database."
129
+ msgstr ""
130
+
131
+ #: redirection-strings.php:204
132
+ msgid "What's next?"
133
+ msgstr ""
134
+
135
+ #: redirection-strings.php:203
136
+ msgid "Check a URL is being redirected"
137
+ msgstr ""
138
+
139
+ #: redirection-strings.php:202
140
+ msgid "More powerful URL matching, including {{regular}}regular expressions{{/regular}}, and {{other}}other conditions{{/other}}"
141
+ msgstr ""
142
+
143
+ #: redirection-strings.php:201
144
+ msgid "{{link}}Import{{/link}} from .htaccess, CSV, and a variety of other plugins"
145
+ msgstr ""
146
+
147
+ #: redirection-strings.php:200
148
+ msgid "{{link}}Monitor 404 errors{{/link}}, get detailed information about the visitor, and fix any problems"
149
+ msgstr ""
150
+
151
+ #: redirection-strings.php:199
152
+ msgid "Some features you may find useful are"
153
+ msgstr ""
154
+
155
+ #: redirection-strings.php:198
156
+ msgid "Full documentation can be found on the {{link}}Redirection website.{{/link}}"
157
+ msgstr ""
158
+
159
+ #: redirection-strings.php:197
160
+ msgid "That's all there is to it - you are now redirecting!"
161
+ msgstr ""
162
+
163
+ #: redirection-strings.php:196
164
+ msgid "The target URL is the new URL"
165
+ msgstr ""
166
+
167
+ #: redirection-strings.php:194
168
+ msgid "The source URL is your old or original URL"
169
+ msgstr ""
170
+
171
+ #: redirection-strings.php:192
172
+ msgid "A simple redirect involves setting a {{strong}}source URL{{/strong}} (the old URL) and a {{strong}}target URL{{/strong}} (the new URL):"
173
+ msgstr ""
174
+
175
+ #: redirection-strings.php:191
176
+ msgid "How do I use this plugin?"
177
+ msgstr ""
178
+
179
+ #: redirection-strings.php:190
180
+ msgid "Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects."
181
+ msgstr ""
182
+
183
+ #: redirection-strings.php:189
184
+ 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."
185
+ msgstr ""
186
+
187
+ #: redirection-strings.php:188
188
+ msgid "Welcome to Redirection 🚀🎉"
189
+ msgstr ""
190
+
191
+ #: redirection-strings.php:161
192
+ msgid "This will redirect everything, including the login pages. Please be sure you want to do this."
193
+ msgstr ""
194
+
195
+ #: redirection-strings.php:160
196
+ 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}}"
197
+ msgstr ""
198
+
199
+ #: redirection-strings.php:159
200
+ msgid "Remember to enable the \"regex\" checkbox if this is a regular expression."
201
+ msgstr ""
202
+
203
+ #: redirection-strings.php:158
204
+ msgid "The source URL should probably start with a {{code}}/{{/code}}"
205
+ msgstr ""
206
+
207
+ #: redirection-strings.php:157
208
+ msgid "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}."
209
+ msgstr ""
210
+
211
+ #: redirection-strings.php:156
212
+ msgid "Anchor values are not sent to the server and cannot be redirected."
213
+ msgstr ""
214
+
215
+ #: redirection-strings.php:49
216
+ msgid "{{code}}%(status)d{{/code}} to {{code}}%(target)s{{/code}}"
217
+ msgstr ""
218
+
219
+ #: redirection-strings.php:14
220
+ msgid "Finished! 🎉"
221
+ msgstr ""
222
+
223
+ #: redirection-strings.php:13
224
+ msgid "Progress: %(complete)d$"
225
+ msgstr ""
226
+
227
+ #: redirection-strings.php:12
228
+ msgid "Leaving before the process has completed may cause problems."
229
+ msgstr ""
230
+
231
+ #: redirection-strings.php:11
232
+ msgid "Setting up Redirection"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:10
236
+ msgid "Upgrading Redirection"
237
+ msgstr ""
238
+
239
+ #: redirection-strings.php:9
240
+ msgid "Please remain on this page until complete."
241
+ msgstr ""
242
+
243
+ #: redirection-strings.php:8
244
+ msgid "If you want to {{support}}ask for support{{/support}} please include these details:"
245
+ msgstr ""
246
+
247
+ #: redirection-strings.php:7
248
+ msgid "Stop upgrade"
249
+ msgstr ""
250
+
251
+ #: redirection-strings.php:6
252
+ msgid "Skip this stage"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:5
256
+ msgid "Try again"
257
+ msgstr ""
258
 
259
+ #: redirection-strings.php:4
260
+ msgid "Database problem"
 
261
  msgstr ""
262
 
263
+ #: redirection-admin.php:421
264
+ msgid "Please enable JavaScript"
265
+ msgstr ""
266
+
267
+ #: redirection-admin.php:146
268
+ msgid "Please upgrade your database"
269
+ msgstr ""
270
+
271
+ #: redirection-admin.php:137 redirection-strings.php:259
272
+ msgid "Upgrade Database"
273
+ msgstr ""
274
+
275
+ #. translators: 1: URL to plugin page 2: version number
276
+ #: redirection-admin.php:77
277
+ msgid "Redirection needs to be <a href=\"%1$1s\">updated to version %2$2s</a>."
278
+ msgstr ""
279
+
280
+ #. translators: 1: URL to plugin page
281
+ #: redirection-admin.php:74
282
+ msgid "Please complete your <a href=\"%s\">Redirection setup</a> to activate the plugin."
283
+ msgstr ""
284
+
285
+ #. translators: version number
286
+ #: api/api-plugin.php:81
287
+ msgid "Your database does not need updating to %s."
288
+ msgstr ""
289
+
290
+ #. translators: 1: SQL string
291
+ #: database/database-upgrader.php:74
292
+ msgid "Failed to perform query \"%s\""
293
+ msgstr ""
294
+
295
+ #. translators: 1: table name
296
+ #: database/schema/latest.php:101
297
+ msgid "Table \"%s\" is missing"
298
+ msgstr ""
299
+
300
+ #: database/schema/latest.php:10
301
+ msgid "Create basic data"
302
+ msgstr ""
303
+
304
+ #: database/schema/latest.php:9
305
+ msgid "Install Redirection tables"
306
+ msgstr ""
307
+
308
+ #. translators: 1: Site URL, 2: Home URL
309
+ #: models/fixer.php:64
310
+ msgid "Site and home URL are inconsistent. Please correct from your Settings > General page: %1$1s is not %2$2s"
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:148
314
  msgid "Please do not try and redirect all your 404s - this is not a good thing to do."
315
  msgstr ""
316
 
317
+ #: redirection-strings.php:147
318
  msgid "Only the 404 page type is currently supported."
319
  msgstr ""
320
 
321
+ #: redirection-strings.php:146
322
  msgid "Page Type"
323
  msgstr "Sidtyp"
324
 
325
+ #: redirection-strings.php:145
326
  msgid "Enter IP addresses (one per line)"
327
  msgstr "Ange IP-adresser (en per rad)"
328
 
329
+ #: redirection-strings.php:111
330
  msgid "Describe the purpose of this redirect (optional)"
331
  msgstr "Beskriv syftet med denna omdirigering (valfritt)"
332
 
333
+ #: redirection-strings.php:109
334
  msgid "418 - I'm a teapot"
335
  msgstr "418 – Jag är en tekanna"
336
 
337
+ #: redirection-strings.php:106
338
  msgid "403 - Forbidden"
339
  msgstr "403 – Förbjuden"
340
 
341
+ #: redirection-strings.php:104
342
  msgid "400 - Bad Request"
343
  msgstr ""
344
 
345
+ #: redirection-strings.php:101
346
  msgid "304 - Not Modified"
347
  msgstr "304 – Inte modifierad"
348
 
349
+ #: redirection-strings.php:100
350
  msgid "303 - See Other"
351
  msgstr ""
352
 
353
+ #: redirection-strings.php:97
354
  msgid "Do nothing (ignore)"
355
  msgstr "Gör ingenting (ignorera)"
356
 
357
+ #: redirection-strings.php:75 redirection-strings.php:79
358
  msgid "Target URL when not matched (empty to ignore)"
359
  msgstr "URL-mål när den inte matchas (tom för att ignorera)"
360
 
361
+ #: redirection-strings.php:73 redirection-strings.php:77
362
  msgid "Target URL when matched (empty to ignore)"
363
  msgstr "URL-mål vid matchning (tom för att ignorera)"
364
 
365
+ #: redirection-strings.php:351 redirection-strings.php:356
366
  msgid "Show All"
367
  msgstr "Visa alla"
368
 
369
+ #: redirection-strings.php:348
370
  msgid "Delete all logs for these entries"
371
  msgstr ""
372
 
373
+ #: redirection-strings.php:347 redirection-strings.php:360
374
  msgid "Delete all logs for this entry"
375
  msgstr ""
376
 
377
+ #: redirection-strings.php:346
378
  msgid "Delete Log Entries"
379
  msgstr ""
380
 
381
+ #: redirection-strings.php:344
382
  msgid "Group by IP"
383
  msgstr "Grupp efter IP"
384
 
385
+ #: redirection-strings.php:343
386
  msgid "Group by URL"
387
  msgstr "Grupp efter URL"
388
 
389
+ #: redirection-strings.php:342
390
  msgid "No grouping"
391
  msgstr "Ingen gruppering"
392
 
393
+ #: redirection-strings.php:341 redirection-strings.php:357
394
  msgid "Ignore URL"
395
  msgstr "Ignorera URL"
396
 
397
+ #: redirection-strings.php:338 redirection-strings.php:353
398
  msgid "Block IP"
399
  msgstr "Blockera IP"
400
 
401
+ #: redirection-strings.php:337 redirection-strings.php:340
402
+ #: redirection-strings.php:350 redirection-strings.php:355
403
  msgid "Redirect All"
404
  msgstr "Omdirigera alla"
405
 
406
+ #: redirection-strings.php:329 redirection-strings.php:331
407
  msgid "Count"
408
  msgstr ""
409
 
410
+ #: matches/page.php:9 redirection-strings.php:92
411
  msgid "URL and WordPress page type"
412
  msgstr ""
413
 
414
+ #: matches/ip.php:9 redirection-strings.php:88
415
  msgid "URL and IP"
416
  msgstr "URL och IP"
417
 
418
+ #: redirection-strings.php:467
419
  msgid "Problem"
420
  msgstr "Problem"
421
 
422
+ #: redirection-strings.php:466
423
  msgid "Good"
424
  msgstr "Bra"
425
 
426
+ #: redirection-strings.php:456
427
  msgid "Check"
428
  msgstr "Kontrollera"
429
 
430
+ #: redirection-strings.php:440
431
  msgid "Check Redirect"
432
  msgstr "Kontrollera omdirigering"
433
 
434
+ #: redirection-strings.php:58
435
  msgid "Check redirect for: {{code}}%s{{/code}}"
436
  msgstr "Kontrollera omdirigering för: {{code}}%s{{/code}}"
437
 
438
+ #: redirection-strings.php:55
439
  msgid "What does this mean?"
440
  msgstr "Vad betyder detta?"
441
 
442
+ #: redirection-strings.php:54
443
  msgid "Not using Redirection"
444
  msgstr "Använder inte omdirigering"
445
 
446
+ #: redirection-strings.php:53
447
  msgid "Using Redirection"
448
  msgstr "Använder omdirigering"
449
 
450
+ #: redirection-strings.php:50
451
  msgid "Found"
452
  msgstr "Hittad"
453
 
454
+ #: redirection-strings.php:51
455
  msgid "{{code}}%(status)d{{/code}} to {{code}}%(url)s{{/code}}"
456
  msgstr ""
457
 
458
+ #: redirection-strings.php:48
459
  msgid "Expected"
460
  msgstr "Förväntad"
461
 
462
+ #: redirection-strings.php:56
463
  msgid "Error"
464
  msgstr "Fel"
465
 
466
+ #: redirection-strings.php:455
467
  msgid "Enter full URL, including http:// or https://"
468
  msgstr "Ange fullständig URL, inklusive http:// eller https://"
469
 
470
+ #: redirection-strings.php:453
471
  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."
472
  msgstr ""
473
 
474
+ #: redirection-strings.php:452
475
  msgid "Redirect Tester"
476
  msgstr "Omdirigeringstestare"
477
 
478
+ #: redirection-strings.php:451
479
  msgid "Target"
480
  msgstr "Mål"
481
 
482
+ #: redirection-strings.php:450
483
  msgid "URL is not being redirected with Redirection"
484
  msgstr "URL omdirigeras inte med Redirection"
485
 
486
+ #: redirection-strings.php:449
487
  msgid "URL is being redirected with Redirection"
488
  msgstr "URL omdirigeras med Redirection"
489
 
490
+ #: redirection-strings.php:448 redirection-strings.php:457
491
  msgid "Unable to load details"
492
  msgstr "Det gick inte att ladda detaljer"
493
 
494
+ #: redirection-strings.php:155
495
  msgid "Enter server URL to match against"
496
  msgstr "Ange server-URL för att matcha mot"
497
 
498
+ #: redirection-strings.php:154
499
  msgid "Server"
500
  msgstr "Server"
501
 
502
+ #: redirection-strings.php:153
503
  msgid "Enter role or capability value"
504
  msgstr "Ange roll eller behörighetsvärde"
505
 
506
+ #: redirection-strings.php:152
507
  msgid "Role"
508
  msgstr "Roll"
509
 
510
+ #: redirection-strings.php:150
511
  msgid "Match against this browser referrer text"
512
  msgstr ""
513
 
514
+ #: redirection-strings.php:125
515
  msgid "Match against this browser user agent"
516
  msgstr ""
517
 
518
+ #: redirection-strings.php:117
519
  msgid "The relative URL you want to redirect from"
520
  msgstr "Den relativa URL du vill omdirigera från"
521
 
522
+ #: redirection-strings.php:71 redirection-strings.php:81
523
  msgid "The target URL you want to redirect to if matched"
524
  msgstr "URL-målet du vill omdirigera till om den matchas"
525
 
526
+ #: redirection-strings.php:419
527
  msgid "(beta)"
528
  msgstr "(beta)"
529
 
530
+ #: redirection-strings.php:418
531
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
532
  msgstr "Tvinga en omdirigering från HTTP till HTTPS. Se till att din HTTPS fungerar innan du aktiverar"
533
 
534
+ #: redirection-strings.php:417
535
  msgid "Force HTTPS"
536
  msgstr "Tvinga HTTPS"
537
 
538
+ #: redirection-strings.php:409
539
  msgid "GDPR / Privacy information"
540
  msgstr "GDPR/integritetsinformation"
541
 
542
+ #: redirection-strings.php:276
543
  msgid "Add New"
544
  msgstr "Lägg till ny"
545
 
546
+ #: redirection-strings.php:17
547
  msgid "Please logout and login again."
548
  msgstr "Logga ut och logga in igen."
549
 
550
+ #: matches/user-role.php:9 redirection-strings.php:84
551
  msgid "URL and role/capability"
552
  msgstr "URL och roll/behörighet"
553
 
554
+ #: matches/server.php:9 redirection-strings.php:89
555
  msgid "URL and server"
556
  msgstr "URL och server"
557
 
558
+ #: redirection-strings.php:396
559
  msgid "Relative /wp-json/"
560
  msgstr "Relativ /wp-json/"
561
 
562
+ #: redirection-strings.php:394
563
  msgid "Default /wp-json/"
564
  msgstr "Standard /wp-json/"
565
 
566
+ #: redirection-strings.php:24
567
  msgid "If you are unable to get anything working then Redirection may have difficulty communicating with your server. You can try manually changing this setting:"
568
  msgstr "Om du inte kan få något att fungera kan det hända att Redirection har svårt att kommunicera med din server. Du kan försöka ändra den här inställningen manuellt:"
569
 
570
+ #: models/fixer.php:68
571
  msgid "Site and home protocol"
572
  msgstr "Webbplats och hemprotokoll"
573
 
574
+ #: models/fixer.php:61
575
  msgid "Site and home are consistent"
576
  msgstr "Webbplats och hem är konsekventa"
577
 
578
+ #: redirection-strings.php:143
579
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
580
  msgstr ""
581
 
582
+ #: redirection-strings.php:141
583
  msgid "Accept Language"
584
  msgstr "Acceptera språk"
585
 
586
+ #: redirection-strings.php:139
587
  msgid "Header value"
588
  msgstr "Värde för sidhuvud"
589
 
590
+ #: redirection-strings.php:138
591
  msgid "Header name"
592
  msgstr "Namn på sidhuvud"
593
 
594
+ #: redirection-strings.php:137
595
  msgid "HTTP Header"
596
  msgstr "HTTP-sidhuvud"
597
 
598
+ #: redirection-strings.php:136
599
  msgid "WordPress filter name"
600
  msgstr "WordPress-filternamn"
601
 
602
+ #: redirection-strings.php:135
603
  msgid "Filter Name"
604
  msgstr "Filternamn"
605
 
606
+ #: redirection-strings.php:133
607
  msgid "Cookie value"
608
  msgstr "Cookie-värde"
609
 
610
+ #: redirection-strings.php:132
611
  msgid "Cookie name"
612
  msgstr "Cookie-namn"
613
 
614
+ #: redirection-strings.php:131
615
  msgid "Cookie"
616
  msgstr "Cookie"
617
 
618
+ #: redirection-strings.php:270
619
  msgid "clearing your cache."
620
  msgstr "rensa cacheminnet."
621
 
622
+ #: redirection-strings.php:269
623
  msgid "If you are using a caching system such as Cloudflare then please read this: "
624
  msgstr "Om du använder ett caching-system som Cloudflare, läs det här:"
625
 
626
+ #: matches/http-header.php:11 redirection-strings.php:90
627
  msgid "URL and HTTP header"
628
  msgstr "URL- och HTTP-sidhuvuden"
629
 
630
+ #: matches/custom-filter.php:9 redirection-strings.php:91
631
  msgid "URL and custom filter"
632
  msgstr "URL och anpassat filter"
633
 
634
+ #: matches/cookie.php:7 redirection-strings.php:87
635
  msgid "URL and cookie"
636
  msgstr "URL och cookie"
637
 
638
+ #: redirection-strings.php:473
639
  msgid "404 deleted"
640
  msgstr "404 borttagen"
641
 
642
+ #: redirection-strings.php:395
643
  msgid "Raw /index.php?rest_route=/"
644
  msgstr "Rå /index.php?rest_route=/"
645
 
646
+ #: redirection-strings.php:221 redirection-strings.php:422
647
  msgid "REST API"
648
  msgstr "REST API"
649
 
650
+ #: redirection-strings.php:423
651
  msgid "How Redirection uses the REST API - don't change unless necessary"
652
  msgstr "Hur Redirection använder REST API &ndash; ändra inte om inte nödvändigt"
653
 
654
+ #: redirection-strings.php:21
655
  msgid "WordPress returned an unexpected message. This could be caused by your REST API not working, or by another plugin or theme."
656
  msgstr "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."
657
 
658
+ #: redirection-strings.php:26
659
  msgid "Take a look at the {{link}}plugin status{{/link}}. It may be able to identify and \"magic fix\" the problem."
660
  msgstr "Ta en titt på {{link}tilläggsstatusen{{/ link}}. Det kan vara möjligt att identifiera och ”magiskt åtgärda” problemet."
661
 
662
+ #: redirection-strings.php:27
663
  msgid "{{link}}Redirection is unable to talk to your REST API{{/link}}. If you have disabled it then you will need to enable it."
664
  msgstr "{{link}}Redirection kan inte kommunicera med ditt REST API{{/link}}. Om du har inaktiverat det måste du aktivera det."
665
 
666
+ #: redirection-strings.php:28
667
  msgid "{{link}}Security software may be blocking Redirection{{/link}}. You will need to configure this to allow REST API requests."
668
  msgstr "{{link}}Säkerhetsprogram kan eventuellt blockera Redirection{{/link}}. Du måste konfigurera dessa för att tillåta REST API-förfrågningar."
669
 
670
+ #: redirection-strings.php:29
671
  msgid "{{link}}Caching software{{/link}}, in particular Cloudflare, can cache the wrong thing. Try clearing all your caches."
672
  msgstr "{{link}}Caching-program{{/link}}, i synnerhet Cloudflare, kan cacha fel sak. Försök att rensa all cache."
673
 
674
+ #: redirection-strings.php:30
675
  msgid "{{link}}Please temporarily disable other plugins!{{/link}} This fixes so many problems."
676
  msgstr "{{link}}Vänligen inaktivera andra tillägg tillfälligt!{{/link}} Detta fixar många problem."
677
 
678
+ #: redirection-strings.php:31
679
  msgid "None of the suggestions helped"
680
  msgstr "Inget av förslagen hjälpte"
681
 
682
+ #: redirection-admin.php:400
683
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
684
  msgstr "Vänligen läs <a href=\"https://redirection.me/support/problems/\">listan med kända problem</a>."
685
 
686
+ #: redirection-admin.php:394
687
  msgid "Unable to load Redirection ☹️"
688
  msgstr "Kunde inte ladda Redirection ☹️"
689
 
690
  #. translators: %s: URL of REST API
691
+ #: models/fixer.php:108
692
  msgid "WordPress REST API is working at %s"
693
  msgstr "WordPress REST API arbetar på %s"
694
 
695
+ #: models/fixer.php:104
696
  msgid "WordPress REST API"
697
  msgstr "WordPress REST API"
698
 
699
+ #: models/fixer.php:96
700
  msgid "REST API is not working so routes not checked"
701
  msgstr "REST API fungerar inte så flödena kontrolleras inte"
702
 
703
+ #: models/fixer.php:91
704
  msgid "Redirection routes are working"
705
  msgstr "Omdirigeringsflödena fungerar"
706
 
707
+ #: models/fixer.php:85
708
  msgid "Redirection does not appear in your REST API routes. Have you disabled it with a plugin?"
709
  msgstr "Redirection finns inte dina REST API-flöden. Har du inaktiverat det med ett tillägg?"
710
 
711
+ #: models/fixer.php:77
712
  msgid "Redirection routes"
713
  msgstr "Omdirigeringsflöden"
714
 
715
+ #: redirection-strings.php:20
716
  msgid "Your WordPress REST API has been disabled. You will need to enable it for Redirection to continue working"
717
  msgstr "Ditt WordPress REST API har inaktiverats. Du måste aktivera det för att Redirection ska fortsätta att fungera"
718
 
719
+ #. Author URI of the plugin
720
  msgid "https://johngodley.com"
721
  msgstr "https://johngodley.com"
722
 
723
+ #: redirection-strings.php:179
724
  msgid "Useragent Error"
725
  msgstr "Användaragentfel"
726
 
727
+ #: redirection-strings.php:181
728
  msgid "Unknown Useragent"
729
  msgstr "Okänd användaragent"
730
 
731
+ #: redirection-strings.php:182
732
  msgid "Device"
733
  msgstr "Enhet"
734
 
735
+ #: redirection-strings.php:183
736
  msgid "Operating System"
737
  msgstr "Operativsystem"
738
 
739
+ #: redirection-strings.php:184
740
  msgid "Browser"
741
  msgstr "Webbläsare"
742
 
743
+ #: redirection-strings.php:185
744
  msgid "Engine"
745
  msgstr "Sökmotor"
746
 
747
+ #: redirection-strings.php:186
748
  msgid "Useragent"
749
  msgstr "Useragent"
750
 
751
+ #: redirection-strings.php:52 redirection-strings.php:187
752
  msgid "Agent"
753
  msgstr "Agent"
754
 
755
+ #: redirection-strings.php:391
756
  msgid "No IP logging"
757
  msgstr "Ingen loggning av IP-nummer"
758
 
759
+ #: redirection-strings.php:392
760
  msgid "Full IP logging"
761
  msgstr "Fullständig loggning av IP-nummer"
762
 
763
+ #: redirection-strings.php:393
764
  msgid "Anonymize IP (mask last part)"
765
  msgstr "Anonymisera IP-nummer (maska sista delen)"
766
 
767
+ #: redirection-strings.php:401
768
  msgid "Monitor changes to %(type)s"
769
  msgstr "Övervaka ändringar till %(type)s"
770
 
771
+ #: redirection-strings.php:407
772
  msgid "IP Logging"
773
  msgstr "Läggning av IP-nummer"
774
 
775
+ #: redirection-strings.php:408
776
  msgid "(select IP logging level)"
777
  msgstr "(välj loggningsnivå för IP)"
778
 
779
+ #: redirection-strings.php:325 redirection-strings.php:352
780
+ #: redirection-strings.php:363
781
  msgid "Geo Info"
782
  msgstr "Geo-info"
783
 
784
+ #: redirection-strings.php:326 redirection-strings.php:364
785
  msgid "Agent Info"
786
  msgstr "Agentinfo"
787
 
788
+ #: redirection-strings.php:327 redirection-strings.php:365
789
  msgid "Filter by IP"
790
  msgstr "Filtrera på IP-nummer"
791
 
792
+ #: redirection-strings.php:321 redirection-strings.php:334
793
  msgid "Referrer / User Agent"
794
  msgstr "Hänvisare/Användaragent"
795
 
796
+ #: redirection-strings.php:37
797
  msgid "Geo IP Error"
798
  msgstr "Geo-IP-fel"
799
 
800
+ #: redirection-strings.php:38 redirection-strings.php:57
801
+ #: redirection-strings.php:180
802
  msgid "Something went wrong obtaining this information"
803
  msgstr "Något gick fel när denna information skulle hämtas"
804
 
805
+ #: redirection-strings.php:40
806
  msgid "This is an IP from a private network. This means it is located inside a home or business network and no more information can be displayed."
807
  msgstr "Detta är en IP från ett privat nätverk. Det betyder att det ligger i ett hem- eller företagsnätverk och ingen mer information kan visas."
808
 
809
+ #: redirection-strings.php:42
810
  msgid "No details are known for this address."
811
  msgstr "Det finns inga kända detaljer för denna adress."
812
 
813
+ #: redirection-strings.php:39 redirection-strings.php:41
814
+ #: redirection-strings.php:43
815
  msgid "Geo IP"
816
  msgstr "Geo IP"
817
 
818
+ #: redirection-strings.php:44
819
  msgid "City"
820
  msgstr "Stad"
821
 
822
+ #: redirection-strings.php:45
823
  msgid "Area"
824
  msgstr "Region"
825
 
826
+ #: redirection-strings.php:46
827
  msgid "Timezone"
828
  msgstr "Tidszon"
829
 
830
+ #: redirection-strings.php:47
831
  msgid "Geo Location"
832
  msgstr "Geo-plats"
833
 
834
+ #: redirection-strings.php:67
835
  msgid "Powered by {{link}}redirect.li{{/link}}"
836
  msgstr "Drivs av {{link}}redirect.li{{/link}}"
837
 
839
  msgid "Trash"
840
  msgstr "Släng"
841
 
842
+ #: redirection-admin.php:399
843
  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"
844
  msgstr "Observera att Redirection kräver att WordPress REST API ska vara aktiverat. Om du har inaktiverat det här kommer du inte kunna använda Redirection"
845
 
846
  #. translators: URL
847
+ #: redirection-admin.php:299
848
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
849
  msgstr "Fullständig dokumentation för Redirection finns på support-sidan <a href=\"%s\" target=\"_blank\">redirection.me</a>."
850
 
851
+ #. Plugin URI of the plugin
852
  msgid "https://redirection.me/"
853
  msgstr "https://redirection.me/"
854
 
855
+ #: redirection-strings.php:444
856
  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."
857
  msgstr "Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."
858
 
859
+ #: redirection-strings.php:445
860
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
861
  msgstr "Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."
862
 
863
+ #: redirection-strings.php:447
864
  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!"
865
  msgstr "Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"
866
 
867
+ #: redirection-strings.php:386
868
  msgid "Never cache"
869
  msgstr "Använd aldrig cache"
870
 
871
+ #: redirection-strings.php:387
872
  msgid "An hour"
873
  msgstr "En timma"
874
 
875
+ #: redirection-strings.php:420
876
  msgid "Redirect Cache"
877
  msgstr "Omdirigera cache"
878
 
879
+ #: redirection-strings.php:421
880
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
881
  msgstr "Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"
882
 
883
+ #: redirection-strings.php:292
884
  msgid "Are you sure you want to import from %s?"
885
  msgstr "Är du säker på att du vill importera från %s?"
886
 
887
+ #: redirection-strings.php:293
888
  msgid "Plugin Importers"
889
  msgstr "Tilläggsimporterare"
890
 
891
+ #: redirection-strings.php:294
892
  msgid "The following redirect plugins were detected on your site and can be imported from."
893
  msgstr "Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."
894
 
895
+ #: redirection-strings.php:277
896
  msgid "total = "
897
  msgstr "totalt ="
898
 
899
+ #: redirection-strings.php:278
900
  msgid "Import from %s"
901
  msgstr "Importera från %s"
902
 
 
 
 
 
 
 
 
 
 
903
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
904
+ #: redirection-admin.php:382
905
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
906
  msgstr "Redirection kräver WordPress v%1$1s, du använder v%2$2s – uppdatera WordPress"
907
 
909
  msgid "Default WordPress \"old slugs\""
910
  msgstr "WordPress standard ”gamla permalänkar”"
911
 
912
+ #: redirection-strings.php:400
913
  msgid "Create associated redirect (added to end of URL)"
914
  msgstr "Skapa associerad omdirigering (läggs till i slutet på URL:en)"
915
 
916
+ #: redirection-admin.php:402
917
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
918
  msgstr "<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."
919
 
920
+ #: redirection-strings.php:464
921
  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."
922
  msgstr "Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."
923
 
924
+ #: redirection-strings.php:465
925
  msgid "⚡️ Magic fix ⚡️"
926
  msgstr "⚡️ Magisk fix ⚡️"
927
 
928
+ #: redirection-strings.php:468
929
  msgid "Plugin Status"
930
  msgstr "Tilläggsstatus"
931
 
932
+ #: redirection-strings.php:126 redirection-strings.php:140
933
  msgid "Custom"
934
  msgstr "Anpassad"
935
 
936
+ #: redirection-strings.php:127
937
  msgid "Mobile"
938
  msgstr "Mobil"
939
 
940
+ #: redirection-strings.php:128
941
  msgid "Feed Readers"
942
  msgstr "Feedläsare"
943
 
944
+ #: redirection-strings.php:129
945
  msgid "Libraries"
946
  msgstr "Bibliotek"
947
 
948
+ #: redirection-strings.php:397
949
  msgid "URL Monitor Changes"
950
  msgstr "Övervaka URL-ändringar"
951
 
952
+ #: redirection-strings.php:398
953
  msgid "Save changes to this group"
954
  msgstr "Spara ändringar till den här gruppen"
955
 
956
+ #: redirection-strings.php:399
957
  msgid "For example \"/amp\""
958
  msgstr "Till exempel ”/amp”"
959
 
960
+ #: redirection-strings.php:410
961
  msgid "URL Monitor"
962
  msgstr "URL-övervakning"
963
 
964
+ #: redirection-strings.php:359
965
  msgid "Delete 404s"
966
  msgstr "Radera 404:or"
967
 
968
+ #: redirection-strings.php:311
969
  msgid "Delete all from IP %s"
970
  msgstr "Ta bort allt från IP-numret %s"
971
 
972
+ #: redirection-strings.php:312
973
  msgid "Delete all matching \"%s\""
974
  msgstr "Ta bort allt som matchar \"%s\""
975
 
976
+ #: redirection-strings.php:19
977
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
978
  msgstr "Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."
979
 
980
+ #: redirection-admin.php:397
981
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
982
  msgstr "Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"
983
 
984
+ #: redirection-admin.php:396 redirection-strings.php:273
985
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
986
  msgstr "Om du använder ett tillägg eller en tjänst för att cacha sidor (CloudFlare, OVH m.m.) så kan du också prova att rensa den cachen."
987
 
988
+ #: redirection-admin.php:385
989
  msgid "Unable to load Redirection"
990
  msgstr "Det gick inte att ladda Redirection"
991
 
992
+ #: models/fixer.php:266
993
  msgid "Unable to create group"
994
  msgstr "Det gick inte att skapa grupp"
995
 
996
+ #: models/fixer.php:39
 
 
 
 
997
  msgid "Post monitor group is valid"
998
  msgstr "Övervakningsgrupp för inlägg är giltig"
999
 
1000
+ #: models/fixer.php:39
1001
  msgid "Post monitor group is invalid"
1002
  msgstr "Övervakningsgrupp för inlägg är ogiltig"
1003
 
1004
+ #: models/fixer.php:37
1005
  msgid "Post monitor group"
1006
  msgstr "Övervakningsgrupp för inlägg"
1007
 
1008
+ #: models/fixer.php:33
1009
  msgid "All redirects have a valid group"
1010
  msgstr "Alla omdirigeringar har en giltig grupp"
1011
 
1012
+ #: models/fixer.php:33
1013
  msgid "Redirects with invalid groups detected"
1014
  msgstr "Omdirigeringar med ogiltiga grupper upptäcktes"
1015
 
1016
+ #: models/fixer.php:31
1017
  msgid "Valid redirect group"
1018
  msgstr "Giltig omdirigeringsgrupp"
1019
 
1020
+ #: models/fixer.php:27
1021
  msgid "Valid groups detected"
1022
  msgstr "Giltiga grupper upptäcktes"
1023
 
1024
+ #: models/fixer.php:27
1025
  msgid "No valid groups, so you will not be able to create any redirects"
1026
  msgstr "Inga giltiga grupper, du kan inte skapa nya omdirigeringar"
1027
 
1028
+ #: models/fixer.php:25
1029
  msgid "Valid groups"
1030
  msgstr "Giltiga grupper"
1031
 
1032
+ #: models/fixer.php:22
1033
  msgid "Database tables"
1034
  msgstr "Databastabeller"
1035
 
1036
+ #: models/fixer.php:53
1037
  msgid "The following tables are missing:"
1038
  msgstr "Följande tabeller saknas:"
1039
 
1040
+ #: models/fixer.php:53
1041
  msgid "All tables present"
1042
  msgstr "Alla tabeller närvarande"
1043
 
1044
+ #: redirection-strings.php:267
1045
  msgid "Cached Redirection detected"
1046
  msgstr "En cachad version av Redirection upptäcktes"
1047
 
1048
+ #: redirection-strings.php:268
1049
  msgid "Please clear your browser cache and reload this page."
1050
  msgstr "Vänligen rensa din webbläsares cache och ladda om denna sida."
1051
 
1052
+ #: redirection-strings.php:15
1053
  msgid "The data on this page has expired, please reload."
1054
  msgstr "Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."
1055
 
1056
+ #: redirection-strings.php:16
1057
  msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
1058
  msgstr "WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."
1059
 
1060
+ #: redirection-strings.php:18
1061
  msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin like mod_security?"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:36
1065
  msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
1066
  msgstr "Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."
1067
 
1068
+ #: redirection-admin.php:401
1069
  msgid "If you think Redirection is at fault then create an issue."
1070
  msgstr "Om du tror att Redirection orsakar felet, skapa en felrapport."
1071
 
1072
+ #: redirection-admin.php:395
1073
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
1074
  msgstr "Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "
1075
 
1076
+ #: redirection-admin.php:417
1077
  msgid "Loading, please wait..."
1078
  msgstr "Laddar, vänligen vänta..."
1079
 
1080
+ #: redirection-strings.php:297
1081
  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)."
1082
  msgstr "{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."
1083
 
1084
+ #: redirection-strings.php:272
1085
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1086
  msgstr "Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."
1087
 
1088
+ #: redirection-strings.php:274
1089
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1090
  msgstr "Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."
1091
 
1092
+ #: redirection-strings.php:32
1093
  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."
1094
  msgstr "Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "
1095
 
1096
+ #: redirection-admin.php:405 redirection-strings.php:33
1097
  msgid "Create Issue"
1098
  msgstr "Skapa felrapport"
1099
 
1100
+ #: redirection-strings.php:34
1101
  msgid "Email"
1102
  msgstr "E-post"
1103
 
1104
+ #: redirection-strings.php:35
1105
  msgid "Important details"
1106
  msgstr "Viktiga detaljer"
1107
 
1108
+ #: redirection-strings.php:443
1109
  msgid "Need help?"
1110
  msgstr "Behöver du hjälp?"
1111
 
1112
+ #: redirection-strings.php:446
1113
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1114
  msgstr "Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."
1115
 
1116
+ #: redirection-strings.php:427
1117
  msgid "Pos"
1118
  msgstr "Pos"
1119
 
1120
+ #: redirection-strings.php:108
1121
  msgid "410 - Gone"
1122
  msgstr "410 - Borttagen"
1123
 
1124
+ #: redirection-strings.php:116
1125
  msgid "Position"
1126
  msgstr "Position"
1127
 
1128
+ #: redirection-strings.php:414
1129
  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"
1130
  msgstr "Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID istället"
1131
 
1132
+ #: redirection-strings.php:415
1133
  msgid "Apache Module"
1134
  msgstr "Apache-modul"
1135
 
1136
+ #: redirection-strings.php:416
1137
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1138
  msgstr "Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."
1139
 
1140
+ #: redirection-strings.php:279
1141
  msgid "Import to group"
1142
  msgstr "Importera till grupp"
1143
 
1144
+ #: redirection-strings.php:280
1145
  msgid "Import a CSV, .htaccess, or JSON file."
1146
  msgstr "Importera en CSV-fil, .htaccess-fil eller JSON-fil."
1147
 
1148
+ #: redirection-strings.php:281
1149
  msgid "Click 'Add File' or drag and drop here."
1150
  msgstr "Klicka på 'Lägg till fil' eller dra och släpp en fil här."
1151
 
1152
+ #: redirection-strings.php:282
1153
  msgid "Add File"
1154
  msgstr "Lägg till fil"
1155
 
1156
+ #: redirection-strings.php:283
1157
  msgid "File selected"
1158
  msgstr "Fil vald"
1159
 
1160
+ #: redirection-strings.php:286
1161
  msgid "Importing"
1162
  msgstr "Importerar"
1163
 
1164
+ #: redirection-strings.php:287
1165
  msgid "Finished importing"
1166
  msgstr "Importering klar"
1167
 
1168
+ #: redirection-strings.php:288
1169
  msgid "Total redirects imported:"
1170
  msgstr "Antal omdirigeringar importerade:"
1171
 
1172
+ #: redirection-strings.php:289
1173
  msgid "Double-check the file is the correct format!"
1174
  msgstr "Dubbelkolla att filen är i rätt format!"
1175
 
1176
+ #: redirection-strings.php:290
1177
  msgid "OK"
1178
  msgstr "OK"
1179
 
1180
+ #: redirection-strings.php:122 redirection-strings.php:291
1181
  msgid "Close"
1182
  msgstr "Stäng"
1183
 
1184
+ #: redirection-strings.php:296
1185
  msgid "All imports will be appended to the current database."
1186
  msgstr "All importerade omdirigeringar kommer infogas till den aktuella databasen."
1187
 
1188
+ #: redirection-strings.php:298 redirection-strings.php:318
1189
  msgid "Export"
1190
  msgstr "Exportera"
1191
 
1192
+ #: redirection-strings.php:299
1193
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1194
  msgstr "Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."
1195
 
1196
+ #: redirection-strings.php:300
1197
  msgid "Everything"
1198
  msgstr "Allt"
1199
 
1200
+ #: redirection-strings.php:301
1201
  msgid "WordPress redirects"
1202
  msgstr "WordPress omdirigeringar"
1203
 
1204
+ #: redirection-strings.php:302
1205
  msgid "Apache redirects"
1206
  msgstr "Apache omdirigeringar"
1207
 
1208
+ #: redirection-strings.php:303
1209
  msgid "Nginx redirects"
1210
  msgstr "Nginx omdirigeringar"
1211
 
1212
+ #: redirection-strings.php:304
1213
  msgid "CSV"
1214
  msgstr "CSV"
1215
 
1216
+ #: redirection-strings.php:305
1217
  msgid "Apache .htaccess"
1218
  msgstr "Apache .htaccess"
1219
 
1220
+ #: redirection-strings.php:306
1221
  msgid "Nginx rewrite rules"
1222
  msgstr "Nginx omskrivningsregler"
1223
 
1224
+ #: redirection-strings.php:307
1225
  msgid "Redirection JSON"
1226
  msgstr "JSON omdirigeringar"
1227
 
1228
+ #: redirection-strings.php:308
1229
  msgid "View"
1230
  msgstr "Visa"
1231
 
1232
+ #: redirection-strings.php:310
1233
  msgid "Log files can be exported from the log pages."
1234
  msgstr "Loggfiler kan exporteras från loggsidorna."
1235
 
1236
+ #: redirection-strings.php:63 redirection-strings.php:262
1237
  msgid "Import/Export"
1238
  msgstr "Importera/Exportera"
1239
 
1240
+ #: redirection-strings.php:263
1241
  msgid "Logs"
1242
  msgstr "Loggar"
1243
 
1244
+ #: redirection-strings.php:264
1245
  msgid "404 errors"
1246
  msgstr "404-fel"
1247
 
1248
+ #: redirection-strings.php:275
1249
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1250
  msgstr "Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"
1251
 
1252
+ #: redirection-strings.php:375
1253
  msgid "I'd like to support some more."
1254
  msgstr "Jag skulle vilja stödja lite till."
1255
 
1256
+ #: redirection-strings.php:378
1257
  msgid "Support 💰"
1258
  msgstr "Support 💰"
1259
 
1260
+ #: redirection-strings.php:469
1261
  msgid "Redirection saved"
1262
  msgstr "Omdirigering sparad"
1263
 
1264
+ #: redirection-strings.php:470
1265
  msgid "Log deleted"
1266
  msgstr "Logginlägg raderades"
1267
 
1268
+ #: redirection-strings.php:471
1269
  msgid "Settings saved"
1270
  msgstr "Inställning sparad"
1271
 
1272
+ #: redirection-strings.php:472
1273
  msgid "Group saved"
1274
  msgstr "Grupp sparad"
1275
 
1276
+ #: redirection-strings.php:235
1277
  msgid "Are you sure you want to delete this item?"
1278
  msgid_plural "Are you sure you want to delete these items?"
1279
  msgstr[0] "Är du säker på att du vill radera detta objekt?"
1280
  msgstr[1] "Är du säker på att du vill radera dessa objekt?"
1281
 
1282
+ #: redirection-strings.php:442
1283
  msgid "pass"
1284
  msgstr "lösen"
1285
 
1286
+ #: redirection-strings.php:434
1287
  msgid "All groups"
1288
  msgstr "Alla grupper"
1289
 
1290
+ #: redirection-strings.php:98
1291
  msgid "301 - Moved Permanently"
1292
  msgstr "301 - Flyttad permanent"
1293
 
1294
+ #: redirection-strings.php:99
1295
  msgid "302 - Found"
1296
  msgstr "302 - Hittad"
1297
 
1298
+ #: redirection-strings.php:102
1299
  msgid "307 - Temporary Redirect"
1300
  msgstr "307 - Tillfällig omdirigering"
1301
 
1302
+ #: redirection-strings.php:103
1303
  msgid "308 - Permanent Redirect"
1304
  msgstr "308 - Permanent omdirigering"
1305
 
1306
+ #: redirection-strings.php:105
1307
  msgid "401 - Unauthorized"
1308
  msgstr "401 - Obehörig"
1309
 
1310
+ #: redirection-strings.php:107
1311
  msgid "404 - Not Found"
1312
  msgstr "404 - Hittades inte"
1313
 
1314
+ #: redirection-strings.php:110
1315
  msgid "Title"
1316
  msgstr "Titel"
1317
 
1318
+ #: redirection-strings.php:113
1319
  msgid "When matched"
1320
  msgstr "När matchning sker"
1321
 
1322
+ #: redirection-strings.php:114
1323
  msgid "with HTTP code"
1324
  msgstr "med HTTP-kod"
1325
 
1326
+ #: redirection-strings.php:123
1327
  msgid "Show advanced options"
1328
  msgstr "Visa avancerande alternativ"
1329
 
1330
+ #: redirection-strings.php:76
1331
  msgid "Matched Target"
1332
  msgstr "Matchande mål"
1333
 
1334
+ #: redirection-strings.php:78
1335
  msgid "Unmatched Target"
1336
  msgstr "Ej matchande mål"
1337
 
1338
+ #: redirection-strings.php:68 redirection-strings.php:69
1339
  msgid "Saving..."
1340
  msgstr "Sparar..."
1341
 
1342
+ #: redirection-strings.php:66
1343
  msgid "View notice"
1344
  msgstr "Visa meddelande"
1345
 
1346
+ #: models/redirect.php:563
1347
  msgid "Invalid source URL"
1348
  msgstr "Ogiltig URL-källa"
1349
 
1350
+ #: models/redirect.php:491
1351
  msgid "Invalid redirect action"
1352
  msgstr "Ogiltig omdirigeringsåtgärd"
1353
 
1354
+ #: models/redirect.php:485
1355
  msgid "Invalid redirect matcher"
1356
  msgstr "Ogiltig omdirigeringsmatchning"
1357
 
1359
  msgid "Unable to add new redirect"
1360
  msgstr "Det går inte att lägga till en ny omdirigering"
1361
 
1362
+ #: redirection-strings.php:23 redirection-strings.php:271
1363
  msgid "Something went wrong 🙁"
1364
  msgstr "Något gick fel 🙁"
1365
 
1366
+ #: redirection-strings.php:22
1367
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
1368
  msgstr "Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."
1369
 
1370
  #. translators: maximum number of log entries
1371
+ #: redirection-admin.php:182
1372
  msgid "Log entries (%d max)"
1373
  msgstr "Antal logginlägg per sida (max %d)"
1374
 
1375
+ #: redirection-strings.php:177
1376
  msgid "Search by IP"
1377
  msgstr "Sök via IP"
1378
 
1379
+ #: redirection-strings.php:172
1380
  msgid "Select bulk action"
1381
  msgstr "Välj massåtgärd"
1382
 
1383
+ #: redirection-strings.php:173
1384
  msgid "Bulk Actions"
1385
  msgstr "Massåtgärd"
1386
 
1387
+ #: redirection-strings.php:174
1388
  msgid "Apply"
1389
  msgstr "Tillämpa"
1390
 
1391
+ #: redirection-strings.php:165
1392
  msgid "First page"
1393
  msgstr "Första sidan"
1394
 
1395
+ #: redirection-strings.php:166
1396
  msgid "Prev page"
1397
  msgstr "Föregående sida"
1398
 
1399
+ #: redirection-strings.php:167
1400
  msgid "Current Page"
1401
  msgstr "Aktuell sida"
1402
 
1403
+ #: redirection-strings.php:168
1404
  msgid "of %(page)s"
1405
  msgstr "av %(sidor)"
1406
 
1407
+ #: redirection-strings.php:169
1408
  msgid "Next page"
1409
  msgstr "Nästa sida"
1410
 
1411
+ #: redirection-strings.php:170
1412
  msgid "Last page"
1413
  msgstr "Sista sidan"
1414
 
1415
+ #: redirection-strings.php:171
1416
  msgid "%s item"
1417
  msgid_plural "%s items"
1418
  msgstr[0] "%s objekt"
1419
  msgstr[1] "%s objekt"
1420
 
1421
+ #: redirection-strings.php:164
1422
  msgid "Select All"
1423
  msgstr "Välj allt"
1424
 
1425
+ #: redirection-strings.php:176
1426
  msgid "Sorry, something went wrong loading the data - please try again"
1427
  msgstr "Något gick fel när data laddades - Vänligen försök igen"
1428
 
1429
+ #: redirection-strings.php:175
1430
  msgid "No results"
1431
  msgstr "Inga resultat"
1432
 
1433
+ #: redirection-strings.php:314
1434
  msgid "Delete the logs - are you sure?"
1435
  msgstr "Är du säker på att du vill radera loggarna?"
1436
 
1437
+ #: redirection-strings.php:315
1438
  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."
1439
  msgstr "När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."
1440
 
1441
+ #: redirection-strings.php:316
1442
  msgid "Yes! Delete the logs"
1443
  msgstr "Ja! Radera loggarna"
1444
 
1445
+ #: redirection-strings.php:317
1446
  msgid "No! Don't delete the logs"
1447
  msgstr "Nej! Radera inte loggarna"
1448
 
1449
+ #: redirection-strings.php:459
1450
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1451
  msgstr "Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."
1452
 
1453
+ #: redirection-strings.php:458 redirection-strings.php:460
1454
  msgid "Newsletter"
1455
  msgstr "Nyhetsbrev"
1456
 
1457
+ #: redirection-strings.php:461
1458
  msgid "Want to keep up to date with changes to Redirection?"
1459
  msgstr "Vill du bli uppdaterad om ändringar i Redirection?"
1460
 
1461
+ #: redirection-strings.php:462
1462
  msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1463
  msgstr "Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."
1464
 
1465
+ #: redirection-strings.php:463
1466
  msgid "Your email address:"
1467
  msgstr "Din e-postadress:"
1468
 
1469
+ #: redirection-strings.php:374
1470
  msgid "You've supported this plugin - thank you!"
1471
  msgstr "Du har stöttat detta tillägg - tack!"
1472
 
1473
+ #: redirection-strings.php:377
1474
  msgid "You get useful software and I get to carry on making it better."
1475
  msgstr "Du får en användbar mjukvara och jag kan fortsätta göra den bättre."
1476
 
1477
+ #: redirection-strings.php:385 redirection-strings.php:390
1478
  msgid "Forever"
1479
  msgstr "För evigt"
1480
 
1481
+ #: redirection-strings.php:366
1482
  msgid "Delete the plugin - are you sure?"
1483
  msgstr "Radera tillägget - är du verkligen säker på det?"
1484
 
1485
+ #: redirection-strings.php:367
1486
  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."
1487
  msgstr "Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."
1488
 
1489
+ #: redirection-strings.php:368
1490
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1491
  msgstr "När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."
1492
 
1493
+ #: redirection-strings.php:369
1494
  msgid "Yes! Delete the plugin"
1495
  msgstr "Ja! Radera detta tillägg"
1496
 
1497
+ #: redirection-strings.php:370
1498
  msgid "No! Don't delete the plugin"
1499
  msgstr "Nej! Radera inte detta tillägg"
1500
 
1501
+ #. Author of the plugin
1502
  msgid "John Godley"
1503
  msgstr "John Godley"
1504
 
1505
+ #. Description of the plugin
1506
  msgid "Manage all your 301 redirects and monitor 404 errors"
1507
  msgstr "Hantera alla dina 301-omdirigeringar och övervaka 404-fel"
1508
 
1509
+ #: redirection-strings.php:376
1510
  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}}."
1511
  msgstr "Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."
1512
 
1513
+ #: redirection-admin.php:300
1514
  msgid "Redirection Support"
1515
  msgstr "Support för Redirection"
1516
 
1517
+ #: redirection-strings.php:65 redirection-strings.php:266
1518
  msgid "Support"
1519
  msgstr "Support"
1520
 
1521
+ #: redirection-strings.php:62
1522
  msgid "404s"
1523
  msgstr "404:or"
1524
 
1525
+ #: redirection-strings.php:61
1526
  msgid "Log"
1527
  msgstr "Logg"
1528
 
1529
+ #: redirection-strings.php:372
1530
  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."
1531
  msgstr "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."
1532
 
1533
+ #: redirection-strings.php:371
1534
  msgid "Delete Redirection"
1535
  msgstr "Ta bort Redirection"
1536
 
1537
+ #: redirection-strings.php:284
1538
  msgid "Upload"
1539
  msgstr "Ladda upp"
1540
 
1541
+ #: redirection-strings.php:295
1542
  msgid "Import"
1543
  msgstr "Importera"
1544
 
1545
+ #: redirection-strings.php:424
1546
  msgid "Update"
1547
  msgstr "Uppdatera"
1548
 
1549
+ #: redirection-strings.php:413
1550
  msgid "Auto-generate URL"
1551
  msgstr "Autogenerera URL"
1552
 
1553
+ #: redirection-strings.php:412
1554
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1555
  msgstr "En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"
1556
 
1557
+ #: redirection-strings.php:411
1558
  msgid "RSS Token"
1559
  msgstr "RSS-nyckel"
1560
 
1561
+ #: redirection-strings.php:405
1562
  msgid "404 Logs"
1563
  msgstr "404-loggar"
1564
 
1565
+ #: redirection-strings.php:404 redirection-strings.php:406
1566
  msgid "(time to keep logs for)"
1567
  msgstr "(hur länge loggar ska sparas)"
1568
 
1569
+ #: redirection-strings.php:403
1570
  msgid "Redirect Logs"
1571
  msgstr "Redirection-loggar"
1572
 
1573
+ #: redirection-strings.php:402
1574
  msgid "I'm a nice person and I have helped support the author of this plugin"
1575
  msgstr "Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"
1576
 
1577
+ #: redirection-strings.php:379
1578
  msgid "Plugin Support"
1579
  msgstr "Support för tillägg"
1580
 
1581
+ #: redirection-strings.php:64 redirection-strings.php:265
1582
  msgid "Options"
1583
  msgstr "Alternativ"
1584
 
1585
+ #: redirection-strings.php:384
1586
  msgid "Two months"
1587
  msgstr "Två månader"
1588
 
1589
+ #: redirection-strings.php:383
1590
  msgid "A month"
1591
  msgstr "En månad"
1592
 
1593
+ #: redirection-strings.php:382 redirection-strings.php:389
1594
  msgid "A week"
1595
  msgstr "En vecka"
1596
 
1597
+ #: redirection-strings.php:381 redirection-strings.php:388
1598
  msgid "A day"
1599
  msgstr "En dag"
1600
 
1601
+ #: redirection-strings.php:380
1602
  msgid "No logs"
1603
  msgstr "Inga loggar"
1604
 
1605
+ #: redirection-strings.php:313 redirection-strings.php:349
1606
+ #: redirection-strings.php:354
1607
  msgid "Delete All"
1608
  msgstr "Radera alla"
1609
 
1610
+ #: redirection-strings.php:244
1611
  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."
1612
  msgstr "Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."
1613
 
1614
+ #: redirection-strings.php:243
1615
  msgid "Add Group"
1616
  msgstr "Lägg till grupp"
1617
 
1618
+ #: redirection-strings.php:178
1619
  msgid "Search"
1620
  msgstr "Sök"
1621
 
1622
+ #: redirection-strings.php:60 redirection-strings.php:261
1623
  msgid "Groups"
1624
  msgstr "Grupper"
1625
 
1626
+ #: redirection-strings.php:25 redirection-strings.php:119
1627
+ #: redirection-strings.php:253
1628
  msgid "Save"
1629
  msgstr "Spara"
1630
 
1631
+ #: redirection-strings.php:115 redirection-strings.php:163
1632
  msgid "Group"
1633
  msgstr "Grupp"
1634
 
1635
+ #: redirection-strings.php:112
1636
  msgid "Match"
1637
  msgstr "Matcha"
1638
 
1639
+ #: redirection-strings.php:435
1640
  msgid "Add new redirection"
1641
  msgstr "Lägg till ny omdirigering"
1642
 
1643
+ #: redirection-strings.php:121 redirection-strings.php:254
1644
+ #: redirection-strings.php:285
1645
  msgid "Cancel"
1646
  msgstr "Avbryt"
1647
 
1648
+ #: redirection-strings.php:309
1649
  msgid "Download"
1650
  msgstr "Hämta"
1651
 
1652
+ #. Plugin Name of the plugin
1653
+ #: redirection-strings.php:233
1654
  msgid "Redirection"
1655
  msgstr "Redirection"
1656
 
1657
+ #: redirection-admin.php:140
1658
  msgid "Settings"
1659
  msgstr "Inställningar"
1660
 
1661
+ #: redirection-strings.php:96
1662
  msgid "Error (404)"
1663
  msgstr "Fel (404)"
1664
 
1665
+ #: redirection-strings.php:95
1666
  msgid "Pass-through"
1667
  msgstr "Passera"
1668
 
1669
+ #: redirection-strings.php:94
1670
  msgid "Redirect to random post"
1671
  msgstr "Omdirigering till slumpmässigt inlägg"
1672
 
1673
+ #: redirection-strings.php:93
1674
  msgid "Redirect to URL"
1675
  msgstr "Omdirigera till URL"
1676
 
1677
+ #: models/redirect.php:553
1678
  msgid "Invalid group when creating redirect"
1679
  msgstr "Gruppen är ogiltig när omdirigering skapas"
1680
 
1681
+ #: redirection-strings.php:144 redirection-strings.php:322
1682
+ #: redirection-strings.php:330 redirection-strings.php:335
1683
  msgid "IP"
1684
  msgstr "IP"
1685
 
1686
+ #: redirection-strings.php:120 redirection-strings.php:193
1687
+ #: redirection-strings.php:320 redirection-strings.php:328
1688
+ #: redirection-strings.php:333
1689
  msgid "Source URL"
1690
  msgstr "URL-källa"
1691
 
1692
+ #: redirection-strings.php:319 redirection-strings.php:332
1693
  msgid "Date"
1694
  msgstr "Datum"
1695
 
1696
+ #: redirection-strings.php:345 redirection-strings.php:358
1697
+ #: redirection-strings.php:362 redirection-strings.php:436
1698
  msgid "Add Redirect"
1699
  msgstr "Lägg till omdirigering"
1700
 
1701
+ #: redirection-strings.php:242
1702
  msgid "All modules"
1703
  msgstr "Alla moduler"
1704
 
1705
+ #: redirection-strings.php:248
1706
  msgid "View Redirects"
1707
  msgstr "Visa omdirigeringar"
1708
 
1709
+ #: redirection-strings.php:238 redirection-strings.php:252
1710
  msgid "Module"
1711
  msgstr "Modul"
1712
 
1713
+ #: redirection-strings.php:59 redirection-strings.php:237
1714
  msgid "Redirects"
1715
  msgstr "Omdirigering"
1716
 
1717
+ #: redirection-strings.php:236 redirection-strings.php:245
1718
+ #: redirection-strings.php:251
1719
  msgid "Name"
1720
  msgstr "Namn"
1721
 
1722
+ #: redirection-strings.php:162
1723
  msgid "Filter"
1724
  msgstr "Filtrera"
1725
 
1726
+ #: redirection-strings.php:433
1727
  msgid "Reset hits"
1728
  msgstr "Nollställ träffar"
1729
 
1730
+ #: redirection-strings.php:240 redirection-strings.php:250
1731
+ #: redirection-strings.php:431 redirection-strings.php:441
1732
  msgid "Enable"
1733
  msgstr "Aktivera"
1734
 
1735
+ #: redirection-strings.php:241 redirection-strings.php:249
1736
+ #: redirection-strings.php:432 redirection-strings.php:439
1737
  msgid "Disable"
1738
  msgstr "Inaktivera"
1739
 
1740
+ #: redirection-strings.php:239 redirection-strings.php:247
1741
+ #: redirection-strings.php:323 redirection-strings.php:324
1742
+ #: redirection-strings.php:336 redirection-strings.php:339
1743
+ #: redirection-strings.php:361 redirection-strings.php:373
1744
+ #: redirection-strings.php:430 redirection-strings.php:438
1745
  msgid "Delete"
1746
  msgstr "Radera"
1747
 
1748
+ #: redirection-strings.php:246 redirection-strings.php:437
1749
  msgid "Edit"
1750
  msgstr "Redigera"
1751
 
1752
+ #: redirection-strings.php:429
1753
  msgid "Last Access"
1754
  msgstr "Senast använd"
1755
 
1756
+ #: redirection-strings.php:428
1757
  msgid "Hits"
1758
  msgstr "Träffar"
1759
 
1760
+ #: redirection-strings.php:426 redirection-strings.php:454
1761
  msgid "URL"
1762
  msgstr "URL"
1763
 
1764
+ #: redirection-strings.php:425
1765
  msgid "Type"
1766
  msgstr "Typ"
1767
 
1768
+ #: database/schema/latest.php:137
1769
  msgid "Modified Posts"
1770
  msgstr "Modifierade inlägg"
1771
 
1772
+ #: database/schema/latest.php:132 models/group.php:148
1773
+ #: redirection-strings.php:260
1774
  msgid "Redirections"
1775
  msgstr "Omdirigeringar"
1776
 
1777
+ #: redirection-strings.php:124
1778
  msgid "User Agent"
1779
  msgstr "Användaragent"
1780
 
1781
+ #: matches/user-agent.php:10 redirection-strings.php:86
1782
  msgid "URL and user agent"
1783
  msgstr "URL och användaragent"
1784
 
1785
+ #: redirection-strings.php:70 redirection-strings.php:80
1786
+ #: redirection-strings.php:195
1787
  msgid "Target URL"
1788
  msgstr "Mål-URL"
1789
 
1790
+ #: matches/url.php:7 redirection-strings.php:82
1791
  msgid "URL only"
1792
  msgstr "Endast URL"
1793
 
1794
+ #: redirection-strings.php:118 redirection-strings.php:130
1795
+ #: redirection-strings.php:134 redirection-strings.php:142
1796
+ #: redirection-strings.php:151
1797
  msgid "Regex"
1798
  msgstr "Reguljärt uttryck"
1799
 
1800
+ #: redirection-strings.php:149
1801
  msgid "Referrer"
1802
  msgstr "Hänvisningsadress"
1803
 
1804
+ #: matches/referrer.php:10 redirection-strings.php:85
1805
  msgid "URL and referrer"
1806
  msgstr "URL och hänvisande webbplats"
1807
 
1808
+ #: redirection-strings.php:74
1809
  msgid "Logged Out"
1810
  msgstr "Utloggad"
1811
 
1812
+ #: redirection-strings.php:72
1813
  msgid "Logged In"
1814
  msgstr "Inloggad"
1815
 
1816
+ #: matches/login.php:8 redirection-strings.php:83
1817
  msgid "URL and login status"
1818
  msgstr "URL och inloggnings-status"
locale/redirection.pot CHANGED
@@ -14,7 +14,7 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
- #: redirection-admin.php:137, redirection-strings.php:259
18
  msgid "Upgrade Database"
19
  msgstr ""
20
 
@@ -32,64 +32,64 @@ msgid "Log entries (%d max)"
32
  msgstr ""
33
 
34
  #. translators: URL
35
- #: redirection-admin.php:299
36
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
37
  msgstr ""
38
 
39
- #: redirection-admin.php:300
40
  msgid "Redirection Support"
41
  msgstr ""
42
 
43
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
44
- #: redirection-admin.php:382
45
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
46
  msgstr ""
47
 
48
- #: redirection-admin.php:385
49
  msgid "Unable to load Redirection"
50
  msgstr ""
51
 
52
- #: redirection-admin.php:394
53
  msgid "Unable to load Redirection ☹️"
54
  msgstr ""
55
 
56
- #: redirection-admin.php:395
57
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
58
  msgstr ""
59
 
60
- #: redirection-admin.php:396, redirection-strings.php:273
61
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
62
  msgstr ""
63
 
64
- #: redirection-admin.php:397
65
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
66
  msgstr ""
67
 
68
- #: redirection-admin.php:399
69
  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"
70
  msgstr ""
71
 
72
- #: redirection-admin.php:400
73
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
74
  msgstr ""
75
 
76
- #: redirection-admin.php:401
77
  msgid "If you think Redirection is at fault then create an issue."
78
  msgstr ""
79
 
80
- #: redirection-admin.php:402
81
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
82
  msgstr ""
83
 
84
- #: redirection-admin.php:405, redirection-strings.php:33
85
  msgid "Create Issue"
86
  msgstr ""
87
 
88
- #: redirection-admin.php:417
89
  msgid "Loading, please wait..."
90
  msgstr ""
91
 
92
- #: redirection-admin.php:421
93
  msgid "Please enable JavaScript"
94
  msgstr ""
95
 
@@ -169,7 +169,7 @@ msgstr ""
169
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
170
  msgstr ""
171
 
172
- #: redirection-strings.php:23, redirection-strings.php:271
173
  msgid "Something went wrong 🙁"
174
  msgstr ""
175
 
@@ -301,7 +301,7 @@ msgstr ""
301
  msgid "Redirects"
302
  msgstr ""
303
 
304
- #: redirection-strings.php:60, redirection-strings.php:261
305
  msgid "Groups"
306
  msgstr ""
307
 
@@ -313,15 +313,15 @@ msgstr ""
313
  msgid "404s"
314
  msgstr ""
315
 
316
- #: redirection-strings.php:63, redirection-strings.php:262
317
  msgid "Import/Export"
318
  msgstr ""
319
 
320
- #: redirection-strings.php:64, redirection-strings.php:265
321
  msgid "Options"
322
  msgstr ""
323
 
324
- #: redirection-strings.php:65, redirection-strings.php:266
325
  msgid "Support"
326
  msgstr ""
327
 
@@ -517,15 +517,15 @@ msgstr ""
517
  msgid "Regex"
518
  msgstr ""
519
 
520
- #: redirection-strings.php:120, redirection-strings.php:193, redirection-strings.php:320, redirection-strings.php:328, redirection-strings.php:333
521
  msgid "Source URL"
522
  msgstr ""
523
 
524
- #: redirection-strings.php:121, redirection-strings.php:254, redirection-strings.php:285
525
  msgid "Cancel"
526
  msgstr ""
527
 
528
- #: redirection-strings.php:122, redirection-strings.php:291
529
  msgid "Close"
530
  msgstr ""
531
 
@@ -597,7 +597,7 @@ msgstr ""
597
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
598
  msgstr ""
599
 
600
- #: redirection-strings.php:144, redirection-strings.php:322, redirection-strings.php:330, redirection-strings.php:335
601
  msgid "IP"
602
  msgstr ""
603
 
@@ -875,7 +875,7 @@ msgstr ""
875
  msgid "Go back"
876
  msgstr ""
877
 
878
- #: redirection-strings.php:221, redirection-strings.php:422
879
  msgid "REST API"
880
  msgstr ""
881
 
@@ -941,15 +941,15 @@ msgstr ""
941
  msgid "Module"
942
  msgstr ""
943
 
944
- #: redirection-strings.php:239, redirection-strings.php:247, redirection-strings.php:323, redirection-strings.php:324, redirection-strings.php:336, redirection-strings.php:339, redirection-strings.php:361, redirection-strings.php:373, redirection-strings.php:430, redirection-strings.php:438
945
  msgid "Delete"
946
  msgstr ""
947
 
948
- #: redirection-strings.php:240, redirection-strings.php:250, redirection-strings.php:431, redirection-strings.php:441
949
  msgid "Enable"
950
  msgstr ""
951
 
952
- #: redirection-strings.php:241, redirection-strings.php:249, redirection-strings.php:432, redirection-strings.php:439
953
  msgid "Disable"
954
  msgstr ""
955
 
@@ -965,7 +965,7 @@ msgstr ""
965
  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."
966
  msgstr ""
967
 
968
- #: redirection-strings.php:246, redirection-strings.php:437
969
  msgid "Edit"
970
  msgstr ""
971
 
@@ -974,654 +974,658 @@ msgid "View Redirects"
974
  msgstr ""
975
 
976
  #: redirection-strings.php:255
977
- msgid "Update Required"
978
  msgstr ""
979
 
980
  #: redirection-strings.php:256
981
- msgid "Redirection database needs updating"
982
  msgstr ""
983
 
984
  #: redirection-strings.php:257
985
- msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
986
  msgstr ""
987
 
988
  #: redirection-strings.php:258
989
- msgid "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data."
 
 
 
 
990
  msgstr ""
991
 
992
- #: redirection-strings.php:260, database/schema/latest.php:132
993
  msgid "Redirections"
994
  msgstr ""
995
 
996
- #: redirection-strings.php:263
997
  msgid "Logs"
998
  msgstr ""
999
 
1000
- #: redirection-strings.php:264
1001
  msgid "404 errors"
1002
  msgstr ""
1003
 
1004
- #: redirection-strings.php:267
1005
  msgid "Cached Redirection detected"
1006
  msgstr ""
1007
 
1008
- #: redirection-strings.php:268
1009
  msgid "Please clear your browser cache and reload this page."
1010
  msgstr ""
1011
 
1012
- #: redirection-strings.php:269
1013
  msgid "If you are using a caching system such as Cloudflare then please read this: "
1014
  msgstr ""
1015
 
1016
- #: redirection-strings.php:270
1017
  msgid "clearing your cache."
1018
  msgstr ""
1019
 
1020
- #: redirection-strings.php:272
1021
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1022
  msgstr ""
1023
 
1024
- #: redirection-strings.php:274
1025
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1026
  msgstr ""
1027
 
1028
- #: redirection-strings.php:275
1029
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1030
  msgstr ""
1031
 
1032
- #: redirection-strings.php:276
1033
  msgid "Add New"
1034
  msgstr ""
1035
 
1036
- #: redirection-strings.php:277
1037
  msgid "total = "
1038
  msgstr ""
1039
 
1040
- #: redirection-strings.php:278
1041
  msgid "Import from %s"
1042
  msgstr ""
1043
 
1044
- #: redirection-strings.php:279
1045
  msgid "Import to group"
1046
  msgstr ""
1047
 
1048
- #: redirection-strings.php:280
1049
  msgid "Import a CSV, .htaccess, or JSON file."
1050
  msgstr ""
1051
 
1052
- #: redirection-strings.php:281
1053
  msgid "Click 'Add File' or drag and drop here."
1054
  msgstr ""
1055
 
1056
- #: redirection-strings.php:282
1057
  msgid "Add File"
1058
  msgstr ""
1059
 
1060
- #: redirection-strings.php:283
1061
  msgid "File selected"
1062
  msgstr ""
1063
 
1064
- #: redirection-strings.php:284
1065
  msgid "Upload"
1066
  msgstr ""
1067
 
1068
- #: redirection-strings.php:286
1069
  msgid "Importing"
1070
  msgstr ""
1071
 
1072
- #: redirection-strings.php:287
1073
  msgid "Finished importing"
1074
  msgstr ""
1075
 
1076
- #: redirection-strings.php:288
1077
  msgid "Total redirects imported:"
1078
  msgstr ""
1079
 
1080
- #: redirection-strings.php:289
1081
  msgid "Double-check the file is the correct format!"
1082
  msgstr ""
1083
 
1084
- #: redirection-strings.php:290
1085
  msgid "OK"
1086
  msgstr ""
1087
 
1088
- #: redirection-strings.php:292
1089
  msgid "Are you sure you want to import from %s?"
1090
  msgstr ""
1091
 
1092
- #: redirection-strings.php:293
1093
  msgid "Plugin Importers"
1094
  msgstr ""
1095
 
1096
- #: redirection-strings.php:294
1097
  msgid "The following redirect plugins were detected on your site and can be imported from."
1098
  msgstr ""
1099
 
1100
- #: redirection-strings.php:295
1101
  msgid "Import"
1102
  msgstr ""
1103
 
1104
- #: redirection-strings.php:296
1105
  msgid "All imports will be appended to the current database."
1106
  msgstr ""
1107
 
1108
- #: redirection-strings.php:297
1109
  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)."
1110
  msgstr ""
1111
 
1112
- #: redirection-strings.php:298, redirection-strings.php:318
1113
  msgid "Export"
1114
  msgstr ""
1115
 
1116
- #: redirection-strings.php:299
1117
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1118
  msgstr ""
1119
 
1120
- #: redirection-strings.php:300
1121
  msgid "Everything"
1122
  msgstr ""
1123
 
1124
- #: redirection-strings.php:301
1125
  msgid "WordPress redirects"
1126
  msgstr ""
1127
 
1128
- #: redirection-strings.php:302
1129
  msgid "Apache redirects"
1130
  msgstr ""
1131
 
1132
- #: redirection-strings.php:303
1133
  msgid "Nginx redirects"
1134
  msgstr ""
1135
 
1136
- #: redirection-strings.php:304
1137
  msgid "CSV"
1138
  msgstr ""
1139
 
1140
- #: redirection-strings.php:305
1141
  msgid "Apache .htaccess"
1142
  msgstr ""
1143
 
1144
- #: redirection-strings.php:306
1145
  msgid "Nginx rewrite rules"
1146
  msgstr ""
1147
 
1148
- #: redirection-strings.php:307
1149
  msgid "Redirection JSON"
1150
  msgstr ""
1151
 
1152
- #: redirection-strings.php:308
1153
  msgid "View"
1154
  msgstr ""
1155
 
1156
- #: redirection-strings.php:309
1157
  msgid "Download"
1158
  msgstr ""
1159
 
1160
- #: redirection-strings.php:310
1161
  msgid "Log files can be exported from the log pages."
1162
  msgstr ""
1163
 
1164
- #: redirection-strings.php:311
1165
  msgid "Delete all from IP %s"
1166
  msgstr ""
1167
 
1168
- #: redirection-strings.php:312
1169
  msgid "Delete all matching \"%s\""
1170
  msgstr ""
1171
 
1172
- #: redirection-strings.php:313, redirection-strings.php:349, redirection-strings.php:354
1173
  msgid "Delete All"
1174
  msgstr ""
1175
 
1176
- #: redirection-strings.php:314
1177
  msgid "Delete the logs - are you sure?"
1178
  msgstr ""
1179
 
1180
- #: redirection-strings.php:315
1181
  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."
1182
  msgstr ""
1183
 
1184
- #: redirection-strings.php:316
1185
  msgid "Yes! Delete the logs"
1186
  msgstr ""
1187
 
1188
- #: redirection-strings.php:317
1189
  msgid "No! Don't delete the logs"
1190
  msgstr ""
1191
 
1192
- #: redirection-strings.php:319, redirection-strings.php:332
1193
  msgid "Date"
1194
  msgstr ""
1195
 
1196
- #: redirection-strings.php:321, redirection-strings.php:334
1197
  msgid "Referrer / User Agent"
1198
  msgstr ""
1199
 
1200
- #: redirection-strings.php:325, redirection-strings.php:352, redirection-strings.php:363
1201
  msgid "Geo Info"
1202
  msgstr ""
1203
 
1204
- #: redirection-strings.php:326, redirection-strings.php:364
1205
  msgid "Agent Info"
1206
  msgstr ""
1207
 
1208
- #: redirection-strings.php:327, redirection-strings.php:365
1209
  msgid "Filter by IP"
1210
  msgstr ""
1211
 
1212
- #: redirection-strings.php:329, redirection-strings.php:331
1213
  msgid "Count"
1214
  msgstr ""
1215
 
1216
- #: redirection-strings.php:337, redirection-strings.php:340, redirection-strings.php:350, redirection-strings.php:355
1217
  msgid "Redirect All"
1218
  msgstr ""
1219
 
1220
- #: redirection-strings.php:338, redirection-strings.php:353
1221
  msgid "Block IP"
1222
  msgstr ""
1223
 
1224
- #: redirection-strings.php:341, redirection-strings.php:357
1225
  msgid "Ignore URL"
1226
  msgstr ""
1227
 
1228
- #: redirection-strings.php:342
1229
  msgid "No grouping"
1230
  msgstr ""
1231
 
1232
- #: redirection-strings.php:343
1233
  msgid "Group by URL"
1234
  msgstr ""
1235
 
1236
- #: redirection-strings.php:344
1237
  msgid "Group by IP"
1238
  msgstr ""
1239
 
1240
- #: redirection-strings.php:345, redirection-strings.php:358, redirection-strings.php:362, redirection-strings.php:436
1241
  msgid "Add Redirect"
1242
  msgstr ""
1243
 
1244
- #: redirection-strings.php:346
1245
  msgid "Delete Log Entries"
1246
  msgstr ""
1247
 
1248
- #: redirection-strings.php:347, redirection-strings.php:360
1249
  msgid "Delete all logs for this entry"
1250
  msgstr ""
1251
 
1252
- #: redirection-strings.php:348
1253
  msgid "Delete all logs for these entries"
1254
  msgstr ""
1255
 
1256
- #: redirection-strings.php:351, redirection-strings.php:356
1257
  msgid "Show All"
1258
  msgstr ""
1259
 
1260
- #: redirection-strings.php:359
1261
  msgid "Delete 404s"
1262
  msgstr ""
1263
 
1264
- #: redirection-strings.php:366
1265
  msgid "Delete the plugin - are you sure?"
1266
  msgstr ""
1267
 
1268
- #: redirection-strings.php:367
1269
  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."
1270
  msgstr ""
1271
 
1272
- #: redirection-strings.php:368
1273
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1274
  msgstr ""
1275
 
1276
- #: redirection-strings.php:369
1277
  msgid "Yes! Delete the plugin"
1278
  msgstr ""
1279
 
1280
- #: redirection-strings.php:370
1281
  msgid "No! Don't delete the plugin"
1282
  msgstr ""
1283
 
1284
- #: redirection-strings.php:371
1285
  msgid "Delete Redirection"
1286
  msgstr ""
1287
 
1288
- #: redirection-strings.php:372
1289
  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."
1290
  msgstr ""
1291
 
1292
- #: redirection-strings.php:374
1293
  msgid "You've supported this plugin - thank you!"
1294
  msgstr ""
1295
 
1296
- #: redirection-strings.php:375
1297
  msgid "I'd like to support some more."
1298
  msgstr ""
1299
 
1300
- #: redirection-strings.php:376
1301
  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}}."
1302
  msgstr ""
1303
 
1304
- #: redirection-strings.php:377
1305
  msgid "You get useful software and I get to carry on making it better."
1306
  msgstr ""
1307
 
1308
- #: redirection-strings.php:378
1309
  msgid "Support 💰"
1310
  msgstr ""
1311
 
1312
- #: redirection-strings.php:379
1313
  msgid "Plugin Support"
1314
  msgstr ""
1315
 
1316
- #: redirection-strings.php:380
1317
  msgid "No logs"
1318
  msgstr ""
1319
 
1320
- #: redirection-strings.php:381, redirection-strings.php:388
1321
  msgid "A day"
1322
  msgstr ""
1323
 
1324
- #: redirection-strings.php:382, redirection-strings.php:389
1325
  msgid "A week"
1326
  msgstr ""
1327
 
1328
- #: redirection-strings.php:383
1329
  msgid "A month"
1330
  msgstr ""
1331
 
1332
- #: redirection-strings.php:384
1333
  msgid "Two months"
1334
  msgstr ""
1335
 
1336
- #: redirection-strings.php:385, redirection-strings.php:390
1337
  msgid "Forever"
1338
  msgstr ""
1339
 
1340
- #: redirection-strings.php:386
1341
  msgid "Never cache"
1342
  msgstr ""
1343
 
1344
- #: redirection-strings.php:387
1345
  msgid "An hour"
1346
  msgstr ""
1347
 
1348
- #: redirection-strings.php:391
1349
  msgid "No IP logging"
1350
  msgstr ""
1351
 
1352
- #: redirection-strings.php:392
1353
  msgid "Full IP logging"
1354
  msgstr ""
1355
 
1356
- #: redirection-strings.php:393
1357
  msgid "Anonymize IP (mask last part)"
1358
  msgstr ""
1359
 
1360
- #: redirection-strings.php:394
1361
  msgid "Default /wp-json/"
1362
  msgstr ""
1363
 
1364
- #: redirection-strings.php:395
1365
  msgid "Raw /index.php?rest_route=/"
1366
  msgstr ""
1367
 
1368
- #: redirection-strings.php:396
1369
  msgid "Relative /wp-json/"
1370
  msgstr ""
1371
 
1372
- #: redirection-strings.php:397
1373
  msgid "URL Monitor Changes"
1374
  msgstr ""
1375
 
1376
- #: redirection-strings.php:398
1377
  msgid "Save changes to this group"
1378
  msgstr ""
1379
 
1380
- #: redirection-strings.php:399
1381
  msgid "For example \"/amp\""
1382
  msgstr ""
1383
 
1384
- #: redirection-strings.php:400
1385
  msgid "Create associated redirect (added to end of URL)"
1386
  msgstr ""
1387
 
1388
- #: redirection-strings.php:401
1389
  msgid "Monitor changes to %(type)s"
1390
  msgstr ""
1391
 
1392
- #: redirection-strings.php:402
1393
  msgid "I'm a nice person and I have helped support the author of this plugin"
1394
  msgstr ""
1395
 
1396
- #: redirection-strings.php:403
1397
  msgid "Redirect Logs"
1398
  msgstr ""
1399
 
1400
- #: redirection-strings.php:404, redirection-strings.php:406
1401
  msgid "(time to keep logs for)"
1402
  msgstr ""
1403
 
1404
- #: redirection-strings.php:405
1405
  msgid "404 Logs"
1406
  msgstr ""
1407
 
1408
- #: redirection-strings.php:407
1409
  msgid "IP Logging"
1410
  msgstr ""
1411
 
1412
- #: redirection-strings.php:408
1413
  msgid "(select IP logging level)"
1414
  msgstr ""
1415
 
1416
- #: redirection-strings.php:409
1417
  msgid "GDPR / Privacy information"
1418
  msgstr ""
1419
 
1420
- #: redirection-strings.php:410
1421
  msgid "URL Monitor"
1422
  msgstr ""
1423
 
1424
- #: redirection-strings.php:411
1425
  msgid "RSS Token"
1426
  msgstr ""
1427
 
1428
- #: redirection-strings.php:412
1429
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1430
  msgstr ""
1431
 
1432
- #: redirection-strings.php:413
1433
  msgid "Auto-generate URL"
1434
  msgstr ""
1435
 
1436
- #: redirection-strings.php:414
1437
  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"
1438
  msgstr ""
1439
 
1440
- #: redirection-strings.php:415
1441
  msgid "Apache Module"
1442
  msgstr ""
1443
 
1444
- #: redirection-strings.php:416
1445
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1446
  msgstr ""
1447
 
1448
- #: redirection-strings.php:417
1449
  msgid "Force HTTPS"
1450
  msgstr ""
1451
 
1452
- #: redirection-strings.php:418
1453
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
1454
  msgstr ""
1455
 
1456
- #: redirection-strings.php:419
1457
  msgid "(beta)"
1458
  msgstr ""
1459
 
1460
- #: redirection-strings.php:420
1461
  msgid "Redirect Cache"
1462
  msgstr ""
1463
 
1464
- #: redirection-strings.php:421
1465
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
1466
  msgstr ""
1467
 
1468
- #: redirection-strings.php:423
1469
  msgid "How Redirection uses the REST API - don't change unless necessary"
1470
  msgstr ""
1471
 
1472
- #: redirection-strings.php:424
1473
  msgid "Update"
1474
  msgstr ""
1475
 
1476
- #: redirection-strings.php:425
1477
  msgid "Type"
1478
  msgstr ""
1479
 
1480
- #: redirection-strings.php:426, redirection-strings.php:454
1481
  msgid "URL"
1482
  msgstr ""
1483
 
1484
- #: redirection-strings.php:427
1485
  msgid "Pos"
1486
  msgstr ""
1487
 
1488
- #: redirection-strings.php:428
1489
  msgid "Hits"
1490
  msgstr ""
1491
 
1492
- #: redirection-strings.php:429
1493
  msgid "Last Access"
1494
  msgstr ""
1495
 
1496
- #: redirection-strings.php:433
1497
  msgid "Reset hits"
1498
  msgstr ""
1499
 
1500
- #: redirection-strings.php:434
1501
  msgid "All groups"
1502
  msgstr ""
1503
 
1504
- #: redirection-strings.php:435
1505
  msgid "Add new redirection"
1506
  msgstr ""
1507
 
1508
- #: redirection-strings.php:440
1509
  msgid "Check Redirect"
1510
  msgstr ""
1511
 
1512
- #: redirection-strings.php:442
1513
  msgid "pass"
1514
  msgstr ""
1515
 
1516
- #: redirection-strings.php:443
1517
  msgid "Need help?"
1518
  msgstr ""
1519
 
1520
- #: redirection-strings.php:444
1521
  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."
1522
  msgstr ""
1523
 
1524
- #: redirection-strings.php:445
1525
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
1526
  msgstr ""
1527
 
1528
- #: redirection-strings.php:446
1529
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1530
  msgstr ""
1531
 
1532
- #: redirection-strings.php:447
1533
  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!"
1534
  msgstr ""
1535
 
1536
- #: redirection-strings.php:448, redirection-strings.php:457
1537
  msgid "Unable to load details"
1538
  msgstr ""
1539
 
1540
- #: redirection-strings.php:449
1541
  msgid "URL is being redirected with Redirection"
1542
  msgstr ""
1543
 
1544
- #: redirection-strings.php:450
1545
  msgid "URL is not being redirected with Redirection"
1546
  msgstr ""
1547
 
1548
- #: redirection-strings.php:451
1549
  msgid "Target"
1550
  msgstr ""
1551
 
1552
- #: redirection-strings.php:452
1553
  msgid "Redirect Tester"
1554
  msgstr ""
1555
 
1556
- #: redirection-strings.php:453
1557
  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."
1558
  msgstr ""
1559
 
1560
- #: redirection-strings.php:455
1561
  msgid "Enter full URL, including http:// or https://"
1562
  msgstr ""
1563
 
1564
- #: redirection-strings.php:456
1565
  msgid "Check"
1566
  msgstr ""
1567
 
1568
- #: redirection-strings.php:458, redirection-strings.php:460
1569
  msgid "Newsletter"
1570
  msgstr ""
1571
 
1572
- #: redirection-strings.php:459
1573
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1574
  msgstr ""
1575
 
1576
- #: redirection-strings.php:461
1577
  msgid "Want to keep up to date with changes to Redirection?"
1578
  msgstr ""
1579
 
1580
- #: redirection-strings.php:462
1581
- msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
1582
  msgstr ""
1583
 
1584
- #: redirection-strings.php:463
1585
  msgid "Your email address:"
1586
  msgstr ""
1587
 
1588
- #: redirection-strings.php:464
1589
  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."
1590
  msgstr ""
1591
 
1592
- #: redirection-strings.php:465
1593
  msgid "⚡️ Magic fix ⚡️"
1594
  msgstr ""
1595
 
1596
- #: redirection-strings.php:466
1597
  msgid "Good"
1598
  msgstr ""
1599
 
1600
- #: redirection-strings.php:467
1601
  msgid "Problem"
1602
  msgstr ""
1603
 
1604
- #: redirection-strings.php:468
1605
  msgid "Plugin Status"
1606
  msgstr ""
1607
 
1608
- #: redirection-strings.php:469
1609
  msgid "Redirection saved"
1610
  msgstr ""
1611
 
1612
- #: redirection-strings.php:470
1613
  msgid "Log deleted"
1614
  msgstr ""
1615
 
1616
- #: redirection-strings.php:471
1617
  msgid "Settings saved"
1618
  msgstr ""
1619
 
1620
- #: redirection-strings.php:472
1621
  msgid "Group saved"
1622
  msgstr ""
1623
 
1624
- #: redirection-strings.php:473
1625
  msgid "404 deleted"
1626
  msgstr ""
1627
 
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
+ #: redirection-admin.php:137, redirection-strings.php:260
18
  msgid "Upgrade Database"
19
  msgstr ""
20
 
32
  msgstr ""
33
 
34
  #. translators: URL
35
+ #: redirection-admin.php:297
36
  msgid "You can find full documentation about using Redirection on the <a href=\"%s\" target=\"_blank\">redirection.me</a> support site."
37
  msgstr ""
38
 
39
+ #: redirection-admin.php:298
40
  msgid "Redirection Support"
41
  msgstr ""
42
 
43
  #. translators: 1: Expected WordPress version, 2: Actual WordPress version
44
+ #: redirection-admin.php:380
45
  msgid "Redirection requires WordPress v%1$1s, you are using v%2$2s - please update your WordPress"
46
  msgstr ""
47
 
48
+ #: redirection-admin.php:383
49
  msgid "Unable to load Redirection"
50
  msgstr ""
51
 
52
+ #: redirection-admin.php:392
53
  msgid "Unable to load Redirection ☹️"
54
  msgstr ""
55
 
56
+ #: redirection-admin.php:393
57
  msgid "This may be caused by another plugin - look at your browser's error console for more details."
58
  msgstr ""
59
 
60
+ #: redirection-admin.php:394, redirection-strings.php:274
61
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
62
  msgstr ""
63
 
64
+ #: redirection-admin.php:395
65
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
66
  msgstr ""
67
 
68
+ #: redirection-admin.php:397
69
  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"
70
  msgstr ""
71
 
72
+ #: redirection-admin.php:398
73
  msgid "Please see the <a href=\"https://redirection.me/support/problems/\">list of common problems</a>."
74
  msgstr ""
75
 
76
+ #: redirection-admin.php:399
77
  msgid "If you think Redirection is at fault then create an issue."
78
  msgstr ""
79
 
80
+ #: redirection-admin.php:400
81
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
82
  msgstr ""
83
 
84
+ #: redirection-admin.php:403, redirection-strings.php:33
85
  msgid "Create Issue"
86
  msgstr ""
87
 
88
+ #: redirection-admin.php:415
89
  msgid "Loading, please wait..."
90
  msgstr ""
91
 
92
+ #: redirection-admin.php:419
93
  msgid "Please enable JavaScript"
94
  msgstr ""
95
 
169
  msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"
170
  msgstr ""
171
 
172
+ #: redirection-strings.php:23, redirection-strings.php:272
173
  msgid "Something went wrong 🙁"
174
  msgstr ""
175
 
301
  msgid "Redirects"
302
  msgstr ""
303
 
304
+ #: redirection-strings.php:60, redirection-strings.php:262
305
  msgid "Groups"
306
  msgstr ""
307
 
313
  msgid "404s"
314
  msgstr ""
315
 
316
+ #: redirection-strings.php:63, redirection-strings.php:263
317
  msgid "Import/Export"
318
  msgstr ""
319
 
320
+ #: redirection-strings.php:64, redirection-strings.php:266
321
  msgid "Options"
322
  msgstr ""
323
 
324
+ #: redirection-strings.php:65, redirection-strings.php:267
325
  msgid "Support"
326
  msgstr ""
327
 
517
  msgid "Regex"
518
  msgstr ""
519
 
520
+ #: redirection-strings.php:120, redirection-strings.php:193, redirection-strings.php:321, redirection-strings.php:329, redirection-strings.php:334
521
  msgid "Source URL"
522
  msgstr ""
523
 
524
+ #: redirection-strings.php:121, redirection-strings.php:254, redirection-strings.php:286
525
  msgid "Cancel"
526
  msgstr ""
527
 
528
+ #: redirection-strings.php:122, redirection-strings.php:292
529
  msgid "Close"
530
  msgstr ""
531
 
597
  msgid "Note it is your responsibility to pass HTTP headers to PHP. Please contact your hosting provider for support about this."
598
  msgstr ""
599
 
600
+ #: redirection-strings.php:144, redirection-strings.php:323, redirection-strings.php:331, redirection-strings.php:336
601
  msgid "IP"
602
  msgstr ""
603
 
875
  msgid "Go back"
876
  msgstr ""
877
 
878
+ #: redirection-strings.php:221, redirection-strings.php:423
879
  msgid "REST API"
880
  msgstr ""
881
 
941
  msgid "Module"
942
  msgstr ""
943
 
944
+ #: redirection-strings.php:239, redirection-strings.php:247, redirection-strings.php:324, redirection-strings.php:325, redirection-strings.php:337, redirection-strings.php:340, redirection-strings.php:362, redirection-strings.php:374, redirection-strings.php:431, redirection-strings.php:439
945
  msgid "Delete"
946
  msgstr ""
947
 
948
+ #: redirection-strings.php:240, redirection-strings.php:250, redirection-strings.php:432, redirection-strings.php:442
949
  msgid "Enable"
950
  msgstr ""
951
 
952
+ #: redirection-strings.php:241, redirection-strings.php:249, redirection-strings.php:433, redirection-strings.php:440
953
  msgid "Disable"
954
  msgstr ""
955
 
965
  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."
966
  msgstr ""
967
 
968
+ #: redirection-strings.php:246, redirection-strings.php:438
969
  msgid "Edit"
970
  msgstr ""
971
 
974
  msgstr ""
975
 
976
  #: redirection-strings.php:255
977
+ msgid "A database upgrade is in progress. Please continue to finish."
978
  msgstr ""
979
 
980
  #: redirection-strings.php:256
981
+ msgid "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features."
982
  msgstr ""
983
 
984
  #: redirection-strings.php:257
985
+ msgid "Update Required"
986
  msgstr ""
987
 
988
  #: redirection-strings.php:258
989
+ msgid "Redirection database needs updating"
990
+ msgstr ""
991
+
992
+ #: redirection-strings.php:259
993
+ msgid "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}."
994
  msgstr ""
995
 
996
+ #: redirection-strings.php:261, database/schema/latest.php:132
997
  msgid "Redirections"
998
  msgstr ""
999
 
1000
+ #: redirection-strings.php:264
1001
  msgid "Logs"
1002
  msgstr ""
1003
 
1004
+ #: redirection-strings.php:265
1005
  msgid "404 errors"
1006
  msgstr ""
1007
 
1008
+ #: redirection-strings.php:268
1009
  msgid "Cached Redirection detected"
1010
  msgstr ""
1011
 
1012
+ #: redirection-strings.php:269
1013
  msgid "Please clear your browser cache and reload this page."
1014
  msgstr ""
1015
 
1016
+ #: redirection-strings.php:270
1017
  msgid "If you are using a caching system such as Cloudflare then please read this: "
1018
  msgstr ""
1019
 
1020
+ #: redirection-strings.php:271
1021
  msgid "clearing your cache."
1022
  msgstr ""
1023
 
1024
+ #: redirection-strings.php:273
1025
  msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
1026
  msgstr ""
1027
 
1028
+ #: redirection-strings.php:275
1029
  msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
1030
  msgstr ""
1031
 
1032
+ #: redirection-strings.php:276
1033
  msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
1034
  msgstr ""
1035
 
1036
+ #: redirection-strings.php:277
1037
  msgid "Add New"
1038
  msgstr ""
1039
 
1040
+ #: redirection-strings.php:278
1041
  msgid "total = "
1042
  msgstr ""
1043
 
1044
+ #: redirection-strings.php:279
1045
  msgid "Import from %s"
1046
  msgstr ""
1047
 
1048
+ #: redirection-strings.php:280
1049
  msgid "Import to group"
1050
  msgstr ""
1051
 
1052
+ #: redirection-strings.php:281
1053
  msgid "Import a CSV, .htaccess, or JSON file."
1054
  msgstr ""
1055
 
1056
+ #: redirection-strings.php:282
1057
  msgid "Click 'Add File' or drag and drop here."
1058
  msgstr ""
1059
 
1060
+ #: redirection-strings.php:283
1061
  msgid "Add File"
1062
  msgstr ""
1063
 
1064
+ #: redirection-strings.php:284
1065
  msgid "File selected"
1066
  msgstr ""
1067
 
1068
+ #: redirection-strings.php:285
1069
  msgid "Upload"
1070
  msgstr ""
1071
 
1072
+ #: redirection-strings.php:287
1073
  msgid "Importing"
1074
  msgstr ""
1075
 
1076
+ #: redirection-strings.php:288
1077
  msgid "Finished importing"
1078
  msgstr ""
1079
 
1080
+ #: redirection-strings.php:289
1081
  msgid "Total redirects imported:"
1082
  msgstr ""
1083
 
1084
+ #: redirection-strings.php:290
1085
  msgid "Double-check the file is the correct format!"
1086
  msgstr ""
1087
 
1088
+ #: redirection-strings.php:291
1089
  msgid "OK"
1090
  msgstr ""
1091
 
1092
+ #: redirection-strings.php:293
1093
  msgid "Are you sure you want to import from %s?"
1094
  msgstr ""
1095
 
1096
+ #: redirection-strings.php:294
1097
  msgid "Plugin Importers"
1098
  msgstr ""
1099
 
1100
+ #: redirection-strings.php:295
1101
  msgid "The following redirect plugins were detected on your site and can be imported from."
1102
  msgstr ""
1103
 
1104
+ #: redirection-strings.php:296
1105
  msgid "Import"
1106
  msgstr ""
1107
 
1108
+ #: redirection-strings.php:297
1109
  msgid "All imports will be appended to the current database."
1110
  msgstr ""
1111
 
1112
+ #: redirection-strings.php:298
1113
  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)."
1114
  msgstr ""
1115
 
1116
+ #: redirection-strings.php:299, redirection-strings.php:319
1117
  msgid "Export"
1118
  msgstr ""
1119
 
1120
+ #: redirection-strings.php:300
1121
  msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
1122
  msgstr ""
1123
 
1124
+ #: redirection-strings.php:301
1125
  msgid "Everything"
1126
  msgstr ""
1127
 
1128
+ #: redirection-strings.php:302
1129
  msgid "WordPress redirects"
1130
  msgstr ""
1131
 
1132
+ #: redirection-strings.php:303
1133
  msgid "Apache redirects"
1134
  msgstr ""
1135
 
1136
+ #: redirection-strings.php:304
1137
  msgid "Nginx redirects"
1138
  msgstr ""
1139
 
1140
+ #: redirection-strings.php:305
1141
  msgid "CSV"
1142
  msgstr ""
1143
 
1144
+ #: redirection-strings.php:306
1145
  msgid "Apache .htaccess"
1146
  msgstr ""
1147
 
1148
+ #: redirection-strings.php:307
1149
  msgid "Nginx rewrite rules"
1150
  msgstr ""
1151
 
1152
+ #: redirection-strings.php:308
1153
  msgid "Redirection JSON"
1154
  msgstr ""
1155
 
1156
+ #: redirection-strings.php:309
1157
  msgid "View"
1158
  msgstr ""
1159
 
1160
+ #: redirection-strings.php:310
1161
  msgid "Download"
1162
  msgstr ""
1163
 
1164
+ #: redirection-strings.php:311
1165
  msgid "Log files can be exported from the log pages."
1166
  msgstr ""
1167
 
1168
+ #: redirection-strings.php:312
1169
  msgid "Delete all from IP %s"
1170
  msgstr ""
1171
 
1172
+ #: redirection-strings.php:313
1173
  msgid "Delete all matching \"%s\""
1174
  msgstr ""
1175
 
1176
+ #: redirection-strings.php:314, redirection-strings.php:350, redirection-strings.php:355
1177
  msgid "Delete All"
1178
  msgstr ""
1179
 
1180
+ #: redirection-strings.php:315
1181
  msgid "Delete the logs - are you sure?"
1182
  msgstr ""
1183
 
1184
+ #: redirection-strings.php:316
1185
  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."
1186
  msgstr ""
1187
 
1188
+ #: redirection-strings.php:317
1189
  msgid "Yes! Delete the logs"
1190
  msgstr ""
1191
 
1192
+ #: redirection-strings.php:318
1193
  msgid "No! Don't delete the logs"
1194
  msgstr ""
1195
 
1196
+ #: redirection-strings.php:320, redirection-strings.php:333
1197
  msgid "Date"
1198
  msgstr ""
1199
 
1200
+ #: redirection-strings.php:322, redirection-strings.php:335
1201
  msgid "Referrer / User Agent"
1202
  msgstr ""
1203
 
1204
+ #: redirection-strings.php:326, redirection-strings.php:353, redirection-strings.php:364
1205
  msgid "Geo Info"
1206
  msgstr ""
1207
 
1208
+ #: redirection-strings.php:327, redirection-strings.php:365
1209
  msgid "Agent Info"
1210
  msgstr ""
1211
 
1212
+ #: redirection-strings.php:328, redirection-strings.php:366
1213
  msgid "Filter by IP"
1214
  msgstr ""
1215
 
1216
+ #: redirection-strings.php:330, redirection-strings.php:332
1217
  msgid "Count"
1218
  msgstr ""
1219
 
1220
+ #: redirection-strings.php:338, redirection-strings.php:341, redirection-strings.php:351, redirection-strings.php:356
1221
  msgid "Redirect All"
1222
  msgstr ""
1223
 
1224
+ #: redirection-strings.php:339, redirection-strings.php:354
1225
  msgid "Block IP"
1226
  msgstr ""
1227
 
1228
+ #: redirection-strings.php:342, redirection-strings.php:358
1229
  msgid "Ignore URL"
1230
  msgstr ""
1231
 
1232
+ #: redirection-strings.php:343
1233
  msgid "No grouping"
1234
  msgstr ""
1235
 
1236
+ #: redirection-strings.php:344
1237
  msgid "Group by URL"
1238
  msgstr ""
1239
 
1240
+ #: redirection-strings.php:345
1241
  msgid "Group by IP"
1242
  msgstr ""
1243
 
1244
+ #: redirection-strings.php:346, redirection-strings.php:359, redirection-strings.php:363, redirection-strings.php:437
1245
  msgid "Add Redirect"
1246
  msgstr ""
1247
 
1248
+ #: redirection-strings.php:347
1249
  msgid "Delete Log Entries"
1250
  msgstr ""
1251
 
1252
+ #: redirection-strings.php:348, redirection-strings.php:361
1253
  msgid "Delete all logs for this entry"
1254
  msgstr ""
1255
 
1256
+ #: redirection-strings.php:349
1257
  msgid "Delete all logs for these entries"
1258
  msgstr ""
1259
 
1260
+ #: redirection-strings.php:352, redirection-strings.php:357
1261
  msgid "Show All"
1262
  msgstr ""
1263
 
1264
+ #: redirection-strings.php:360
1265
  msgid "Delete 404s"
1266
  msgstr ""
1267
 
1268
+ #: redirection-strings.php:367
1269
  msgid "Delete the plugin - are you sure?"
1270
  msgstr ""
1271
 
1272
+ #: redirection-strings.php:368
1273
  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."
1274
  msgstr ""
1275
 
1276
+ #: redirection-strings.php:369
1277
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
1278
  msgstr ""
1279
 
1280
+ #: redirection-strings.php:370
1281
  msgid "Yes! Delete the plugin"
1282
  msgstr ""
1283
 
1284
+ #: redirection-strings.php:371
1285
  msgid "No! Don't delete the plugin"
1286
  msgstr ""
1287
 
1288
+ #: redirection-strings.php:372
1289
  msgid "Delete Redirection"
1290
  msgstr ""
1291
 
1292
+ #: redirection-strings.php:373
1293
  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."
1294
  msgstr ""
1295
 
1296
+ #: redirection-strings.php:375
1297
  msgid "You've supported this plugin - thank you!"
1298
  msgstr ""
1299
 
1300
+ #: redirection-strings.php:376
1301
  msgid "I'd like to support some more."
1302
  msgstr ""
1303
 
1304
+ #: redirection-strings.php:377
1305
  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}}."
1306
  msgstr ""
1307
 
1308
+ #: redirection-strings.php:378
1309
  msgid "You get useful software and I get to carry on making it better."
1310
  msgstr ""
1311
 
1312
+ #: redirection-strings.php:379
1313
  msgid "Support 💰"
1314
  msgstr ""
1315
 
1316
+ #: redirection-strings.php:380
1317
  msgid "Plugin Support"
1318
  msgstr ""
1319
 
1320
+ #: redirection-strings.php:381
1321
  msgid "No logs"
1322
  msgstr ""
1323
 
1324
+ #: redirection-strings.php:382, redirection-strings.php:389
1325
  msgid "A day"
1326
  msgstr ""
1327
 
1328
+ #: redirection-strings.php:383, redirection-strings.php:390
1329
  msgid "A week"
1330
  msgstr ""
1331
 
1332
+ #: redirection-strings.php:384
1333
  msgid "A month"
1334
  msgstr ""
1335
 
1336
+ #: redirection-strings.php:385
1337
  msgid "Two months"
1338
  msgstr ""
1339
 
1340
+ #: redirection-strings.php:386, redirection-strings.php:391
1341
  msgid "Forever"
1342
  msgstr ""
1343
 
1344
+ #: redirection-strings.php:387
1345
  msgid "Never cache"
1346
  msgstr ""
1347
 
1348
+ #: redirection-strings.php:388
1349
  msgid "An hour"
1350
  msgstr ""
1351
 
1352
+ #: redirection-strings.php:392
1353
  msgid "No IP logging"
1354
  msgstr ""
1355
 
1356
+ #: redirection-strings.php:393
1357
  msgid "Full IP logging"
1358
  msgstr ""
1359
 
1360
+ #: redirection-strings.php:394
1361
  msgid "Anonymize IP (mask last part)"
1362
  msgstr ""
1363
 
1364
+ #: redirection-strings.php:395
1365
  msgid "Default /wp-json/"
1366
  msgstr ""
1367
 
1368
+ #: redirection-strings.php:396
1369
  msgid "Raw /index.php?rest_route=/"
1370
  msgstr ""
1371
 
1372
+ #: redirection-strings.php:397
1373
  msgid "Relative /wp-json/"
1374
  msgstr ""
1375
 
1376
+ #: redirection-strings.php:398
1377
  msgid "URL Monitor Changes"
1378
  msgstr ""
1379
 
1380
+ #: redirection-strings.php:399
1381
  msgid "Save changes to this group"
1382
  msgstr ""
1383
 
1384
+ #: redirection-strings.php:400
1385
  msgid "For example \"/amp\""
1386
  msgstr ""
1387
 
1388
+ #: redirection-strings.php:401
1389
  msgid "Create associated redirect (added to end of URL)"
1390
  msgstr ""
1391
 
1392
+ #: redirection-strings.php:402
1393
  msgid "Monitor changes to %(type)s"
1394
  msgstr ""
1395
 
1396
+ #: redirection-strings.php:403
1397
  msgid "I'm a nice person and I have helped support the author of this plugin"
1398
  msgstr ""
1399
 
1400
+ #: redirection-strings.php:404
1401
  msgid "Redirect Logs"
1402
  msgstr ""
1403
 
1404
+ #: redirection-strings.php:405, redirection-strings.php:407
1405
  msgid "(time to keep logs for)"
1406
  msgstr ""
1407
 
1408
+ #: redirection-strings.php:406
1409
  msgid "404 Logs"
1410
  msgstr ""
1411
 
1412
+ #: redirection-strings.php:408
1413
  msgid "IP Logging"
1414
  msgstr ""
1415
 
1416
+ #: redirection-strings.php:409
1417
  msgid "(select IP logging level)"
1418
  msgstr ""
1419
 
1420
+ #: redirection-strings.php:410
1421
  msgid "GDPR / Privacy information"
1422
  msgstr ""
1423
 
1424
+ #: redirection-strings.php:411
1425
  msgid "URL Monitor"
1426
  msgstr ""
1427
 
1428
+ #: redirection-strings.php:412
1429
  msgid "RSS Token"
1430
  msgstr ""
1431
 
1432
+ #: redirection-strings.php:413
1433
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
1434
  msgstr ""
1435
 
1436
+ #: redirection-strings.php:414
1437
  msgid "Auto-generate URL"
1438
  msgstr ""
1439
 
1440
+ #: redirection-strings.php:415
1441
  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"
1442
  msgstr ""
1443
 
1444
+ #: redirection-strings.php:416
1445
  msgid "Apache Module"
1446
  msgstr ""
1447
 
1448
+ #: redirection-strings.php:417
1449
  msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
1450
  msgstr ""
1451
 
1452
+ #: redirection-strings.php:418
1453
  msgid "Force HTTPS"
1454
  msgstr ""
1455
 
1456
+ #: redirection-strings.php:419
1457
  msgid "Force a redirect from HTTP to HTTPS. Please ensure your HTTPS is working before enabling"
1458
  msgstr ""
1459
 
1460
+ #: redirection-strings.php:420
1461
  msgid "(beta)"
1462
  msgstr ""
1463
 
1464
+ #: redirection-strings.php:421
1465
  msgid "Redirect Cache"
1466
  msgstr ""
1467
 
1468
+ #: redirection-strings.php:422
1469
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
1470
  msgstr ""
1471
 
1472
+ #: redirection-strings.php:424
1473
  msgid "How Redirection uses the REST API - don't change unless necessary"
1474
  msgstr ""
1475
 
1476
+ #: redirection-strings.php:425
1477
  msgid "Update"
1478
  msgstr ""
1479
 
1480
+ #: redirection-strings.php:426
1481
  msgid "Type"
1482
  msgstr ""
1483
 
1484
+ #: redirection-strings.php:427, redirection-strings.php:455
1485
  msgid "URL"
1486
  msgstr ""
1487
 
1488
+ #: redirection-strings.php:428
1489
  msgid "Pos"
1490
  msgstr ""
1491
 
1492
+ #: redirection-strings.php:429
1493
  msgid "Hits"
1494
  msgstr ""
1495
 
1496
+ #: redirection-strings.php:430
1497
  msgid "Last Access"
1498
  msgstr ""
1499
 
1500
+ #: redirection-strings.php:434
1501
  msgid "Reset hits"
1502
  msgstr ""
1503
 
1504
+ #: redirection-strings.php:435
1505
  msgid "All groups"
1506
  msgstr ""
1507
 
1508
+ #: redirection-strings.php:436
1509
  msgid "Add new redirection"
1510
  msgstr ""
1511
 
1512
+ #: redirection-strings.php:441
1513
  msgid "Check Redirect"
1514
  msgstr ""
1515
 
1516
+ #: redirection-strings.php:443
1517
  msgid "pass"
1518
  msgstr ""
1519
 
1520
+ #: redirection-strings.php:444
1521
  msgid "Need help?"
1522
  msgstr ""
1523
 
1524
+ #: redirection-strings.php:445
1525
  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."
1526
  msgstr ""
1527
 
1528
+ #: redirection-strings.php:446
1529
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
1530
  msgstr ""
1531
 
1532
+ #: redirection-strings.php:447
1533
  msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
1534
  msgstr ""
1535
 
1536
+ #: redirection-strings.php:448
1537
  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!"
1538
  msgstr ""
1539
 
1540
+ #: redirection-strings.php:449, redirection-strings.php:458
1541
  msgid "Unable to load details"
1542
  msgstr ""
1543
 
1544
+ #: redirection-strings.php:450
1545
  msgid "URL is being redirected with Redirection"
1546
  msgstr ""
1547
 
1548
+ #: redirection-strings.php:451
1549
  msgid "URL is not being redirected with Redirection"
1550
  msgstr ""
1551
 
1552
+ #: redirection-strings.php:452
1553
  msgid "Target"
1554
  msgstr ""
1555
 
1556
+ #: redirection-strings.php:453
1557
  msgid "Redirect Tester"
1558
  msgstr ""
1559
 
1560
+ #: redirection-strings.php:454
1561
  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."
1562
  msgstr ""
1563
 
1564
+ #: redirection-strings.php:456
1565
  msgid "Enter full URL, including http:// or https://"
1566
  msgstr ""
1567
 
1568
+ #: redirection-strings.php:457
1569
  msgid "Check"
1570
  msgstr ""
1571
 
1572
+ #: redirection-strings.php:459, redirection-strings.php:461
1573
  msgid "Newsletter"
1574
  msgstr ""
1575
 
1576
+ #: redirection-strings.php:460
1577
  msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
1578
  msgstr ""
1579
 
1580
+ #: redirection-strings.php:462
1581
  msgid "Want to keep up to date with changes to Redirection?"
1582
  msgstr ""
1583
 
1584
+ #: redirection-strings.php:463
1585
+ 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."
1586
  msgstr ""
1587
 
1588
+ #: redirection-strings.php:464
1589
  msgid "Your email address:"
1590
  msgstr ""
1591
 
1592
+ #: redirection-strings.php:465
1593
  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."
1594
  msgstr ""
1595
 
1596
+ #: redirection-strings.php:466
1597
  msgid "⚡️ Magic fix ⚡️"
1598
  msgstr ""
1599
 
1600
+ #: redirection-strings.php:467
1601
  msgid "Good"
1602
  msgstr ""
1603
 
1604
+ #: redirection-strings.php:468
1605
  msgid "Problem"
1606
  msgstr ""
1607
 
1608
+ #: redirection-strings.php:469
1609
  msgid "Plugin Status"
1610
  msgstr ""
1611
 
1612
+ #: redirection-strings.php:470
1613
  msgid "Redirection saved"
1614
  msgstr ""
1615
 
1616
+ #: redirection-strings.php:471
1617
  msgid "Log deleted"
1618
  msgstr ""
1619
 
1620
+ #: redirection-strings.php:472
1621
  msgid "Settings saved"
1622
  msgstr ""
1623
 
1624
+ #: redirection-strings.php:473
1625
  msgid "Group saved"
1626
  msgstr ""
1627
 
1628
+ #: redirection-strings.php:474
1629
  msgid "404 deleted"
1630
  msgstr ""
1631
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: johnny5
3
  Donate link: https://redirection.me/donation/
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.5
6
- Tested up to: 5.0
7
- Stable tag: 3.7
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
@@ -150,6 +150,10 @@ The plugin works in a similar manner to how WordPress handles permalinks and sho
150
 
151
  == Changelog ==
152
 
 
 
 
 
153
  = 3.7.1 - 13th Jan 2019 =
154
  * Clarify database upgrade text
155
  * Fix Firefox problem with multiple URLs
3
  Donate link: https://redirection.me/donation/
4
  Tags: redirect, htaccess, 301, 404, seo, permalink, apache, nginx, post, admin
5
  Requires at least: 4.5
6
+ Tested up to: 5.0.3
7
+ Stable tag: 3.7.2
8
  Requires PHP: 5.4
9
  License: GPLv3
10
 
150
 
151
  == Changelog ==
152
 
153
+ = 3.7.2 - 16th Jan 2019 =
154
+ * Add further partial upgrade detection
155
+ * Add fallback for sites with no REST API value
156
+
157
  = 3.7.1 - 13th Jan 2019 =
158
  * Clarify database upgrade text
159
  * Fix Firefox problem with multiple URLs
redirection-admin.php CHANGED
@@ -74,7 +74,7 @@ class Redirection_Admin {
74
  $message = sprintf( __( 'Please complete your <a href="%s">Redirection setup</a> to activate the plugin.' ), 'tools.php?page=' . basename( REDIRECTION_FILE ) );
75
  } elseif ( $status->needs_updating() ) {
76
  /* translators: 1: URL to plugin page, 2: current version, 3: target version */
77
- $message = sprintf( __( 'Redirection\'s database needs to be updated - <a href="%1$1s">click to update from %2$2s to %3$3s</a>.' ), 'tools.php?page=' . basename( REDIRECTION_FILE ), $status->get_current_version(), REDIRECTION_DB_VERSION );
78
  }
79
 
80
  if ( ! $message || strpos( Redirection_Request::get_request_url(), 'page=redirection.php' ) !== false ) {
@@ -258,8 +258,6 @@ class Redirection_Admin {
258
  } elseif ( $options['rest_api'] === false ) {
259
  red_set_options( array( 'rest_api' => 0 ) );
260
  }
261
-
262
- red_set_options( array( 'version' => REDIRECTION_VERSION ) );
263
  }
264
  }
265
 
74
  $message = sprintf( __( 'Please complete your <a href="%s">Redirection setup</a> to activate the plugin.' ), 'tools.php?page=' . basename( REDIRECTION_FILE ) );
75
  } elseif ( $status->needs_updating() ) {
76
  /* translators: 1: URL to plugin page, 2: current version, 3: target version */
77
+ $message = sprintf( __( 'Redirection\'s database needs to be updated - <a href="%1$1s">click to update</a>.' ), 'tools.php?page=' . basename( REDIRECTION_FILE ) );
78
  }
79
 
80
  if ( ! $message || strpos( Redirection_Request::get_request_url(), 'page=redirection.php' ) !== false ) {
258
  } elseif ( $options['rest_api'] === false ) {
259
  red_set_options( array( 'rest_api' => 0 ) );
260
  }
 
 
261
  }
262
  }
263
 
redirection-settings.php CHANGED
@@ -213,7 +213,11 @@ function red_get_rest_api( $type = false ) {
213
  if ( $type === REDIRECTION_API_JSON_INDEX ) {
214
  $url = home_url( '/index.php?rest_route=/' );
215
  } elseif ( $type === REDIRECTION_API_JSON_RELATIVE ) {
216
- $url = wp_parse_url( $url, PHP_URL_PATH );
 
 
 
 
217
  }
218
 
219
  return $url;
213
  if ( $type === REDIRECTION_API_JSON_INDEX ) {
214
  $url = home_url( '/index.php?rest_route=/' );
215
  } elseif ( $type === REDIRECTION_API_JSON_RELATIVE ) {
216
+ $relative = wp_parse_url( $url, PHP_URL_PATH );
217
+
218
+ if ( $relative ) {
219
+ $url = $relative;
220
+ }
221
  }
222
 
223
  return $url;
redirection-strings.php CHANGED
@@ -153,12 +153,12 @@ __( "Role", "redirection" ), // client/component/redirect-edit/match/role.js:23
153
  __( "Enter role or capability value", "redirection" ), // client/component/redirect-edit/match/role.js:25
154
  __( "Server", "redirection" ), // client/component/redirect-edit/match/server.js:25
155
  __( "Enter server URL to match against", "redirection" ), // client/component/redirect-edit/match/server.js:27
156
- __( "Anchor values are not sent to the server and cannot be redirected.", "redirection" ), // client/component/redirect-edit/warning.js:33
157
- __( "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.", "redirection" ), // client/component/redirect-edit/warning.js:41
158
- __( "The source URL should probably start with a {{code}}/{{/code}}", "redirection" ), // client/component/redirect-edit/warning.js:55
159
- __( "Remember to enable the \"regex\" checkbox if this is a regular expression.", "redirection" ), // client/component/redirect-edit/warning.js:66
160
- __( "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}}", "redirection" ), // client/component/redirect-edit/warning.js:74
161
- __( "This will redirect everything, including the login pages. Please be sure you want to do this.", "redirection" ), // client/component/redirect-edit/warning.js:87
162
  __( "Filter", "redirection" ), // client/component/table/filter.js:39
163
  __( "Group", "redirection" ), // client/component/table/group.js:39
164
  __( "Select All", "redirection" ), // client/component/table/header/check-column.js:14
@@ -252,11 +252,12 @@ __( "Name", "redirection" ), // client/page/groups/row.js:109
252
  __( "Module", "redirection" ), // client/page/groups/row.js:113
253
  __( "Save", "redirection" ), // client/page/groups/row.js:122
254
  __( "Cancel", "redirection" ), // client/page/groups/row.js:123
255
- __( "Update Required", "redirection" ), // client/page/home/database-update.js:35
256
- __( "Redirection database needs updating", "redirection" ), // client/page/home/database-update.js:38
257
- __( "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.", "redirection" ), // client/page/home/database-update.js:39
258
- __( "As with any upgrade you should make a backup. You can do this by {{download}}downloading a copy{{/download}} of your Redirection data.", "redirection" ), // client/page/home/database-update.js:46
259
- __( "Upgrade Database", "redirection" ), // client/page/home/database-update.js:52
 
260
  __( "Redirections", "redirection" ), // client/page/home/index.js:42
261
  __( "Groups", "redirection" ), // client/page/home/index.js:43
262
  __( "Import/Export", "redirection" ), // client/page/home/index.js:44
@@ -459,7 +460,7 @@ __( "Newsletter", "redirection" ), // client/page/support/newsletter.js:23
459
  __( "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.", "redirection" ), // client/page/support/newsletter.js:25
460
  __( "Newsletter", "redirection" ), // client/page/support/newsletter.js:36
461
  __( "Want to keep up to date with changes to Redirection?", "redirection" ), // client/page/support/newsletter.js:38
462
- __( "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.", "redirection" ), // client/page/support/newsletter.js:39
463
  __( "Your email address:", "redirection" ), // client/page/support/newsletter.js:43
464
  __( "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.", "redirection" ), // client/page/support/status.js:24
465
  __( "⚡️ Magic fix ⚡️", "redirection" ), // client/page/support/status.js:25
153
  __( "Enter role or capability value", "redirection" ), // client/component/redirect-edit/match/role.js:25
154
  __( "Server", "redirection" ), // client/component/redirect-edit/match/server.js:25
155
  __( "Enter server URL to match against", "redirection" ), // client/component/redirect-edit/match/server.js:27
156
+ __( "Anchor values are not sent to the server and cannot be redirected.", "redirection" ), // client/component/redirect-edit/warning.js:37
157
+ __( "This will be converted to a server redirect for the domain {{code}}%(server)s{{/code}}.", "redirection" ), // client/component/redirect-edit/warning.js:45
158
+ __( "The source URL should probably start with a {{code}}/{{/code}}", "redirection" ), // client/component/redirect-edit/warning.js:59
159
+ __( "Remember to enable the \"regex\" checkbox if this is a regular expression.", "redirection" ), // client/component/redirect-edit/warning.js:70
160
+ __( "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}}", "redirection" ), // client/component/redirect-edit/warning.js:78
161
+ __( "This will redirect everything, including the login pages. Please be sure you want to do this.", "redirection" ), // client/component/redirect-edit/warning.js:91
162
  __( "Filter", "redirection" ), // client/component/table/filter.js:39
163
  __( "Group", "redirection" ), // client/component/table/group.js:39
164
  __( "Select All", "redirection" ), // client/component/table/header/check-column.js:14
252
  __( "Module", "redirection" ), // client/page/groups/row.js:113
253
  __( "Save", "redirection" ), // client/page/groups/row.js:122
254
  __( "Cancel", "redirection" ), // client/page/groups/row.js:123
255
+ __( "A database upgrade is in progress. Please continue to finish.", "redirection" ), // client/page/home/database-update.js:22
256
+ __( "Your current database is version %(current)s, the latest is %(latest)s. Please update to use new features.", "redirection" ), // client/page/home/database-update.js:25
257
+ __( "Update Required", "redirection" ), // client/page/home/database-update.js:50
258
+ __( "Redirection database needs updating", "redirection" ), // client/page/home/database-update.js:53
259
+ __( "Please make a backup of your Redirection data: {{download}}downloading a backup{{/download}}.", "redirection" ), // client/page/home/database-update.js:56
260
+ __( "Upgrade Database", "redirection" ), // client/page/home/database-update.js:62
261
  __( "Redirections", "redirection" ), // client/page/home/index.js:42
262
  __( "Groups", "redirection" ), // client/page/home/index.js:43
263
  __( "Import/Export", "redirection" ), // client/page/home/index.js:44
460
  __( "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.", "redirection" ), // client/page/support/newsletter.js:25
461
  __( "Newsletter", "redirection" ), // client/page/support/newsletter.js:36
462
  __( "Want to keep up to date with changes to Redirection?", "redirection" ), // client/page/support/newsletter.js:38
463
+ __( "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" ), // client/page/support/newsletter.js:39
464
  __( "Your email address:", "redirection" ), // client/page/support/newsletter.js:43
465
  __( "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.", "redirection" ), // client/page/support/status.js:24
466
  __( "⚡️ Magic fix ⚡️", "redirection" ), // client/page/support/status.js:25
redirection-version.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
 
3
- define( 'REDIRECTION_VERSION', '3.7.1' );
4
- define( 'REDIRECTION_BUILD', '606dc824e45401f3bb8c33953817e578' );
5
  define( 'REDIRECTION_MIN_WP', '4.5' );
1
  <?php
2
 
3
+ define( 'REDIRECTION_VERSION', '3.7.2' );
4
+ define( 'REDIRECTION_BUILD', '1db9a83c192c4b52c68ec743e037ef1c' );
5
  define( 'REDIRECTION_MIN_WP', '4.5' );
redirection.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Redirection v3.7.1 */!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=69)}([function(e,t,n){"use strict";e.exports=n(70)},function(e,t,n){var r=n(75),o=new r;e.exports={numberFormat:o.numberFormat.bind(o),translate:o.translate.bind(o),configure:o.configure.bind(o),setLocale:o.setLocale.bind(o),getLocale:o.getLocale.bind(o),getLocaleSlug:o.getLocaleSlug.bind(o),addTranslations:o.addTranslations.bind(o),reRenderTranslations:o.reRenderTranslations.bind(o),registerComponentUpdateHook:o.registerComponentUpdateHook.bind(o),registerTranslateHook:o.registerTranslateHook.bind(o),state:o.state,stateObserver:o.stateObserver,on:o.stateObserver.on.bind(o.stateObserver),off:o.stateObserver.removeListener.bind(o.stateObserver),emit:o.stateObserver.emit.bind(o.stateObserver),$this:o,I18N:r}},function(e,t,n){e.exports=n(85)()},function(e,t,n){var r;
2
  /*!
3
  Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
@@ -59,4 +59,4 @@ function(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var o=isFinite(+e)?+e:0,a
59
  *
60
  * This source code is licensed under the MIT license found in the
61
  * LICENSE file in the root directory of this source tree.
62
- */Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,a=r?Symbol.for("react.portal"):60106,i=r?Symbol.for("react.fragment"):60107,l=r?Symbol.for("react.strict_mode"):60108,u=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,s=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.async_mode"):60111,f=r?Symbol.for("react.concurrent_mode"):60111,d=r?Symbol.for("react.forward_ref"):60112,h=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.memo"):60115,y=r?Symbol.for("react.lazy"):60116;function b(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case p:case f:case i:case u:case l:return e;default:switch(e=e&&e.$$typeof){case s:case d:case c:return e;default:return t}}case a:return t}}}function g(e){return b(e)===f}t.typeOf=b,t.AsyncMode=p,t.ConcurrentMode=f,t.ContextConsumer=s,t.ContextProvider=c,t.Element=o,t.ForwardRef=d,t.Fragment=i,t.Profiler=u,t.Portal=a,t.StrictMode=l,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===u||e===l||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===y||e.$$typeof===m||e.$$typeof===c||e.$$typeof===s||e.$$typeof===d)},t.isAsyncMode=function(e){return g(e)||b(e)===p},t.isConcurrentMode=g,t.isContextConsumer=function(e){return b(e)===s},t.isContextProvider=function(e){return b(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return b(e)===d},t.isFragment=function(e){return b(e)===i},t.isProfiler=function(e){return b(e)===u},t.isPortal=function(e){return b(e)===a},t.isStrictMode=function(e){return b(e)===l}},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,n){"use strict";function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,t,n,a){t=t||"&",n=n||"=";var i={};if("string"!=typeof e||0===e.length)return i;var l=/\+/g;e=e.split(t);var u=1e3;a&&"number"==typeof a.maxKeys&&(u=a.maxKeys);var c=e.length;u>0&&c>u&&(c=u);for(var s=0;s<c;++s){var p,f,d,h,m=e[s].replace(l,"%20"),y=m.indexOf(n);y>=0?(p=m.substr(0,y),f=m.substr(y+1)):(p=m,f=""),d=decodeURIComponent(p),h=decodeURIComponent(f),r(i,d)?o(i[d])?i[d].push(h):i[d]=[i[d],h]:i[d]=h}return i};var o=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,n){"use strict";var r=function(e){switch(typeof e){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}};e.exports=function(e,t,n,l){return t=t||"&",n=n||"=",null===e&&(e=void 0),"object"==typeof e?a(i(e),function(i){var l=encodeURIComponent(r(i))+n;return o(e[i])?a(e[i],function(e){return l+encodeURIComponent(r(e))}).join(t):l+encodeURIComponent(r(e[i]))}).join(t):l?encodeURIComponent(r(l))+n+encodeURIComponent(r(e)):""};var o=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)};function a(e,t){if(e.map)return e.map(t);for(var n=[],r=0;r<e.length;r++)n.push(t(e[r],r));return n}var i=Object.keys||function(e){var t=[];for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.push(n);return t}},function(e,t,n){var r=n(92);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,"body.redirection-modal_shown{overflow:hidden}.redirection-modal_wrapper{width:100%}.redirection-modal_backdrop{background-color:#999;opacity:0.6;width:100%;height:100%;position:fixed;top:0;left:0;z-index:10000}.redirection-modal_main{width:100%;height:100%;position:fixed;top:0;left:0;z-index:10000;text-align:center}.redirection-modal_main .redirection-modal_close button{position:absolute;top:0;right:0;padding-top:5px;padding-right:5px;border:none;background-color:#fff;border-radius:2px;cursor:pointer;z-index:10001}.redirection-modal_main .redirection-modal_content{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10000;margin:auto;border-radius:2px;background:#fff;opacity:1;box-shadow:3px 3px 3px rgba(0,0,0,0.2)}.redirection-modal_main .redirection-modal_content{width:60%;height:100px;margin-right:15%;max-width:90%;max-height:90%}.redirection-modal_main .redirection-modal_content h1{margin:0 !important;color:#333 !important}.redirection-modal_wrapper.redirection-modal_wrapper-padless .redirection-modal_content{padding:20px}.redirection-modal_wrapper-padding .redirection-modal_content{padding:10px}.redirection-modal_error h2{text-align:center}.redirection-modal_loading{display:flex;height:100px}.redirection-modal_loading>*{justify-content:center;align-self:center;margin-left:calc(50% - 30px);margin-top:40px}@media screen and (max-width: 782px){.redirection-modal_main .redirection-modal_content{width:80%;margin-right:10%}}\n",""])},function(e,t){e.exports=function(e){var t="undefined"!=typeof window&&window.location;if(!t)throw new Error("fixUrls requires window.location");if(!e||"string"!=typeof e)return e;var n=t.protocol+"//"+t.host,r=n+t.pathname.replace(/\/[^\/]*$/,"/");return e.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(e,t){var o,a=t.trim().replace(/^"(.*)"$/,function(e,t){return t}).replace(/^'(.*)'$/,function(e,t){return t});return/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(a)?e:(o=0===a.indexOf("//")?a:0===a.indexOf("/")?n+a:r+a.replace(/^\.\//,""),"url("+JSON.stringify(o)+")")})}},function(e,t,n){var r=n(95);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,'@-webkit-keyframes loading-fade{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}@keyframes loading-fade{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.placeholder-container{width:100%;height:100px;position:relative}.placeholder-loading{content:"";position:absolute;top:16px;right:8px;bottom:16px;left:8px;padding-left:8px;padding-top:8px;background-color:#bbb;-webkit-animation:loading-fade 1.6s ease-in-out infinite;animation:loading-fade 1.6s ease-in-out infinite}.placeholder-inline{width:100%;height:50px;position:relative}.placeholder-inline .placeholder-loading{top:0;right:0;left:0;bottom:0}.loading-small{width:25px;height:25px}input.current-page{width:60px}.loader-wrapper{position:relative}.loader-textarea{height:100px}.wp-list-table .is-placeholder td{position:relative;height:50px}.wp-list-table .item-loading{opacity:0.3}\n',""])},function(e,t,n){var r=n(97);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".donation .donation-amount{float:left;margin-top:10px}.donation .donation-amount span{font-size:28px;margin-top:4px;vertical-align:bottom}.donation .donation-amount img{width:24px !important;margin-bottom:-5px !important}.donation .donation-amount:after{content:'';display:block;clear:both}.donation input[type=number]{width:60px;margin-left:10px}.donation td,.donation th{padding-bottom:0px;margin-bottom:0px}.donation input[type=submit]{margin-left:10px}\n",""])},function(e,t,n){var r=n(99);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".spinner-container{display:inline-block;position:relative}.css-spinner{position:absolute;left:10px;top:-25px;display:block;width:40px;height:40px;background-color:#333;border-radius:100%;-webkit-animation:sk-scaleout 1.0s infinite ease-in-out;animation:sk-scaleout 1.0s infinite ease-in-out}@-webkit-keyframes sk-scaleout{0%{-webkit-transform:scale(0)}100%{-webkit-transform:scale(1);opacity:0}}@keyframes sk-scaleout{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.spinner-small .css-spinner{width:20px;height:20px;top:-15px;left:5px}\n",""])},function(e,t,n){var r=n(101);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".http-tester input[type=text]{width:80%}.http-tester table{width:95%}.http-tester table th,.http-tester table td{vertical-align:top;padding:5px 5px;overflow:hidden}.http-tester table td{max-width:500px}.http-tester table th{text-align:right;padding-right:10px;width:150px}.http-tester table p{padding-top:0;margin-top:0}.http-tester table code{background-color:transparent;font-size:12px;padding:0}.http-tester ul{list-style-type:disc;margin-left:20px}.http-tester ul li span{margin:-20px}.http-tester ul ul{list-style-type:disc;margin-left:20px}\n",""])},function(e,t,n){var r=n(103);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".plugin-status th{text-align:left;padding:5px;vertical-align:top}.plugin-status td,.plugin-status span{vertical-align:top;padding:5px}.plugin-status .plugin-status-good{background-color:#4ab866;color:white}.plugin-status .plugin-status-problem{background-color:orange;color:white}.plugin-status .plugin-status-error{background-color:#ff3860;color:white}.github{margin-top:8px}.github a{text-decoration:none}.github img{padding-right:10px;margin-bottom:-10px}\n",""])},function(e,t,n){var r=n(105);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,'.redirection .wp-list-table tbody>th:not(.check-column){vertical-align:top;padding:5px}.redirection .wp-list-table .column-last_count{width:80px;text-align:left}.redirection .wp-list-table .column-date{width:150px}.redirection .wp-list-table .column-last_access{width:150px;text-align:left}.redirection .wp-list-table .column-module,.redirection .wp-list-table .column-total,.redirection .wp-list-table .column-ip{width:110px}.redirection .wp-list-table .column-redirects{width:100px;text-align:left}.redirection .wp-list-table .column-position{width:80px;text-align:left}.redirection .wp-list-table .column-code{width:50px;text-align:left}.redirection .wp-list-table .check-column-red{vertical-align:middle;padding:4px 0 0 3px !important;width:2.2em;margin:0px}.redirection .wp-list-table strike{opacity:0.7}.redirection .form-table th a{color:#444}.edit-groups{width:100%}.edit-groups th{line-height:1.2;vertical-align:top;padding:2px;padding-top:5px !important;padding-left:0px;font-size:13px;font-weight:bold}.edit-groups td{padding:2px}.edit-groups input[type=text]{width:100%}.table-buttons{float:left;padding-top:2px}.table-buttons>button,.table-buttons>form,.table-buttons>div.table-button-item{margin-right:5px !important;display:inline}.table-buttons .redirection-modal_wrapper{display:inline}@media screen and (max-width: 782px){input[type="checkbox"]{height:20px;width:20px}.wp-list-table td.column-primary{padding-left:10px;padding-right:10px}.redirection .wp-list-table td,.redirection .wp-list-table input,.redirection .wp-list-table select,.redirection .wp-list-table th{font-size:1em !important}.redirection .wp-list-table td.column-code,.redirection .wp-list-table th.column-code,.redirection .wp-list-table td.column-url .target,.redirection .wp-list-table td.column-date,.redirection .wp-list-table th.column-date,.redirection .wp-list-table td.column-referrer{display:none !important}table.edit-redirection{padding-right:0}table.edit-redirection th{display:block;font-weight:bold;padding-left:0px !important}table.edit-redirection tbody tr td{flex-wrap:wrap}table.edit-redirection tbody tr td>*{flex:1 0 auto;width:100%}table.edit-redirection input[type="text"],table.edit-redirection select,table.edit-redirection input[type="number"]{width:100%}table.edit-redirection select,table.edit-redirection input[type="number"]{height:30px !important}table.edit-groups select,table.edit-groups input[type="number"]{height:30px !important}}\n',""])},function(e,t,n){(function(e,r){var o;/*! https://mths.be/punycode v1.4.1 by @mathias */!function(a){t&&t.nodeType,e&&e.nodeType;var i="object"==typeof r&&r;i.global!==i&&i.window!==i&&i.self;var l,u=2147483647,c=36,s=1,p=26,f=38,d=700,h=72,m=128,y="-",b=/^xn--/,g=/[^\x20-\x7E]/,v=/[\x2E\u3002\uFF0E\uFF61]/g,E={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},w=c-s,O=Math.floor,_=String.fromCharCode;function x(e){throw new RangeError(E[e])}function S(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function k(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),r+S((e=e.replace(v,".")).split("."),t).join(".")}function j(e){for(var t,n,r=[],o=0,a=e.length;o<a;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<a?56320==(64512&(n=e.charCodeAt(o++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),o--):r.push(t);return r}function C(e){return S(e,function(e){var t="";return e>65535&&(t+=_((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=_(e)}).join("")}function P(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function T(e,t,n){var r=0;for(e=n?O(e/d):e>>1,e+=O(e/t);e>w*p>>1;r+=c)e=O(e/w);return O(r+(w+1)*e/(e+f))}function R(e){var t,n,r,o,a,i,l,f,d,b,g,v=[],E=e.length,w=0,_=m,S=h;for((n=e.lastIndexOf(y))<0&&(n=0),r=0;r<n;++r)e.charCodeAt(r)>=128&&x("not-basic"),v.push(e.charCodeAt(r));for(o=n>0?n+1:0;o<E;){for(a=w,i=1,l=c;o>=E&&x("invalid-input"),((f=(g=e.charCodeAt(o++))-48<10?g-22:g-65<26?g-65:g-97<26?g-97:c)>=c||f>O((u-w)/i))&&x("overflow"),w+=f*i,!(f<(d=l<=S?s:l>=S+p?p:l-S));l+=c)i>O(u/(b=c-d))&&x("overflow"),i*=b;S=T(w-a,t=v.length+1,0==a),O(w/t)>u-_&&x("overflow"),_+=O(w/t),w%=t,v.splice(w++,0,_)}return C(v)}function N(e){var t,n,r,o,a,i,l,f,d,b,g,v,E,w,S,k=[];for(v=(e=j(e)).length,t=m,n=0,a=h,i=0;i<v;++i)(g=e[i])<128&&k.push(_(g));for(r=o=k.length,o&&k.push(y);r<v;){for(l=u,i=0;i<v;++i)(g=e[i])>=t&&g<l&&(l=g);for(l-t>O((u-n)/(E=r+1))&&x("overflow"),n+=(l-t)*E,t=l,i=0;i<v;++i)if((g=e[i])<t&&++n>u&&x("overflow"),g==t){for(f=n,d=c;!(f<(b=d<=a?s:d>=a+p?p:d-a));d+=c)S=f-b,w=c-b,k.push(_(P(b+S%w,0))),f=O(S/w);k.push(_(P(f,0))),a=T(n,E,r==o),n=0,++r}++n,++t}return k.join("")}l={version:"1.4.1",ucs2:{decode:j,encode:C},decode:R,encode:N,toASCII:function(e){return k(e,function(e){return g.test(e)?"xn--"+N(e):e})},toUnicode:function(e){return k(e,function(e){return b.test(e)?R(e.slice(4).toLowerCase()):e})}},void 0===(o=function(){return l}.call(t,n,t,e))||(e.exports=o)}()}).call(this,n(107)(e),n(33))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";e.exports={isString:function(e){return"string"==typeof e},isObject:function(e){return"object"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},function(e,t,n){var r=n(110);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-poweredby{position:absolute;right:15px;bottom:10px}\n",""])},function(e,t,n){var r=n(112);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-geomap{padding-bottom:10px;width:100%;position:relative}.redirection-geomap .redirection-geomap_full{height:600px}.redirection-geomap iframe{position:absolute;top:0;left:0;width:100%;background-color:#eee;height:450px;max-height:90%}.redirection-geomap table{background-color:#fff;padding:10px;padding-bottom:30px;position:absolute;bottom:0;left:0;height:130px;width:100%}.redirection-geomap table th,.redirection-geomap table td{padding:0}.redirection-geomap table th{font-weight:bold;text-align:left;width:150px}.redirection-geomap table td{text-align:left}.redirection-geomap h2{line-height:1;margin:0;padding-bottom:10px}@media screen and (max-width: 782px){.redirection-modal_main .redirection-geomap iframe{height:255px}.redirection-modal_main .redirection-geomap .redirection-geomap_full{height:400px !important}}.redirection-geomap_small{height:100px;padding-top:20px}\n",""])},function(e,t,n){var r=n(114);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-useragent{box-sizing:border-box;padding-bottom:30px}.redirection-useragent th{width:120px;vertical-align:top;line-height:1;text-align:left;padding-left:10px}.redirection-useragent td{line-height:1.2}.redirection-useragent td,.redirection-useragent h2{text-align:left}.redirection-useragent h2{margin-bottom:0;padding-left:12px;padding-bottom:5px}.redirection-useragent .redirection-useragent_agent{font-size:12px}.redirection-useragent .redirection-useragent_unknown,.redirection-useragent .redirection-useragent_unknown h2{text-align:center;padding:5px}.redirection-useragent table{padding-bottom:15px;padding-top:10px}\n",""])},function(e,t,n){var r=n(116);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".edit-redirection{width:100%;padding-right:15px}.edit-redirection th{width:130px;font-weight:bold;text-align:left}.edit-redirection th.top{vertical-align:top}.edit-redirection tbody tr td{display:flex;padding:0}.edit-redirection tbody tr td>*{flex:1 1 auto;justify-content:flex-start;margin-right:5px}.edit-redirection tbody tr td .edit-redirection-regex,.edit-redirection tbody tr td>select{flex:0 0 auto}.edit-redirection tbody tr td .edit-redirection-position input{width:60px}.edit-redirection tbody tr td .small-flex{flex-grow:0;padding-top:5px}.edit-redirection tbody td.edit-left>*{flex:none}.edit-redirection textarea{width:100%;height:100px}.edit-redirection .edit-redirection_warning{padding-top:5px;padding-bottom:5px;margin-bottom:0;margin-top:10px;text-align:left;word-wrap:break-word;width:100%}.edit-redirection .edit-redirection_warning span{margin-right:4px}.edit-redirection .edit-redirection_warning a{color:black;text-decoration:none}.edit-redirection .edit-redirection_warning a:hover{text-decoration:underline}.redirection-modal_content .edit-redirection_warning{margin-left:0;box-shadow:none}\n",""])},function(e,t,n){var r=n(118);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".dropzone{border:3px dashed #bbb;text-align:center;padding:10px;padding-bottom:15px;margin-bottom:10px;border-radius:4px;color:#666}.dropzone h3{color:#666}.dropzone p{font-size:14px}.dropzone .groups{margin-top:15px;margin-bottom:15px}.dropzone .is-placeholder{width:50%;height:90px;position:relative;margin:0 auto}.dropzone-hover,.dropzone-hover{border-color:#86bfd4}.dropzone-importing{border-color:transparent}\n",""])},function(e,t,n){var r=n(120);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-httpcheck_results{display:flex;padding-bottom:40px}.redirection-httpcheck_results .redirection-httpcheck_info{text-align:left}.redirection-httpcheck table{width:100%}.redirection-httpcheck .redirection-httpcheck_status{width:80px}.redirection-httpcheck .redirection-httpcheck_status .dashicons{font-size:70px;width:70px;height:70px}.redirection-httpcheck .redirection-httpcheck_status .dashicons-yes{color:#4ab866}.redirection-httpcheck .redirection-httpcheck_status .dashicons-no{color:#ff3860}.redirection-httpcheck h2{margin-bottom:0;padding-bottom:5px;text-align:left;padding-left:10px}\n",""])},function(e,t,n){var r=n(122);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".notice-error{margin-top:3em}.notice-error .closer{float:right;padding-top:5px;font-size:18px;cursor:pointer;color:#333}.notice-error textarea{font-family:courier,Monaco,monospace;font-size:12px;background-color:#eee;width:100%}.notice-error span code{background-color:transparent}\n",""])},function(e,t,n){var r=n(124);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-notice{position:fixed;bottom:25px;right:0;font-weight:bold;box-shadow:3px 3px 3px rgba(0,0,0,0.2);border-top:1px solid #eee;cursor:pointer;transition:width 1s ease-in-out}.redirection-notice p{padding-right:20px}.redirection-notice .closer{position:absolute;right:5px;top:10px;font-size:16px;opacity:0.8}.redirection-notice.notice-shrunk{width:20px}.redirection-notice.notice-shrunk p{font-size:16px}.redirection-notice.notice-shrunk .closer{display:none}\n",""])},function(e,t,n){var r=n(126);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".notice-progress{border-left:5px solid #4ab866;padding:10px;cursor:auto;bottom:80px}.notice-progress p{margin-left:50px;-webkit-animation:loading-fade 1.2s ease-in-out infinite;animation:loading-fade 1.2s ease-in-out infinite}.notice-progress .spinner-container{position:absolute;left:0;top:33px}\n",""])},function(e,t,n){var r=n(128);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,'.subsubsub-container::before,.subsubsub-container::after{content:"";display:table}.subsubsub-container::after{clear:both}\n',""])},function(e,t,n){e.exports={default:n(130),__esModule:!0}},function(e,t,n){n(131),e.exports=n(9).Object.assign},function(e,t,n){var r=n(23);r(r.S+r.F,"Object",{assign:n(133)})},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){"use strict";var r=n(27),o=n(40),a=n(30),i=n(58),l=n(56),u=Object.assign;e.exports=!u||n(25)(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r})?function(e,t){for(var n=i(e),u=arguments.length,c=1,s=o.f,p=a.f;u>c;)for(var f,d=l(arguments[c++]),h=s?r(d).concat(s(d)):r(d),m=h.length,y=0;m>y;)p.call(d,f=h[y++])&&(n[f]=d[f]);return n}:u},function(e,t,n){var r=n(15),o=n(135),a=n(136);e.exports=function(e){return function(t,n,i){var l,u=r(t),c=o(u.length),s=a(i,c);if(e&&n!=n){for(;c>s;)if((l=u[s++])!=l)return!0}else for(;c>s;s++)if((e||s in u)&&u[s]===n)return e||s||0;return!e&&-1}}},function(e,t,n){var r=n(36),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){var r=n(36),o=Math.max,a=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):a(e,t)}},function(e,t,n){e.exports={default:n(138),__esModule:!0}},function(e,t,n){n(139),n(145),e.exports=n(44).f("iterator")},function(e,t,n){"use strict";var r=n(140)(!0);n(60)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){var r=n(36),o=n(35);e.exports=function(e){return function(t,n){var a,i,l=String(o(t)),u=r(n),c=l.length;return u<0||u>=c?e?"":void 0:(a=l.charCodeAt(u))<55296||a>56319||u+1===c||(i=l.charCodeAt(u+1))<56320||i>57343?e?l.charAt(u):a:e?l.slice(u,u+2):i-56320+(a-55296<<10)+65536}}},function(e,t,n){"use strict";var r=n(42),o=n(26),a=n(43),i={};n(11)(i,n(16)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(i,{next:o(1,n)}),a(e,t+" Iterator")}},function(e,t,n){var r=n(12),o=n(24),a=n(27);e.exports=n(14)?Object.defineProperties:function(e,t){o(e);for(var n,i=a(t),l=i.length,u=0;l>u;)r.f(e,n=i[u++],t[n]);return e}},function(e,t,n){var r=n(7).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(10),o=n(58),a=n(37)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),r(e,a)?e[a]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},function(e,t,n){n(146);for(var r=n(7),o=n(11),a=n(41),i=n(16)("toStringTag"),l="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),u=0;u<l.length;u++){var c=l[u],s=r[c],p=s&&s.prototype;p&&!p[i]&&o(p,i,c),a[c]=a.Array}},function(e,t,n){"use strict";var r=n(147),o=n(148),a=n(41),i=n(15);e.exports=n(60)(Array,"Array",function(e,t){this._t=i(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),a.Arguments=a.Array,r("keys"),r("values"),r("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){e.exports={default:n(150),__esModule:!0}},function(e,t,n){n(151),n(156),n(157),n(158),e.exports=n(9).Symbol},function(e,t,n){"use strict";var r=n(7),o=n(10),a=n(14),i=n(23),l=n(61),u=n(152).KEY,c=n(25),s=n(38),p=n(43),f=n(29),d=n(16),h=n(44),m=n(45),y=n(153),b=n(154),g=n(24),v=n(13),E=n(15),w=n(34),O=n(26),_=n(42),x=n(155),S=n(63),k=n(12),j=n(27),C=S.f,P=k.f,T=x.f,R=r.Symbol,N=r.JSON,D=N&&N.stringify,A=d("_hidden"),I=d("toPrimitive"),L={}.propertyIsEnumerable,F=s("symbol-registry"),U=s("symbols"),M=s("op-symbols"),z=Object.prototype,B="function"==typeof R,W=r.QObject,G=!W||!W.prototype||!W.prototype.findChild,H=a&&c(function(){return 7!=_(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=C(z,t);r&&delete z[t],P(e,t,n),r&&e!==z&&P(z,t,r)}:P,$=function(e){var t=U[e]=_(R.prototype);return t._k=e,t},V=B&&"symbol"==typeof R.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof R},q=function(e,t,n){return e===z&&q(M,t,n),g(e),t=w(t,!0),g(n),o(U,t)?(n.enumerable?(o(e,A)&&e[A][t]&&(e[A][t]=!1),n=_(n,{enumerable:O(0,!1)})):(o(e,A)||P(e,A,O(1,{})),e[A][t]=!0),H(e,t,n)):P(e,t,n)},Y=function(e,t){g(e);for(var n,r=y(t=E(t)),o=0,a=r.length;a>o;)q(e,n=r[o++],t[n]);return e},K=function(e){var t=L.call(this,e=w(e,!0));return!(this===z&&o(U,e)&&!o(M,e))&&(!(t||!o(this,e)||!o(U,e)||o(this,A)&&this[A][e])||t)},Q=function(e,t){if(e=E(e),t=w(t,!0),e!==z||!o(U,t)||o(M,t)){var n=C(e,t);return!n||!o(U,t)||o(e,A)&&e[A][t]||(n.enumerable=!0),n}},J=function(e){for(var t,n=T(E(e)),r=[],a=0;n.length>a;)o(U,t=n[a++])||t==A||t==u||r.push(t);return r},X=function(e){for(var t,n=e===z,r=T(n?M:E(e)),a=[],i=0;r.length>i;)!o(U,t=r[i++])||n&&!o(z,t)||a.push(U[t]);return a};B||(l((R=function(){if(this instanceof R)throw TypeError("Symbol is not a constructor!");var e=f(arguments.length>0?arguments[0]:void 0),t=function(n){this===z&&t.call(M,n),o(this,A)&&o(this[A],e)&&(this[A][e]=!1),H(this,e,O(1,n))};return a&&G&&H(z,e,{configurable:!0,set:t}),$(e)}).prototype,"toString",function(){return this._k}),S.f=Q,k.f=q,n(62).f=x.f=J,n(30).f=K,n(40).f=X,a&&!n(28)&&l(z,"propertyIsEnumerable",K,!0),h.f=function(e){return $(d(e))}),i(i.G+i.W+i.F*!B,{Symbol:R});for(var Z="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ee=0;Z.length>ee;)d(Z[ee++]);for(var te=j(d.store),ne=0;te.length>ne;)m(te[ne++]);i(i.S+i.F*!B,"Symbol",{for:function(e){return o(F,e+="")?F[e]:F[e]=R(e)},keyFor:function(e){if(!V(e))throw TypeError(e+" is not a symbol!");for(var t in F)if(F[t]===e)return t},useSetter:function(){G=!0},useSimple:function(){G=!1}}),i(i.S+i.F*!B,"Object",{create:function(e,t){return void 0===t?_(e):Y(_(e),t)},defineProperty:q,defineProperties:Y,getOwnPropertyDescriptor:Q,getOwnPropertyNames:J,getOwnPropertySymbols:X}),N&&i(i.S+i.F*(!B||c(function(){var e=R();return"[null]"!=D([e])||"{}"!=D({a:e})||"{}"!=D(Object(e))})),"JSON",{stringify:function(e){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=t=r[1],(v(t)||void 0!==e)&&!V(e))return b(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!V(t))return t}),r[1]=t,D.apply(N,r)}}),R.prototype[I]||n(11)(R.prototype,I,R.prototype.valueOf),p(R,"Symbol"),p(Math,"Math",!0),p(r.JSON,"JSON",!0)},function(e,t,n){var r=n(29)("meta"),o=n(13),a=n(10),i=n(12).f,l=0,u=Object.isExtensible||function(){return!0},c=!n(25)(function(){return u(Object.preventExtensions({}))}),s=function(e){i(e,r,{value:{i:"O"+ ++l,w:{}}})},p=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!a(e,r)){if(!u(e))return"F";if(!t)return"E";s(e)}return e[r].i},getWeak:function(e,t){if(!a(e,r)){if(!u(e))return!0;if(!t)return!1;s(e)}return e[r].w},onFreeze:function(e){return c&&p.NEED&&u(e)&&!a(e,r)&&s(e),e}}},function(e,t,n){var r=n(27),o=n(40),a=n(30);e.exports=function(e){var t=r(e),n=o.f;if(n)for(var i,l=n(e),u=a.f,c=0;l.length>c;)u.call(e,i=l[c++])&&t.push(i);return t}},function(e,t,n){var r=n(57);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(15),o=n(62).f,a={}.toString,i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return i&&"[object Window]"==a.call(e)?function(e){try{return o(e)}catch(e){return i.slice()}}(e):o(r(e))}},function(e,t){},function(e,t,n){n(45)("asyncIterator")},function(e,t,n){n(45)("observable")},function(e,t,n){e.exports={default:n(160),__esModule:!0}},function(e,t,n){n(161),e.exports=n(9).Object.setPrototypeOf},function(e,t,n){var r=n(23);r(r.S,"Object",{setPrototypeOf:n(162).set})},function(e,t,n){var r=n(13),o=n(24),a=function(e,t){if(o(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{(r=n(52)(Function.call,n(63).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return a(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:a}},function(e,t,n){e.exports={default:n(164),__esModule:!0}},function(e,t,n){n(165);var r=n(9).Object;e.exports=function(e,t){return r.create(e,t)}},function(e,t,n){var r=n(23);r(r.S,"Object",{create:n(42)})},function(e,t,n){var r=n(167);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".redirection-database_error{text-align:left;box-shadow:none;margin-top:1em}.redirection-database_error ul{list-style-type:disc}.redirection-database_error li{margin-left:20px}.redirection-database .redirection-database_spinner{margin:0 auto;width:100px}.redirection-database .redirection-database{clear:both;padding-top:20px}.redirection-database .rc-progress-line{clear:both;display:block;margin-bottom:20px}.redirection-database_wrapper h1,.redirection-database_wrapper>p{text-align:center}.redirection-database_wrapper .redirection-database_progress{background-color:#fff;text-align:center;width:75%;margin:0 auto;margin-top:30px;padding:20px;border:1px solid #ddd;border-radius:3px;box-shadow:3px 3px 3px #ddd}\n",""])},function(e,t,n){var r=n(169);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,".wizard-wrapper{width:100%;max-width:700px;margin:0 auto;margin-top:90px;color:#555}.wizard-wrapper h1{text-align:center;font-weight:300;color:#999}.wizard{padding:40px;padding-bottom:30px;background-color:white;border-top:2px solid #ca4a1f;border-bottom:2px solid #ca4a1f}.wizard h2{font-size:2em;font-weight:400;padding-bottom:10px;margin-top:5px;margin-bottom:0}.wizard h3{font-size:1.3em;font-weight:300;padding-top:10px}.wizard ul{list-style-type:disc}.wizard li{margin-left:20px}.wizard .notice{margin-bottom:20px;margin-left:0;box-shadow:none;margin-top:0}.wizard .redirection-database_error h2{padding-top:0;margin-top:0}.wizard-buttons{margin-top:20px}.wizard-option{padding:2px 0}.wizard-option label{font-weight:bold}.wizard-option_disabled{opacity:0.5}.wizard-support{text-align:center;padding-top:10px}.wizard-support a{color:#555}.button.wizard-retry{float:right;margin-top:5px}.api-result{padding:5px;height:30px}.api-result .spinner-container{line-height:1;vertical-align:middle}.api-result .css-spinner{position:relative;top:0;left:0;width:26px;height:26px;margin-right:5px}.api-result .dashicons{vertical-align:middle;margin-right:3px;width:26px;height:26px;font-size:26px;padding:0;padding-right:2px}.api-result .dashicons-no{color:#ff3860}.api-result .dashicons-yes{color:#4ab866}.api-result .api-result_error{font-family:'Courier New', Courier, monospace;font-weight:bold}\n",""])},function(e,t,n){var r=n(171);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};n(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,t,n){(e.exports=n(4)(!1)).push([e.i,'.wp-core-ui .button-delete{box-shadow:none;text-shadow:none;background-color:#ff3860;border-color:transparent;color:#fff}.wp-core-ui .button-delete:hover{background-color:#ff3860;border-color:transparent;box-shadow:none;text-shadow:none}.inline-notice{background:#fff;border-left:4px solid #fff;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);margin:5px 15px 2px;padding:1px 12px;margin:5px 0 15px;border-left-color:#ffb900}.inline-notice.inline-general{border-left-color:#46b450}.addTop{margin-top:20px}@media screen and (max-width: 782px){.newsletter form input[type=email]{display:block;width:100%;margin:5px 0px}.import select{width:100%;margin:5px 0px}.plugin-importer button{width:100%}p.search-box input[name="s"]{margin-top:20px}}.module-export{border:1px solid #ddd;padding:5px;font-family:courier,Monaco,monospace;margin-top:15px;width:100%;background-color:white !important}.redirects a.advanced{text-decoration:none}.error{padding-bottom:10px !important}\n',""])},function(e,t,n){"use strict";n.r(t);var r=n(64),o=n.n(r),a={searchParams:"URLSearchParams"in self,iterable:"Symbol"in self&&"iterator"in Symbol,blob:"FileReader"in self&&"Blob"in self&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};if(a.arrayBuffer)var i=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],l=ArrayBuffer.isView||function(e){return e&&i.indexOf(Object.prototype.toString.call(e))>-1};function u(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function c(e){return"string"!=typeof e&&(e=String(e)),e}function s(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return a.iterable&&(t[Symbol.iterator]=function(){return t}),t}function p(e){this.map={},e instanceof p?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function f(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function d(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function h(e){var t=new FileReader,n=d(t);return t.readAsArrayBuffer(e),n}function m(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function y(){return this.bodyUsed=!1,this._initBody=function(e){var t;this._bodyInit=e,e?"string"==typeof e?this._bodyText=e:a.blob&&Blob.prototype.isPrototypeOf(e)?this._bodyBlob=e:a.formData&&FormData.prototype.isPrototypeOf(e)?this._bodyFormData=e:a.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)?this._bodyText=e.toString():a.arrayBuffer&&a.blob&&((t=e)&&DataView.prototype.isPrototypeOf(t))?(this._bodyArrayBuffer=m(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):a.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(e)||l(e))?this._bodyArrayBuffer=m(e):this._bodyText=e=Object.prototype.toString.call(e):this._bodyText="",this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):a.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},a.blob&&(this.blob=function(){var e=f(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?f(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(h)}),this.text=function(){var e,t,n,r=f(this);if(r)return r;if(this._bodyBlob)return e=this._bodyBlob,t=new FileReader,n=d(t),t.readAsText(e),n;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r<t.length;r++)n[r]=String.fromCharCode(t[r]);return n.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},a.formData&&(this.formData=function(){return this.text().then(v)}),this.json=function(){return this.text().then(JSON.parse)},this}p.prototype.append=function(e,t){e=u(e),t=c(t);var n=this.map[e];this.map[e]=n?n+", "+t:t},p.prototype.delete=function(e){delete this.map[u(e)]},p.prototype.get=function(e){return e=u(e),this.has(e)?this.map[e]:null},p.prototype.has=function(e){return this.map.hasOwnProperty(u(e))},p.prototype.set=function(e,t){this.map[u(e)]=c(t)},p.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},p.prototype.keys=function(){var e=[];return this.forEach(function(t,n){e.push(n)}),s(e)},p.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),s(e)},p.prototype.entries=function(){var e=[];return this.forEach(function(t,n){e.push([n,t])}),s(e)},a.iterable&&(p.prototype[Symbol.iterator]=p.prototype.entries);var b=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function g(e,t){var n,r,o=(t=t||{}).body;if(e instanceof g){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new p(e.headers)),this.method=e.method,this.mode=e.mode,this.signal=e.signal,o||null==e._bodyInit||(o=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"same-origin",!t.headers&&this.headers||(this.headers=new p(t.headers)),this.method=(n=t.method||this.method||"GET",r=n.toUpperCase(),b.indexOf(r)>-1?r:n),this.mode=t.mode||this.mode||null,this.signal=t.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(o)}function v(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),o=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(o))}}),t}function E(e,t){t||(t={}),this.type="default",this.status=void 0===t.status?200:t.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new p(t.headers),this.url=t.url||"",this._initBody(e)}g.prototype.clone=function(){return new g(this,{body:this._bodyInit})},y.call(g.prototype),y.call(E.prototype),E.prototype.clone=function(){return new E(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new p(this.headers),url:this.url})},E.error=function(){var e=new E(null,{status:0,statusText:""});return e.type="error",e};var w=[301,302,303,307,308];E.redirect=function(e,t){if(-1===w.indexOf(t))throw new RangeError("Invalid status code");return new E(null,{status:t,headers:{location:e}})};var O=self.DOMException;try{new O}catch(e){(O=function(e,t){this.message=e,this.name=t;var n=Error(e);this.stack=n.stack}).prototype=Object.create(Error.prototype),O.prototype.constructor=O}function _(e,t){return new Promise(function(n,r){var o=new g(e,t);if(o.signal&&o.signal.aborted)return r(new O("Aborted","AbortError"));var i=new XMLHttpRequest;function l(){i.abort()}i.onload=function(){var e,t,r={status:i.status,statusText:i.statusText,headers:(e=i.getAllResponseHeaders()||"",t=new p,e.replace(/\r?\n[\t ]+/g," ").split(/\r?\n/).forEach(function(e){var n=e.split(":"),r=n.shift().trim();if(r){var o=n.join(":").trim();t.append(r,o)}}),t)};r.url="responseURL"in i?i.responseURL:r.headers.get("X-Request-URL");var o="response"in i?i.response:i.responseText;n(new E(o,r))},i.onerror=function(){r(new TypeError("Network request failed"))},i.ontimeout=function(){r(new TypeError("Network request failed"))},i.onabort=function(){r(new O("Aborted","AbortError"))},i.open(o.method,o.url,!0),"include"===o.credentials?i.withCredentials=!0:"omit"===o.credentials&&(i.withCredentials=!1),"responseType"in i&&a.blob&&(i.responseType="blob"),o.headers.forEach(function(e,t){i.setRequestHeader(t,e)}),o.signal&&(o.signal.addEventListener("abort",l),i.onreadystatechange=function(){4===i.readyState&&o.signal.removeEventListener("abort",l)}),i.send(void 0===o._bodyInit?null:o._bodyInit)})}_.polyfill=!0,self.fetch||(self.fetch=_,self.Headers=p,self.Request=g,self.Response=E),!window.Promise&&(window.Promise=o.a),Array.from||(Array.from=function(e){return[].slice.call(e)}),"function"!=typeof Object.assign&&(Object.assign=function(e){if(null==e)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),n=1;n<arguments.length;n++){var r=arguments[n];if(null!=r)for(var o in r)r.hasOwnProperty(o)&&(t[o]=r[o])}return t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),n=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var r=arguments[1],o=0;o<n;){var a=t[o];if(e.call(r,a,o,t))return a;o++}}});var x=n(0),S=n.n(x),k=n(31),j=n.n(k),C=n(65),P=n(1),T=n.n(P);function R(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}var N=n(2),D=n.n(N),A=S.a.createContext(null),I=function(e){function t(t){var n;n=e.call(this,t)||this;var r=t.store;return n.state={storeState:r.getState(),store:r},n}R(t,e);var n=t.prototype;return n.componentDidMount=function(){this._isMounted=!0,this.subscribe()},n.componentWillUnmount=function(){this.unsubscribe&&this.unsubscribe(),this._isMounted=!1},n.componentDidUpdate=function(e){this.props.store!==e.store&&(this.unsubscribe&&this.unsubscribe(),this.subscribe())},n.subscribe=function(){var e=this,t=this.props.store;this.unsubscribe=t.subscribe(function(){var n=t.getState();e._isMounted&&e.setState(function(e){return e.storeState===n?null:{storeState:n}})});var n=t.getState();n!==this.state.storeState&&this.setState({storeState:n})},n.render=function(){var e=this.props.context||A;return S.a.createElement(e.Provider,{value:this.state},this.props.children)},t}(x.Component);I.propTypes={store:D.a.shape({subscribe:D.a.func.isRequired,dispatch:D.a.func.isRequired,getState:D.a.func.isRequired}),context:D.a.object,children:D.a.any};var L=I;function F(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function U(){return(U=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function M(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}var z=n(46),B=n.n(z),W=n(22),G=n.n(W);n(51);function H(e,t){void 0===t&&(t={});var n=t,r=n.getDisplayName,o=void 0===r?function(e){return"ConnectAdvanced("+e+")"}:r,a=n.methodName,i=void 0===a?"connectAdvanced":a,l=n.renderCountProp,u=void 0===l?void 0:l,c=n.shouldHandleStateChanges,s=void 0===c||c,p=n.storeKey,f=void 0===p?"store":p,d=n.withRef,h=void 0!==d&&d,m=n.forwardRef,y=void 0!==m&&m,b=n.context,g=void 0===b?A:b,v=M(n,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"]);G()(void 0===u,"renderCountProp is removed. render counting is built into the latest React dev tools profiling extension"),G()(!h,"withRef is removed. To access the wrapped instance, use a ref on the connected component");var E="To use a custom Redux store for specific components, create a custom React context with React.createContext(), and pass the context object to React-Redux's Provider and specific components like: <Provider context={MyContext}><ConnectedComponent context={MyContext} /></Provider>. You may also pass a {context : MyContext} option to connect";G()("store"===f,"storeKey has been removed and does not do anything. "+E);var w=g;return function(t){var n=t.displayName||t.name||"Component",r=o(n),a=U({},v,{getDisplayName:o,methodName:i,renderCountProp:u,shouldHandleStateChanges:s,storeKey:f,displayName:r,wrappedComponentName:n,WrappedComponent:t}),l=v.pure,c=x.Component,p=t;l&&(c=x.PureComponent);var d=function(t){function n(n){var r,o,i,u,c,s,d,h,m;return r=t.call(this,n)||this,G()(y?!n.wrapperProps[f]:!n[f],"Passing redux store in props has been removed and does not do anything. "+E),r.selectDerivedProps=function(t,n,r){if(l&&o===n&&i===t)return u;r!==c&&(c=r,s=e(r.dispatch,a)),o=n,i=t;var p=s(t,n);return u===p?u:u=p},r.selectChildElement=function(e,t){return e===d&&t===h||(d=e,h=t,m=S.a.createElement(p,U({},e,{ref:t}))),m},r.renderWrappedComponent=r.renderWrappedComponent.bind(F(F(r))),r}R(n,t);var o=n.prototype;return o.renderWrappedComponent=function(e){G()(e,'Could not find "store" in the context of "'+r+'". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to '+r+" in connect options.");var t,n=e.storeState,o=e.store,a=this.props;y&&(a=this.props.wrapperProps,t=this.props.forwardedRef);var i=this.selectDerivedProps(n,a,o);return this.selectChildElement(i,t)},o.render=function(){var e=this.props.context||w;return S.a.createElement(e.Consumer,null,this.renderWrappedComponent)},n}(c);if(d.WrappedComponent=t,d.displayName=r,y){var h=S.a.forwardRef(function(e,t){return S.a.createElement(d,{wrapperProps:e,forwardedRef:t})});return h.displayName=r,h.WrappedComponent=t,B()(h,t)}return B()(d,t)}}var $=Object.prototype.hasOwnProperty;function V(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function q(e,t){if(V(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var o=0;o<n.length;o++)if(!$.call(t,n[o])||!V(e[n[o]],t[n[o]]))return!1;return!0}var Y=n(8);function K(e){return function(t,n){var r=e(t,n);function o(){return r}return o.dependsOnOwnProps=!1,o}}function Q(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function J(e,t){return function(t,n){n.displayName;var r=function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)};return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=Q(e);var o=r(t,n);return"function"==typeof o&&(r.mapToProps=o,r.dependsOnOwnProps=Q(o),o=r(t,n)),o},r}}var X=[function(e){return"function"==typeof e?J(e):void 0},function(e){return e?void 0:K(function(e){return{dispatch:e}})},function(e){return e&&"object"==typeof e?K(function(t){return Object(Y.bindActionCreators)(e,t)}):void 0}];var Z=[function(e){return"function"==typeof e?J(e):void 0},function(e){return e?void 0:K(function(){return{}})}];function ee(e,t,n){return U({},n,e,t)}var te=[function(e){return"function"==typeof e?function(e){return function(t,n){n.displayName;var r,o=n.pure,a=n.areMergedPropsEqual,i=!1;return function(t,n,l){var u=e(t,n,l);return i?o&&a(u,r)||(r=u):(i=!0,r=u),r}}}(e):void 0},function(e){return e?void 0:function(){return ee}}];function ne(e,t,n,r){return function(o,a){return n(e(o,a),t(r,a),a)}}function re(e,t,n,r,o){var a,i,l,u,c,s=o.areStatesEqual,p=o.areOwnPropsEqual,f=o.areStatePropsEqual,d=!1;function h(o,d){var h,m,y=!p(d,i),b=!s(o,a);return a=o,i=d,y&&b?(l=e(a,i),t.dependsOnOwnProps&&(u=t(r,i)),c=n(l,u,i)):y?(e.dependsOnOwnProps&&(l=e(a,i)),t.dependsOnOwnProps&&(u=t(r,i)),c=n(l,u,i)):b?(h=e(a,i),m=!f(h,l),l=h,m&&(c=n(l,u,i)),c):c}return function(o,s){return d?h(o,s):(l=e(a=o,i=s),u=t(r,i),c=n(l,u,i),d=!0,c)}}function oe(e,t){var n=t.initMapStateToProps,r=t.initMapDispatchToProps,o=t.initMergeProps,a=M(t,["initMapStateToProps","initMapDispatchToProps","initMergeProps"]),i=n(e,a),l=r(e,a),u=o(e,a);return(a.pure?re:ne)(i,l,u,e,a)}function ae(e,t,n){for(var r=t.length-1;r>=0;r--){var o=t[r](e);if(o)return o}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function ie(e,t){return e===t}var le,ue,ce,se,pe,fe,de,he,me,ye,be,ge,ve=(ce=(ue=void 0===le?{}:le).connectHOC,se=void 0===ce?H:ce,pe=ue.mapStateToPropsFactories,fe=void 0===pe?Z:pe,de=ue.mapDispatchToPropsFactories,he=void 0===de?X:de,me=ue.mergePropsFactories,ye=void 0===me?te:me,be=ue.selectorFactory,ge=void 0===be?oe:be,function(e,t,n,r){void 0===r&&(r={});var o=r,a=o.pure,i=void 0===a||a,l=o.areStatesEqual,u=void 0===l?ie:l,c=o.areOwnPropsEqual,s=void 0===c?q:c,p=o.areStatePropsEqual,f=void 0===p?q:p,d=o.areMergedPropsEqual,h=void 0===d?q:d,m=M(o,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),y=ae(e,fe,"mapStateToProps"),b=ae(t,he,"mapDispatchToProps"),g=ae(n,ye,"mergeProps");return se(ge,U({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:y,initMapDispatchToProps:b,initMergeProps:g,pure:i,areStatesEqual:u,areOwnPropsEqual:s,areStatePropsEqual:f,areMergedPropsEqual:h},m))}),Ee=n(67);function we(e){return function(t){var n=t.dispatch,r=t.getState;return function(t){return function(o){return"function"==typeof o?o(n,r,e):t(o)}}}}var Oe=we();Oe.withExtraArgument=we;var _e=Oe,xe="SETTING_LOAD_START",Se="SETTING_LOAD_SUCCESS",ke="SETTING_LOAD_FAILED",je="SETTING_LOAD_STATUS",Ce="SETTING_SAVING",Pe="SETTING_SAVED",Te="SETTING_SAVE_FAILED",Re="SETTING_DATABASE_START",Ne="SETTING_DATABASE_FAILED",De="SETTING_DATABASE_SUCCESS",Ae="SETTING_DATABASE_COMPLETE",Ie="SETTING_DATABASE_FINISH",Le="SETTING_DATABASE_SHOW",Fe="SETTING_API_FAILED",Ue="SETTING_API_SUCCESS",Me="SETTING_API_TRY",ze="STATUS_IN_PROGRESS",Be="STATUS_FAILED",We="STATUS_COMPLETE",Ge="STATUS_SAVING";function He(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){$e(e,t,n[t])})}return e}function $e(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ve(e,t,n,r){var o=e[t]?He({},e[t]):[];return o[n]=r,$e({},t,o)}var qe="LOG_LOADING",Ye="LOG_LOADED",Ke="LOG_FAILED",Qe="LOG_SET_SELECTED",Je="LOG_SET_ALL_SELECTED",Xe="LOG_ITEM_SAVING",Ze="LOG_ITEM_SAVED",et="LOG_ITEM_FAILED",tt=n(17),nt=n.n(tt),rt=["groups","404s","log","io","options","support"];function ot(e,t){var n=function(e,t,n){var r=at(n);for(var o in e)e[o]&&t[o]!==e[o]?r[o.toLowerCase()]=e[o]:t[o]===e[o]&&delete r[o.toLowerCase()];r.filterby&&!r.filter&&delete r.filterby;return"?"+tt.stringify(r)}(e,t);document.location.search!==n&&history.pushState({},null,n)}function at(e){return tt.parse(e?e.slice(1):document.location.search.slice(1))}function it(e){var t=at(e);return-1!==rt.indexOf(t.sub)?t.sub:"redirect"}function lt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){ut(e,t,n[t])})}return e}function ut(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ct=["orderby","direction","page","per_page","filter","filterBy","groupBy","group"],st=function(e,t){for(var n=[],r=0;r<e.length;r++)-1===t.indexOf(e[r])&&n.push(e[r]);return n},pt=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],a=at(),i={orderby:r,direction:"desc",page:0,per_page:parseInt(Redirectioni10n.per_page,10),selected:[],filterBy:"",filter:"",groupBy:""},l=void 0===a.sub?"":a.sub;return-1===o.indexOf(l)?i:lt({},i,{orderby:a.orderby&&-1!==e.indexOf(a.orderby)?a.orderby:i.orderby,direction:a.direction&&"asc"===a.direction?"asc":i.direction,page:a.offset&&parseInt(a.offset,10)>0?parseInt(a.offset,10):i.page,per_page:Redirectioni10n.per_page?parseInt(Redirectioni10n.per_page,10):i.per_page,filterBy:a.filterby&&-1!==t.indexOf(a.filterby)?a.filterby:i.filterBy,filter:a.filter?a.filter:i.filter,groupBy:a.groupby&&-1!==n.indexOf(a.groupby)?a.groupby:i.groupBy})},ft=function(e,t){for(var n=Object.assign({},e),r=0;r<ct.length;r++)void 0!==t[ct[r]]&&(n[ct[r]]=t[ct[r]]);return n},dt=function(e,t){return"desc"===e.direction&&delete e.direction,e.orderby===t&&delete e.orderby,0===e.page&&delete e.page,e.per_page===parseInt(Redirectioni10n.per_page,10)&&delete e.per_page,""===e.filterBy&&""===e.filter&&(delete e.filterBy,delete e.filter),""===e.groupBy&&""===e.group&&(delete e.groupBy,delete e.group),25!==parseInt(Redirectioni10n.per_page,10)&&(e.per_page=parseInt(Redirectioni10n.per_page,10)),delete e.selected,e},ht=function(e){return Object.assign({},e,{selected:[]})},mt=function(e,t){return lt({},e,{selected:st(e.selected,t).concat(st(t,e.selected))})},yt=function(e,t,n){return lt({},e,{selected:n?t.map(function(e){return e.id}):[]})},bt=function(e){return[e.filterBy,e.filter].join("-")};function gt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){vt(e,t,n[t])})}return e}function vt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Et=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=Redirectioni10n.WP_API_root+"redirection/v1/"+e+"/";if(n._wpnonce=Redirectioni10n.WP_API_nonce,n&&Object.keys(n).length>0&&(t=n,n=Object.keys(t).filter(function(e){return t[e]}).reduce(function(e,n){return e[n]=t[n],e},{}),Object.keys(n).length>0)){var o=r+(-1===Redirectioni10n.WP_API_root.indexOf("?")?"?":"&")+nt.a.stringify(n);return-1!==Redirectioni10n.WP_API_root.indexOf("page=redirection.php")?o.replace(/page=(\d+)/,"ppage=$1"):o}return r},wt=function(e){return-1!==e.indexOf("rest_route")||-1!==e.indexOf("/wp-json/")?new Headers({"Content-Type":"application/json; charset=utf-8"}):new Headers({"Content-Type":"application/x-www-form-urlencoded; charset=utf-8"})},Ot=function(e){return{url:e,headers:wt(e),credentials:"same-origin"}},_t=function(e,t){var n=gt({},t),r={};return t&&t.items&&(r.items=t.items,delete n.items),gt({},Ot(Et(e,n)),{method:"post",body:r.items?JSON.stringify(r):null})},xt=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return gt({},Ot(Et(e,t)),{method:"get"})},St=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=gt({},Ot(Et(e,n)),{method:"post",params:t});return Object.keys(t).length>0&&(r.body=JSON.stringify(t)),r},kt={get:function(){return xt("setting")},update:function(e){return St("setting",e)}},jt={list:function(e){return xt("redirect",e)},update:function(e,t){return St("redirect/"+e,t)},create:function(e){return St("redirect",e)}},Ct={list:function(e){return xt("group",e)},update:function(e,t){return St("group/"+e,t)},create:function(e){return St("group",e)}},Pt={list:function(e){return xt("log",e)},deleteAll:function(e){return _t("log",e)}},Tt={list:function(e){return xt("404",e)},deleteAll:function(e){return _t("404",e)}},Rt={get:function(){return xt("import")},upload:function(e,t){return function(e,t){var n=gt({},Ot(Et(e)),{method:"post"});return n.headers.delete("Content-Type"),n.body=new FormData,n.body.append("file",t),n}("import/file/"+e,t)},pluginList:function(){return xt("import/plugin")},pluginImport:function(e){return St("import/plugin/"+e)}},Nt={file:function(e,t){return xt("export/"+e+"/"+t)}},Dt={status:function(){return xt("plugin")},fix:function(){return St("plugin")},delete:function(){return _t("plugin/delete")},upgradeDatabase:function(e){return St("plugin/database",e?{upgrade:e}:{})},checkApi:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1]?St("plugin/test",{test:"ping"}):xt("plugin/test");return t.url=t.url.replace(Redirectioni10n.WP_API_root,e),-1!==t.url.indexOf("php?")&&(t.url=t.url.replace("?_","&_")),t}},At={redirect:function(e,t,n){return St("bulk/redirect/"+e,t,n)},group:function(e,t,n){return St("bulk/group/"+e,t,n)},log:function(e,t,n){return St("bulk/log/"+e,t,n)},error:function(e,t,n){return St("bulk/404/"+e,t,n)}},It=function(e){return"https://api.redirect.li/v1/"+e+(-1===e.indexOf("?")?"?":"&")+"ref=redirection"},Lt={getGeo:function(e){return{url:It("ip/"+e+"?locale="+Redirectioni10n.localeSlug.substr(0,2)),method:"get"}}},Ft={get:function(e){return{url:It("useragent/"+encodeURIComponent(e)),method:"get"}}},Ut={get:function(e){return{url:It("http?url="+encodeURIComponent(e)),method:"get"}}},Mt=function(e){return 0===e?"Admin AJAX returned 0":e.message?e.message:"Unknown error "+e},zt=function(e){return e.error_code?e.error_code:e.data&&e.data.error_code?e.data.error_code:0===e?"admin-ajax":e.code?e.code:"unknown"},Bt=function(e){return e.action=function(e){return e.url.replace(Redirectioni10n.WP_API_root,"").replace(/[\?&]_wpnonce=[a-f0-9]*/,"")+" "+e.method.toUpperCase()}(e),fetch(e.url,e).then(function(t){if(!t||!t.status)throw{message:"No data or status object returned in request",code:0};return t.status&&void 0!==t.statusText&&(e.status=t.status,e.statusText=t.statusText),t.headers.get("x-wp-nonce")&&(Redirectioni10n.WP_API_nonce=t.headers.get("x-wp-nonce")),t.text()}).then(function(t){e.raw=t;try{var n=JSON.parse(t.replace(/\ufeff/,""));if(e.status&&200!==e.status)throw{message:Mt(n),code:zt(n),request:e,data:n.data?n.data:null};if(0===n)throw{message:"Failed to get data",code:"json-zero"};return n}catch(t){throw t.request=e,t}})};function Wt(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function Gt(){return(Gt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function Ht(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){$t(e,t,n[t])})}return e}function $t(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Vt=function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return function(a,i){var l=i()[r.store],u=l.table,c=l.total,s={items:n?[n]:u.selected,bulk:t};if("delete"===t&&u.page>0&&u.per_page*u.page==c-1&&(u.page-=1),"delete"!==t||confirm(Object(P.translate)("Are you sure you want to delete this item?","Are you sure you want to delete these items?",{count:s.items.length}))){var p=ft(u,s),f=Ht({},{it
1
+ /*! Redirection v3.7.2 */!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=69)}([function(e,t,n){"use strict";e.exports=n(70)},function(e,t,n){var r=n(75),o=new r;e.exports={numberFormat:o.numberFormat.bind(o),translate:o.translate.bind(o),configure:o.configure.bind(o),setLocale:o.setLocale.bind(o),getLocale:o.getLocale.bind(o),getLocaleSlug:o.getLocaleSlug.bind(o),addTranslations:o.addTranslations.bind(o),reRenderTranslations:o.reRenderTranslations.bind(o),registerComponentUpdateHook:o.registerComponentUpdateHook.bind(o),registerTranslateHook:o.registerTranslateHook.bind(o),state:o.state,stateObserver:o.stateObserver,on:o.stateObserver.on.bind(o.stateObserver),off:o.stateObserver.removeListener.bind(o.stateObserver),emit:o.stateObserver.emit.bind(o.stateObserver),$this:o,I18N:r}},function(e,t,n){e.exports=n(85)()},function(e,t,n){var r;
2
  /*!
3
  Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
59
  *
60
  * This source code is licensed under the MIT license found in the
61
  * LICENSE file in the root directory of this source tree.