Redirection - Version 2.6.6

Version Description

  • Use React on redirects page
  • Use translate.wordpress.org for language files
Download this release

Release Info

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

Code changes from version 2.6.5 to 2.6.6

Files changed (49) hide show
  1. admin.css +0 -13
  2. fileio/apache.php +5 -4
  3. fileio/csv.php +4 -4
  4. locale/json/redirection-ca.json +1 -1
  5. locale/json/redirection-de_DE.json +1 -0
  6. locale/json/redirection-en_CA.json +1 -0
  7. locale/json/redirection-en_GB.json +1 -0
  8. locale/json/redirection-es_ES.json +1 -1
  9. locale/json/redirection-fi.json +1 -0
  10. locale/json/redirection-fr_FR.json +1 -1
  11. locale/json/redirection-it_IT.json +1 -1
  12. locale/json/redirection-ja.json +1 -1
  13. locale/json/redirection-nl_NL.json +1 -1
  14. locale/json/redirection-pt_PT.json +1 -0
  15. locale/json/redirection-ro_RO.json +1 -1
  16. locale/json/redirection-ru_RU.json +1 -1
  17. locale/json/redirection-sk_SK.json +1 -0
  18. locale/json/redirection-tr_TR.json +1 -1
  19. locale/redirection-ca.mo +0 -0
  20. locale/redirection-ca.po +595 -781
  21. locale/redirection-de_DE.mo +0 -0
  22. locale/redirection-de_DE.po +782 -0
  23. locale/redirection-en_CA.mo +0 -0
  24. locale/redirection-en_CA.po +782 -0
  25. locale/redirection-en_GB.mo +0 -0
  26. locale/redirection-en_GB.po +782 -0
  27. locale/redirection-es_ES.mo +0 -0
  28. locale/redirection-es_ES.po +601 -788
  29. locale/redirection-fi.mo +0 -0
  30. locale/redirection-fi.po +782 -0
  31. locale/redirection-fr_FR.mo +0 -0
  32. locale/redirection-fr_FR.po +616 -857
  33. locale/redirection-it_IT.mo +0 -0
  34. locale/redirection-it_IT.po +577 -872
  35. locale/redirection-ja.mo +0 -0
  36. locale/redirection-ja.po +579 -979
  37. locale/redirection-nl_NL.mo +0 -0
  38. locale/redirection-nl_NL.po +577 -729
  39. locale/redirection-pt_PT.mo +0 -0
  40. locale/redirection-pt_PT.po +782 -0
  41. locale/redirection-ro_RO.mo +0 -0
  42. locale/redirection-ro_RO.po +587 -811
  43. locale/redirection-ru_RU.mo +0 -0
  44. locale/redirection-ru_RU.po +577 -779
  45. locale/redirection-sk_SK.mo +0 -0
  46. locale/redirection-sk_SK.po +786 -0
  47. locale/redirection-tr_TR.mo +0 -0
  48. locale/redirection-tr_TR.po +594 -780
  49. locale/redirection.pot +217 -247
admin.css CHANGED
@@ -42,9 +42,6 @@ table.items .red-disabled {
42
  display: block;
43
  }
44
 
45
- .advanced {
46
- display: none;
47
- }
48
 
49
  .advanced-toggle {
50
  margin-left: 15px;
@@ -86,21 +83,11 @@ table.items .red-disabled {
86
  text-align: left;
87
  }
88
 
89
- .wp-list-table .column-hits {
90
- width: 50px;
91
- text-align: left;
92
- }
93
-
94
  .wp-list-table .column-redirects {
95
  width: 100px;
96
  text-align: left;
97
  }
98
 
99
- .wp-list-table .column-last_access {
100
- width: 100px;
101
- text-align: left;
102
- }
103
-
104
  .wp-list-table .column-export {
105
  width: 200px;
106
  }
42
  display: block;
43
  }
44
 
 
 
 
45
 
46
  .advanced-toggle {
47
  margin-left: 15px;
83
  text-align: left;
84
  }
85
 
 
 
 
 
 
86
  .wp-list-table .column-redirects {
87
  width: 100px;
88
  text-align: left;
89
  }
90
 
 
 
 
 
 
91
  .wp-list-table .column-export {
92
  width: 200px;
93
  }
fileio/apache.php CHANGED
@@ -81,11 +81,12 @@ class Red_Apache_File extends Red_FileIO {
81
  if ( count( $items ) > 0 ) {
82
  foreach ( $items as $item ) {
83
  $item['group_id'] = $group;
84
- $item['red_action'] = 'url';
85
- $item['match'] = 'url';
86
 
87
- if ( $item['code'] === 0 )
88
- $item['red_action'] = 'pass';
 
89
 
90
  Red_Item::create( $item );
91
  }
81
  if ( count( $items ) > 0 ) {
82
  foreach ( $items as $item ) {
83
  $item['group_id'] = $group;
84
+ $item['action_type'] = 'url';
85
+ $item['match_type'] = 'url';
86
 
87
+ if ( $item['code'] === 0 ) {
88
+ $item['action_type'] = 'pass';
89
+ }
90
 
91
  Red_Item::create( $item );
92
  }
fileio/csv.php CHANGED
@@ -101,12 +101,12 @@ class Red_Csv_File extends Red_FileIO {
101
  public function csv_as_item( $csv, $group ) {
102
  if ( $csv[ self::CSV_SOURCE ] !== 'source' && $csv[ self::CSV_TARGET ] !== 'target' && count( $csv ) > 1 ) {
103
  return array(
104
- 'source' => trim( $csv[ self::CSV_SOURCE ] ),
105
- 'target' => trim( $csv[ self::CSV_TARGET ] ),
106
  'regex' => isset( $csv[ self::CSV_REGEX ] ) ? $this->parse_regex( $csv[ self::CSV_REGEX ] ) : $this->is_regex( $csv[ self::CSV_SOURCE ] ),
107
  'group_id' => $group,
108
- 'match' => 'url',
109
- 'red_action' => 'url',
110
  'action_code' => isset( $csv[ self::CSV_CODE ] ) ? $this->get_valid_code( $csv[ self::CSV_CODE ] ) : 301,
111
  );
112
  }
101
  public function csv_as_item( $csv, $group ) {
102
  if ( $csv[ self::CSV_SOURCE ] !== 'source' && $csv[ self::CSV_TARGET ] !== 'target' && count( $csv ) > 1 ) {
103
  return array(
104
+ 'url' => trim( $csv[ self ::CSV_SOURCE ] ),
105
+ 'action_data' => trim( $csv[ self ::CSV_TARGET ] ),
106
  'regex' => isset( $csv[ self::CSV_REGEX ] ) ? $this->parse_regex( $csv[ self::CSV_REGEX ] ) : $this->is_regex( $csv[ self::CSV_SOURCE ] ),
107
  'group_id' => $group,
108
+ 'match_type' => 'url',
109
+ 'action_type' => 'url',
110
  'action_code' => isset( $csv[ self::CSV_CODE ] ) ? $this->get_valid_code( $csv[ self::CSV_CODE ] ) : 301,
111
  );
112
  }
locale/json/redirection-ca.json CHANGED
@@ -1 +1 @@
1
- {"":{"project-id-version":"Redirect","report-msgid-bugs-to":"","pot-creation-date":"2009-02-23 20:25-0300","po-revision-date":"","last-translator":"Robert Buj <rbuj@wanadoo.es>","language-team":"Robert Buj <rbuj@wanadoo.es>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Catalan","x-poedit-country":"SPAIN","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"c:/temp/redirection/","x-poedit-keywordslist":"__;_e"},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">No esteu autoritzats per a accedir a aquest recurs</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">Aquesta funció no està definida</p>"],"Sorry, but your redirection was not created":[null,"Ho sento, però la vostra redirecció no ha estat creada"],"Failed to retrieve group data":[null,"S'ha produït un error a l'obtindre dades del grup"],"Failed to retrieve module data":[null,"Error a l'obtindre dades del módul"],"How many widgets would you like?":[null,"Quants widgets voleu?"],"Save":[null,"Desar"],"Redirection Help":[null,"Ajuda de Redirecció"],"Redirection Documentation":[null,"Documentació de Redirecció"],"Redirection Support Forum":[null,"Fòrum de suport de Redirecció"],"Redirection Bug Tracker":[null,"Seguiment d'errors de Redirecció"],"Redirection FAQ":[null,"Preguntes més freqüents de Redirecció"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Si us plau, llegiu la documentació, el FAQ, i verifiqueu el registre d'errors, abans de realitzar una pregunta."],"Redirection":[null,"Redirecció"],"Your module was successfully created":[null,"Mòdul creat amb èxit"],"Your module was not created - did you provide a name?":[null,"El vostre mòdul no s'ha crat - heu proporcionat un nom?"],"Your options were updated":[null,"Les vostres opcions han estat actualitzades"],"Redirection data has been deleted and the plugin disabled":[null,"Les dades de redirecció ha estat eliminades i l'extensió deshabilitada"],"No items were imported":[null,"No s'han importat elements"],"Your logs have been deleted":[null,"S'han eliminat els vostres registres"],"Your group was added successfully":[null,"El vostre grup ha estat afegit correctament."],"Please specify a group name":[null,"Si us plau especifiqueu un nom pel grup"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importat el %s a %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Importar per XML solament està disponible utilitzant PHP5 - vosté té PHP4."],"URL and login status":[null,"Estat de l'URL i connexió"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."],"Logged In":[null,"Identificat"],"Logged Out":[null,"Desconnectat"],"URL and referrer":[null,"URL i referent"],"Referrer":[null,"Referent"],"Regex":[null,"Expresió regular"],"HTTP Code":[null,"Codi HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."],"Matched":[null,"Coincideix"],"Not matched":[null,"No coincideix"],"URL only":[null,"Solament URL"],"Target URL":[null,"URL destí"],"URL and user agent":[null,"URL i agent d'usuari"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Agent d'usuari"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"Errore 404"],"Redirections":[null,"Redireccions"],"Modified posts":[null,"Entrades modificades"],"Strip WWW":[null,"Treure WWW"],"Force WWW":[null,"Forçar WWW"],"Strip index.php":[null,"Treure index.php"],"Previous":[null,"Anterior"],"Next":[null,"Següent"],"%d per-page":[null,"%d per pàgina"],"Displaying %s&#8211;%s of %s":[null,"Mostrant %s&#8211;%s de %s"],"Redirect to URL":[null,"Redirigir a URL"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Pass-through":[null,"Pasar directe"],"Error (404)":[null,"Error (404)"],"Do nothing":[null,"No fer res"],"Log 404s":[null,"Registrar 404s"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Deshabilitat: Heu d'habilitar <a href=\"options-permalink.php\">permalinks</a> abans d'utilitzar-lo</strong>"],"<small>No options have been set</small>":[null,"<small>No s'ha configurat cap opció</small>"],"Location":[null,"Lloc"],"WordPress is installed in: <code>%s</code>":[null,"WordPress està instal·lat a: <code>%s</code>"],"Canonical":[null,"Canònic"],"Leave as is":[null,"Deixar como està"],"Strip WWW (%s)":[null,"Treure WWW (%s)"],"Force WWW (www.%s)":[null,"Forçar WWW (www.%s)"],"Strip Index":[null,"Treure Index"],"Strip index files (html,php)":[null,"Treure fitxers índex (html,php)"],"Memory Limit":[null,"Límit de memòria"],"Server default":[null,"Predeterminat pel servidor"],"Error Level":[null,"Nivell d'error"],"No errors":[null,"Sense errors"],"Show errors":[null,"Mostrar errors"],"Ban IPs":[null,"Prohivir IPs"],"Allow IPs":[null,"Permetre IPs"],"Raw .htaccess":[null,".htaccess cru"],"Site URL":[null,"URL del lloc"],"Advanced: For management of external sites":[null,"Avançado: Per a administración de llocs externs"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Localització incorrecta - verifiqueu que la ruta existeixi</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>No s'ha pogut escriure al fitxer <code>.htaccess</code> configurat - verifiqueu els permisos</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Desabilitat: entreu l'ubicació del fitxer <code>.htaccess</code> per a que aixó sigui vàlid</strong>"],"strip WWW":[null,"treure WWW"],"force WWW":[null,"forçar www"],"strip index":[null,"treure índex"],"memory limit at %dMB":[null,"límit de memòria a: %dMB"],"no errors":[null,"sense errors"],"show errors":[null,"mostrar errors"],"IPs are banned":[null,"Es prohiveixen IPs"],"IPs are allowed":[null,"Es permeten IPs"]," for external site: <code>%s</code>":[null," per a un lloc extern: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Treure fitxers d'índex (html,php,asp)"],"30 seconds":[null,"30 segons"],"1 minute":[null,"1 minut"],"2 minutes":[null,"2 minuts"],"5 minutes":[null,"5 minuts"],"As long as possible":[null,"El màxim posible"],"time limit set as long as possible":[null,"límit de temps configurat com al màxim posible"],"time limit at %ss":[null,"límit de temps a %ss"],"Add new redirection":[null,"Afegir una nova redirecció"],"Your redirection has been added.":[null,"S'ha afegit la vostra redirecció"],"Source URL":[null,"URL origen"],"Match":[null,"Coincidència"],"Action":[null,"Acció"],"Regular expression":[null,"Expresió regular"],"Group":[null,"Grup"],"Add Redirection":[null,"Afegir Redirecció"],"Name":[null,"Nom"],"Tracked":[null,"Seguiment"],"Whether to track 'hits' to items":[null,"Ja sigui per fer un seguiment de visites als elements"],"Enabled":[null,"Habilitat"],"Disabling a group will disable all items contained within it":[null,"Deshablitar un grup deshabilita tots els elements que es troben dins del mateix"],"Cancel":[null,"Cancel·lar"],"edit group":[null,"editar grup"],"disabled":[null,"deshabilitat"],"Groups for module":[null,"Grups per mòdul"],"Module":[null,"Mòdul"],"Search":[null,"Cercar"],"go":[null,"començar"],"Hits":[null,"Hits"],"Select All":[null,"Seleccionar-ho tot"],"Toggle":[null,"Desactivar/Activar"],"Reset Hits":[null,"Reiniciar Hits"],"Delete":[null,"Eliminar"],"Move To":[null,"Moure a"],"re-order":[null,"re-ordenar"],"save order":[null,"desar ordre"],"You have no groups in this module.":[null,"No teniu grups en aquest mòdul."],"Add Group":[null,"Afegir grup"],"Add":[null,"Afegir"],"Please wait...":[null,"Si us plau, espereu..."],"Are you sure?":[null,"Esteu segurs?"],"No items have been selected":[null,"No s'han seleccionat elements"],"%s by matching %s":[null,"%s per coincidència amb %s"],"Title":[null,"Títul"],"optional":[null,"opcional"],"Redirections for group":[null,"Redireccions pel grup"],"Go":[null,"Començar"],"Last Access":[null,"Últim accés"],"Type":[null,"Tipus"],"URL":[null,"URL"],"Position":[null,"Posició"],"You have no redirections.":[null,"No teniu redireccions"],"Redirection Log":[null,"Registre de redireccions"],"Bulk Actions":[null,"Accions en bloc"],"Apply":[null,"Aplicar"],"Filter":[null,"Filtre"],"Date":[null,"Data"],"IP":[null,"IP"],"There are no logs to display!":[null,"No hi ha registres per mostrar!"],"Process Current Logs":[null,"Procesar registres actuals"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Aquesta acció afectarà a tots els registres disponibles (ex. la vostra frase de cerca restringirà els elements registrats)."],"Delete Logs":[null,"Eliminar registres"],"Export to CSV":[null,"Exportar a CSV"],"Redirect to":[null,"Redirigir a"],"Redirected by":[null,"Redirigit per"],"for":[null,"per"],"View as":[null,"Veure com"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"editar"],"delete":[null,"eliminar"],"reset":[null,"restablir"],"Modules":[null,"Mòduls"],"Details":[null,"Detalls"],"Groups":[null,"Grups"],"Items":[null,"Elements"],"Operations":[null,"Operacions"],"Note: Hits are dependant on log entries":[null,"Nota: Els Hits depenen de les entrades del vostre registre"],"You have no modules defined yet":[null,"Encara no teniu cap mòdul definit"],"Add Module":[null,"Afegir mòdul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Un mòdul és un element de control que determina com es gestionen les redireccions. Els elements en un mòdul WordPress són gestionats per WordPress, els elements en un mòdul Apache són gestionats per <code>.htaccess</code>, i els elements en un mòdul 404 afecten com estiguin registrats els errors 404."],"Create":[null,"Crear"],"Options":[null,"Opcions"],"Auto-generate URL":[null,"Autogenerar URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Aixó s'utilitzarà per a autogenerar una URL si s'indica cap URL. Puede usar las etiquetas especiales $dec$ o $hex$ para que se inserte un ID único (decimal o hex, uno de los dos)"],"IP Lookup Service":[null,"Servei de cerca d'IP"],"Plugin Support":[null,"Suport de l'extensió"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soc una bona persona i he ajudat a l'autor d'aquesta extensió"],"Expire Logs":[null,"Registres caducats"],"days (enter 0 for no expiry)":[null,"dies (introduiu 0 per a que no caduqui)"],"RSS Token":[null,"Token de RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Un identificador únic que permet als lectors RSS accedir a Redirecció (deixar en blanc per autogenerar-lo)"],"URL Monitoring":[null,"URL de seguiment"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Podeu fer que Redirecció detecti canvis a les URL i tindre una redirecció creada automàticament dins d'un grup específic."],"Post &amp; Page URLs":[null,"URLs d'entrades &amp; Pàgines"],"Don't monitor":[null,"No fer el seguiment"],"Monitor new posts":[null,"Fer el seguiment de noves entrades"],"Category URLs":[null,"URLs de categories"],"Update":[null,"Actualitzar"],"Import":[null,"Importar"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Aquí podeu importar redireccions d'un fitxer .htaccess, un fitxer CSV (separat per comes), o un fitxer XML de Redirecció."],"Import into":[null,"Importar a"],"Upload":[null,"Pujar"],"Note that the group is ignored when uploading an XML file.":[null,"Denoteu que el grup es ignorat quant carrrega un fitxer XML."],"Delete Redirection":[null,"Eliminar Redirecció"],"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.":[null,"Seleccionant aquesta opció elimina totes les redireccions, tots els registres, i qualsevol opció associada amb l'entensió Redirecció. Assegureu-vos que voleu fer exactament això."],"Redirects":[null,"Redireccions"],"Log":[null,"Registres"],"Redirection Support":[null,"Suport Tècnic de Redirecció"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"Redirecció ha necessitat molt de temps i esforç per a desenvolupar-se. Si us ha resultat útil aleshores podeu ajudar al seu desenvolupament per mitjà d'una <strong>petita donació de $8</strong>. Aixó servirá d'incentiu per a que continui amb el desenvolupament, proporcionant hores incontables de suport, i incluint aquelles millores em suggeriu."],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"Como alternativa, si vosté parla diversos idiomes, considereu a traduir l'original a un altre idioma. Tots els fitxers de localització estan incluits i he escrit una <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guia completa per al procediment de traducció</a>."],"Other plugins":[null,"Altres extensions"],"You may also be interested in some of my other plugins:":[null,"Puedeu estar interesat en alguna altra d'aquests extensions:"],"HeadSpace":[null,"HeadSpace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"L'administrador més complet per a metadades per a SEO i extensions de tot tipus per a WordPress. Remplaça cinc o sis extensions amb tan sols una super-extensió!"],"Search Unleashed":[null,"Search Unleashed"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"Cerques atractives que van més enllà de les originals de WordPress i augmenten la utilitat del vostre lloc."],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"Inserció de text flexible i poderosa que us permet afegir el que volgueu, allí on vulgui."],"This notice will only be shown at periodic intervals.":[null,"Aquest avís solament es mostrarà en intèrvals periòdics"]}
1
+ {"":{"po-revision-date":"2017-07-06 21:35:14+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"ca","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Ajustos avançats"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,""],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Suport Tècnic de Redirecció"],"Support":[null,"Suport"],"404s":[null,"404s"],"404s from %s":[null,"404s des de %s"],"Log":[null,"Registres"],"Delete Redirection":[null,"Eliminar Redirecció"],"Upload":[null,"Pujar"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importar"],"Update":[null,"Actualitzar"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Autogenerar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"Token de RSS"],"Don't monitor":[null,"No fer el seguiment"],"Monitor changes to posts":[null,""],"404 Logs":[null,"Registres 404"],"(time to keep logs for)":[null,"(temps que es mantindran els registres)"],"Redirect Logs":[null,"Registres de redireccions"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soc una bona persona i he ajudat a l'autor d'aquesta extensió"],"Plugin support":[null,""],"Options":[null,"Opcions"],"Two months":[null,"Dos mesos"],"A month":[null,"Un mes"],"A week":[null,"Uns setmana"],"A day":[null,"Un dia"],"No logs":[null,"Sense registres"],"Modules":[null,"Mòduls"],"Export to CSV":[null,""],"Delete All":[null,""],"Redirection Log":[null,"Registre de redireccions"],"optional":[null,"opcional"],"Description":[null,"Descripció"],"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.":[null,""],"Add Group":[null,"Afegir grup"],"Search":[null,"Cercar"],"Groups":[null,"Grups"],"Save":[null,"Desar"],"Add Redirection":[null,"Afegir Redirecció"],"Group":[null,"Grup"],"Regular expression":[null,"Expresió regular"],"Action":[null,"Acció"],"Match":[null,"Coincidència"],"Your redirection has been added.":[null,"S'ha afegit la vostra redirecció"],"Add new redirection":[null,"Afegir una nova redirecció"],"Cancel":[null,"Cancel·lar"],"Download":[null,""],"Sorry, but your redirection was not created":[null,"Ho sento, però la vostra redirecció no ha estat creada"],"Unable to perform action":[null,"No s'ha pogut realitzar l'acció"],"No items were imported":[null,"No s'han importat elements"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirecció importada correctament","%d redireccions importades correctament"],"Your options were updated":[null,"Les vostres opcions han estat actualitzades"],"Redirection":[null,"Redirecció"],"Settings":[null,"Configuració"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,""],"Default server":[null,""],"Canonical URL":[null,"URL canònica"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,""],"Do nothing":[null,"No fer res"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pasar directe"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Redirect to URL":[null,"Redirigir a URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,""],"Invalid source URL when creating redirect for given match type":[null,""],"Invalid group when creating redirect":[null,""],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,""],"Source and target URL must be different":[null,""],"Configure":[null,""],"Show only this IP":[null,"Mostra només aquesta IP"],"IP":[null,"IP"],"Source URL":[null,"URL origen"],"Date":[null,"Data"],"Add Redirect":[null,"Afegeix redirecció"],"All modules":[null,"Tots els mòduls"],"View Redirects":[null,""],"Module":[null,"Mòdul"],"Redirects":[null,"Redireccions"],"Name":[null,"Nom"],"Filter":[null,"Filtre"],"No group filter":[null,"Sense filtre de grup"],"Reset Hits":[null,"Reiniciar Hits"],"Enable":[null,""],"Disable":[null,"Desactiva"],"Delete":[null,"Eliminar"],"Edit":[null,"Edita"],"Last Access":[null,"Últim accés"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Tipus"],"Modified Posts":[null,"Entrades modificades"],"Redirections":[null,"Redireccions"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"],"User Agent":[null,"Agent d'usuari"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL i agent d'usuari"],"Target URL":[null,"URL destí"],"URL only":[null,"Solament URL"],"Not matched":[null,"No coincideix"],"Matched":[null,"Coincideix"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."],"HTTP Code":[null,"Codi HTTP"],"Regex":[null,"Expresió regular"],"Referrer":[null,"Referent"],"URL and referrer":[null,"URL i referent"],"Logged Out":[null,"Desconnectat"],"Logged In":[null,"Identificat"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."],"URL and login status":[null,"Estat de l'URL i connexió"]}
locale/json/redirection-de_DE.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2017-01-29 15:55:57+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"de","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Erweiterte Einstellungen"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Verwalte alle 301-Umleitungen und 404-Fehler."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Unleitung Support"],"Support":[null,"Support"],"404s":[null,"404s"],"404s from %s":[null,"404s von %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Umleitung löschen"],"Upload":[null,"Hochladen"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importieren"],"Update":[null,"Aktualisieren"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Selbsterstellte URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Nicht kontrollieren"],"Monitor changes to posts":[null,"Änderungen an Beiträgen überwachen"],"404 Logs":[null,"404-Logs"],"(time to keep logs for)":[null,"(Dauer, für die die Logs behalten werden)"],"Redirect Logs":[null,"Umleitungs-Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ich bin eine nette Person und ich helfe dem Autor des Plugins"],"Plugin support":[null,""],"Options":[null,"Optionen"],"Two months":[null,"zwei Monate"],"A month":[null,"ein Monat"],"A week":[null,"eine Woche"],"A day":[null,"einen Tag"],"No logs":[null,"Keine Logs"],"Modules":[null,"Module"],"Export to CSV":[null,""],"Delete All":[null,"Alle löschen"],"Redirection Log":[null,"Umleitungs Log"],"optional":[null,"optional"],"Description":[null,"Beschreibung"],"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.":[null,"Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Modul zugeordnet, dies beeinflusst, wie die Umleitungen in der jeweiligen Gruppe funktionieren. Falls du unsicher bist, bleib beim WordPress-Modul."],"Add Group":[null,"Gruppe hinzufügen"],"Search":[null,"Suchen"],"Groups":[null,"Gruppen"],"Save":[null,"Speichern"],"Add Redirection":[null,"Umleitung hinzufügen"],"Group":[null,"Gruppe"],"Regular expression":[null,"Reguläre Äußerung"],"Action":[null,"Aktion"],"Match":[null,"Passend"],"Your redirection has been added.":[null,"Deine Umleitung wurde hinzugefügt."],"Add new redirection":[null,"Eine neue Umleitung hinzufügen"],"Cancel":[null,"Abbrechen"],"Download":[null,"Download"],"Sorry, but your redirection was not created":[null,"Endschuldigung, aber deine Umleitung wurde nicht erstellt"],"Unable to perform action":[null,"Die Operation kann nicht ausgeführt werden."],"No items were imported":[null,"Keine Elemente wurden importiert"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d Umleitung wurde erfolgreich importiert.","%d Umleitungen wurden erfolgreich importiert."],"Your options were updated":[null,"Deine Optionen wurden aktualisiert"],"Redirection":[null,"Redirection"],"Settings":[null,"Einstellungen"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Durch WordPress betriebene Umleitungen: Dies benötigt keine weitere Konfiguration, und Treffer werden aufgezeichnet."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Für die Benutzung mit Nginx-Servern: Benötigt manuelle Konfiguration. Die Umleitung erfolgt, ohne WordPress zu laden, und ist viel schneller, die Treffer können jedoch nicht aufgezeichnet werden. Dies ist ein experimentelles Modul."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Bei deiner Seite das www automatisch entfernen oder hinzufügen."],"Default server":[null,"Standard-Server"],"Canonical URL":[null,"Canonical URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess-Speicherort"],"Do nothing":[null,"Mache nichts"],"Error (404)":[null,"Fehler (404)"],"Pass-through":[null,"Durchreichen"],"Redirect to random post":[null,"Umleitung zu zufälligen Beitrag"],"Redirect to URL":[null,"Umleitung zur URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Neue Umeitung kann nicht hinzugefügt werden. Entferne dieses Plugin und installiere es neu."],"Invalid source URL when creating redirect for given match type":[null,"Ungültige Quell-URL für die Erstellung einer Umleitung des gegebenen Übereinstimmungstyps."],"Invalid group when creating redirect":[null,"Ungültige Gruppe für die Erstellung der Umleitung"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Du kannst nur von einer relativen URL (<code>%s</code>) auf dieser Domain (<code>%s</code>) umleiten."],"Source and target URL must be different":[null,"Quell- und Ziel-URL müssen sich unterscheiden"],"Configure":[null,"Einstellen"],"Show only this IP":[null,"Nur diese IP-Adresse anzeigen"],"IP":[null,"IP"],"Source URL":[null,"URL-Quelle"],"Date":[null,"Zeitpunkt"],"Add Redirect":[null,""],"All modules":[null,"Alle Module"],"View Redirects":[null,"Weiterleitungen anschauen"],"Module":[null,"Module"],"Redirects":[null,"Umleitungen"],"Name":[null,"Name"],"Filter":[null,"Filter"],"No group filter":[null,"Kein Gruppenfilter"],"Reset Hits":[null,"Treffer zurücksetzen"],"Enable":[null,"Aktivieren"],"Disable":[null,"Deaktivieren"],"Delete":[null,"Löschen"],"Edit":[null,"Bearbeiten"],"Last Access":[null,"Letzter Zugriff"],"Hits":[null,"Treffer"],"URL":[null,"URL"],"Type":[null,"Typ"],"Modified Posts":[null,"Geänderte Beiträge"],"Redirections":[null,"Umleitungen"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Der Besucher wird von der URL-Quelle umgeleitet, falls der User Agent passend ist. Du kannst eine <em>passende</em> Ziel-URL als Adresse spezifizieren, die die Besucher schicken, falls sie passend sind, und <em>nicht passend</em>, wenn sie nicht übereinstimmen. <strong>Alle Anpassungen treten als reguläre Äußerungen auf</strong>.\n"],"User Agent":[null,"User Agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL und User-Agent"],"Target URL":[null,"Ziel-URL"],"URL only":[null,"Nur URL"],"Not matched":[null,"Nicht passend"],"Matched":[null,"passend"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Der Beuscher wird umgeleitet von der URL-Quelle, falls sich die Vermittler entsprechen. Du kannst eine <em>passende</em> Ziel-URL als Adresse spezifizieren, und <em>nicht passende</em>, wenn sie nicht übereinstimmen. Leerlassen einer URL ."],"HTTP Code":[null,"HTTP-Code"],"Regex":[null,"Regex"],"Referrer":[null,"Vermittler"],"URL and referrer":[null,"URL und Vermittler"],"Logged Out":[null,"Ausgeloggt"],"Logged In":[null,"Eingeloggt"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Die Zieladresse wird von eine der folgenden URLs ausgewählt, abhängig davon, ob der User ein- oder ausgeloggt ist. Eine URL leer lassen bedeutet, dass der User nicht umgeleitet ist."],"URL and login status":[null,"URL- und Loginstatus"]}
locale/json/redirection-en_CA.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2017-07-13 16:46:42+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"en_CA","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,"Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,"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!"],"It didn't work when I tried again":[null,"It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."],"Important details for the thing you just did":[null,"Important details for the thing you just did"],"Please include these details in your report":[null,"Please include these details in your report"],"Log entries (100 max)":[null,"Log entries (100 max)"],"Failed to load":[null,"Failed to load"],"Remove WWW":[null,"Remove WWW"],"Add WWW":[null,"Add WWW"],"Search by IP":[null,"Search by IP"],"Select bulk action":[null,"Select bulk action"],"Bulk Actions":[null,"Bulk Actions"],"Apply":[null,"Apply"],"First page":[null,"First page"],"Prev page":[null,"Prev page"],"Current Page":[null,"Current Page"],"of %(page)s":[null,"of %(page)s"],"Next page":[null,"Next page"],"Last page":[null,"Last page"],"%s item":["%s items","%s item","%s items"],"Select All":[null,"Select All"],"Sorry but something went wrong loading the data - please try again":[null,"Sorry but something went wrong loading the data - please try again"],"No results":[null,"No results"],"Delete the logs - are you sure?":[null,"Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":[null,"Yes! Delete the logs"],"No! Don't delete the logs":[null,"No! Don't delete the logs"],"Redirection 404":[null,"Redirection 404"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":[null,"Your email address:"],"I deleted a redirection, why is it still redirecting?":[null,"I deleted a redirection, why is it still redirecting?"],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."],"Can I open a redirect in a new tab?":[null,"Can I open a redirect in a new tab?"],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."],"Something isn't working!":[null,"Something isn't working!"],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."],"Frequently Asked Questions":[null,"Frequently Asked Questions"],"Need some help? Maybe one of these questions will provide an answer":[null,"Need some help? Maybe one of these questions will provide an answer"],"You've already supported this plugin - thank you!":[null,"You've already supported this plugin - thank you!"],"I'd like to donate some more":[null,"I'd like to donate some more"],"You get some useful software and I get to carry on making it better.":[null,"You get some useful software and I get to carry on making it better."],"Please note I do not provide support and this is just a donation.":[null,"Please note I do not provide support and this is just a donation."],"Yes I'd like to donate":[null,"Yes I'd like to donate"],"Thank you for making a donation!":[null,"Thank you for making a donation!"],"Forever":[null,"Forever"],"Failed to save data":[null,"Failed to save data"],"Failed to load data":[null,"Failed to load data"],"CSV Format":[null,"CSV Format"],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"],"Delete the plugin - are you sure?":[null,"Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":[null,"Yes! Delete the plugin"],"No! Don't delete the plugin":[null,"No! Don't delete the plugin"],"Advanced Settings":[null,"Advanced Settings"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Manage all your 301 redirects and monitor 404 errors."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":[null,"Redirection Support"],"Support":[null,"Support"],"404s":[null,"404s"],"404s from %s":[null,"404s from %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Delete Redirection"],"Upload":[null,"Upload"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."],"Import":[null,"Import"],"Update":[null,"Update"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"],"Auto-generate URL":[null,"Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Don't monitor"],"Monitor changes to posts":[null,"Monitor changes to posts"],"404 Logs":[null,"404 Logs"],"(time to keep logs for)":[null,"(time to keep logs for)"],"Redirect Logs":[null,"Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"I'm a nice person and I have helped support the author of this plugin."],"Plugin support":[null,"Plugin support"],"Options":[null,"Options"],"Two months":[null,"Two months"],"A month":[null,"A month"],"A week":[null,"A week"],"A day":[null,"A day"],"No logs":[null,"No logs"],"Modules":[null,"Modules"],"Export to CSV":[null,"Export to CSV"],"Delete All":[null,"Delete All"],"Redirection Log":[null,"Redirection Log"],"optional":[null,"optional"],"Description":[null,"Description"],"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.":[null,"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":[null,"Add Group"],"Search":[null,"Search"],"Groups":[null,"Groups"],"Save":[null,"Save"],"Add Redirection":[null,"Add Redirection"],"Group":[null,"Group"],"Regular expression":[null,"Regular expression"],"Action":[null,"Action"],"Match":[null,"Match"],"Your redirection has been added.":[null,"Your redirection has been added."],"Add new redirection":[null,"Add new redirection"],"Cancel":[null,"Cancel"],"Download":[null,"Download"],"Sorry, but your redirection was not created":[null,"Sorry, but your redirection was not created."],"Unable to perform action":[null,"Unable to perform action"],"No items were imported":[null,"No items were imported"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirection was successfully imported","%d redirections were successfully imported"],"Your options were updated":[null,"Your options were updated."],"Redirection":[null,"Redirection"],"Settings":[null,"Settings"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"WordPress powered redirects. This requires no further configuration, and you can track hits."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."],"Automatically remove or add www to your site.":[null,"Automatically remove or add www to your site."],"Default server":[null,"Default server"],"Canonical URL":[null,"Canonical URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress is installed in: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."],".htaccess Location":[null,".htaccess Location"],"Do nothing":[null,"Do nothing"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Redirect to random post"],"Redirect to URL":[null,"Redirect to URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Unable to add new redirect - delete Redirection from the options page and re-install"],"Invalid source URL when creating redirect for given match type":[null,"Invalid source URL when creating redirect for given match type"],"Invalid group when creating redirect":[null,"Invalid group when creating redirect"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."],"Source and target URL must be different":[null,"Source and target URL must be different."],"Configure":[null,"Configure"],"Show only this IP":[null,"Show only this IP"],"IP":[null,"IP"],"Source URL":[null,"Source URL"],"Date":[null,"Date"],"Add Redirect":[null,"Add Redirect"],"All modules":[null,"All modules"],"View Redirects":[null,"View Redirects"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Name"],"Filter":[null,"Filter"],"No group filter":[null,"No group filter"],"Reset Hits":[null,"Reset Hits"],"Enable":[null,"Enable"],"Disable":[null,"Disable"],"Delete":[null,"Delete"],"Edit":[null,"Edit"],"Last Access":[null,"Last Access"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Modified Posts"],"Redirections":[null,"Redirections"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"],"User Agent":[null,"User Agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL and user agent"],"Target URL":[null,"Target URL"],"URL only":[null,"URL only"],"Not matched":[null,"Not matched"],"Matched":[null,"Matched"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."],"HTTP Code":[null,"HTTP Code"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL and referrer"],"Logged Out":[null,"Logged Out"],"Logged In":[null,"Logged In"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."],"URL and login status":[null,"URL and login status"]}
locale/json/redirection-en_GB.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2017-07-09 21:29:26+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"en_GB","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":[null,"Your email address:"],"I deleted a redirection, why is it still redirecting?":[null,"I deleted a redirection, why is it still redirecting?"],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."],"Can I open a redirect in a new tab?":[null,"Can I open a redirect in a new tab?"],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."],"Something isn't working!":[null,"Something isn't working!"],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."],"Frequently Asked Questions":[null,"Frequently Asked Questions"],"Need some help? Maybe one of these questions will provide an answer":[null,"Need some help? Maybe one of these questions will provide an answer"],"You've already supported this plugin - thank you!":[null,"You've already supported this plugin - thank you!"],"I'd like to donate some more":[null,"I'd like to donate some more"],"You get some useful software and I get to carry on making it better.":[null,"You get some useful software and I get to carry on making it better."],"Please note I do not provide support and this is just a donation.":[null,"Please note I do not provide support and this is just a donation."],"Yes I'd like to donate":[null,"Yes I'd like to donate"],"Thank you for making a donation!":[null,"Thank you for making a donation!"],"Forever":[null,"Forever"],"Failed to save data":[null,"Failed to save data"],"Failed to load data":[null,"Failed to load data"],"CSV Format":[null,"CSV Format"],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"],"Delete the plugin - are you sure?":[null,"Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":[null,"Yes! Delete the plugin"],"No! Don't delete the plugin":[null,"No! Don't delete the plugin"],"Advanced Settings":[null,"Advanced Settings"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Manage all your 301 redirects and monitor 404 errors"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Redirection Support":[null,"Redirection Support"],"Support":[null,"Support"],"404s":[null,"404s"],"404s from %s":[null,"404s from %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Delete Redirection"],"Upload":[null,"Upload"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."],"Import":[null,"Import"],"Update":[null,"Update"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"],"Auto-generate URL":[null,"Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Don't monitor"],"Monitor changes to posts":[null,"Monitor changes to posts"],"404 Logs":[null,"404 Logs"],"(time to keep logs for)":[null,"(time to keep logs for)"],"Redirect Logs":[null,"Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"I'm a nice person and I have helped support the author of this plugin"],"Plugin support":[null,"Plugin support"],"Options":[null,"Options"],"Two months":[null,"Two months"],"A month":[null,"A month"],"A week":[null,"A week"],"A day":[null,"A day"],"No logs":[null,"No logs"],"Modules":[null,"Modules"],"Export to CSV":[null,"Export to CSV"],"Delete All":[null,"Delete All"],"Redirection Log":[null,"Redirection Log"],"optional":[null,"optional"],"Description":[null,"Description"],"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.":[null,"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":[null,"Add Group"],"Search":[null,"Search"],"Groups":[null,"Groups"],"Save":[null,"Save"],"Add Redirection":[null,"Add Redirection"],"Group":[null,"Group"],"Regular expression":[null,"Regular expression"],"Action":[null,"Action"],"Match":[null,"Match"],"Your redirection has been added.":[null,"Your redirection has been added."],"Add new redirection":[null,"Add new redirection"],"Cancel":[null,"Cancel"],"Download":[null,"Download"],"Sorry, but your redirection was not created":[null,"Sorry, but your redirection was not created"],"Unable to perform action":[null,"Unable to perform action"],"No items were imported":[null,"No items were imported"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirection was successfully imported","%d redirections were successfully imported"],"Your options were updated":[null,"Your options were updated"],"Redirection":[null,"Redirection"],"Settings":[null,"Settings"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"WordPress-powered redirects. This requires no further configuration, and you can track hits."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."],"Automatically remove or add www to your site.":[null,"Automatically remove or add www to your site."],"Default server":[null,"Default server"],"Canonical URL":[null,"Canonical URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress is installed in: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file, then enter the full path and filename here. You can also download the file and update it manually."],".htaccess Location":[null,".htaccess Location"],"Do nothing":[null,"Do nothing"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Redirect to random post"],"Redirect to URL":[null,"Redirect to URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Unable to add new redirect - delete Redirection from the options page and re-install"],"Invalid source URL when creating redirect for given match type":[null,"Invalid source URL when creating redirect for given match type"],"Invalid group when creating redirect":[null,"Invalid group when creating redirect"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."],"Source and target URL must be different":[null,"Source and target URL must be different"],"Configure":[null,"Configure"],"Show only this IP":[null,"Show only this IP"],"IP":[null,"IP"],"Source URL":[null,"Source URL"],"Date":[null,"Date"],"Add Redirect":[null,"Add Redirect"],"All modules":[null,"All modules"],"View Redirects":[null,"View Redirects"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Name"],"Filter":[null,"Filter"],"No group filter":[null,"No group filter"],"Reset Hits":[null,"Reset Hits"],"Enable":[null,"Enable"],"Disable":[null,"Disable"],"Delete":[null,"Delete"],"Edit":[null,"Edit"],"Last Access":[null,"Last Access"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Modified Posts"],"Redirections":[null,"Redirections"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"],"User Agent":[null,"User Agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL and user agent"],"Target URL":[null,"Target URL"],"URL only":[null,"URL only"],"Not matched":[null,"Not matched"],"Matched":[null,"Matched"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."],"HTTP Code":[null,"HTTP Code"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL and referrer"],"Logged Out":[null,"Logged Out"],"Logged In":[null,"Logged In"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."],"URL and login status":[null,"URL and login status"]}
locale/json/redirection-es_ES.json CHANGED
@@ -1 +1 @@
1
- {"":{"project-id-version":"Redirect","report-msgid-bugs-to":"","pot-creation-date":"2009-02-23 20:25-0300","po-revision-date":"","last-translator":"Juan <j@j.com>","language-team":"Juan E. <juan@unahormiga.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Spanish","x-poedit-country":"SPAIN","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"c:/temp/redirection/","x-poedit-keywordslist":"__;_e","x-poedit-searchpath-0":"c:/temp/redirection"},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">No esta autorizado para acceder a este recurso</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">Esa función no está definida</p>"],"Sorry, but your redirection was not created":[null,"Lo siento, pero su redirección no fué creada"],"Failed to retrieve group data":[null,"Error al obtener datos del grupo"],"Failed to retrieve module data":[null,"Error al obtener datos del módulo"],"How many widgets would you like?":[null,"Cuantos widgets desea"],"Save":[null,"Guardar"],"Redirection Help":[null,"Ayuda de Redirection"],"Redirection Documentation":[null,"Documentación de Redirection"],"Redirection Support Forum":[null,"Foro de soporte de Redirection"],"Redirection Bug Tracker":[null,"Seguimiento de errores de Redirection"],"Redirection FAQ":[null,"Preguntas frecuentes de Redirection"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Por favor, lea la documentación, el FAQ, y verifique el registro de bugs, antés de realizar una pregunta."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Módulo creado con éxito"],"Your module was not created - did you provide a name?":[null,"Su modulo no se creó - ¿escribió un nombre?"],"Your options were updated":[null,"Sus opciones se actualizaron"],"Redirection data has been deleted and the plugin disabled":[null,"Los datos de redirección fueron eliminados y el plugin deshabilitado"],"No items were imported":[null,"No se importaron items"],"Your logs have been deleted":[null,"Se han borrado sus registros"],"Your group was added successfully":[null,"Su grupo ha sido agregado correctamente."],"Please specify a group name":[null,"Por favor especifique un nombre para el grupo"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importado el %s a %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Importar por XML solo está disponible utilizando PHP5 - usted tiene PHP4."],"URL and login status":[null,"Estado de URL y conexión"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"La URL destino será elegida entre las URL que siguen, dependiendo si el usuario se encuentra validado o no. Si deja la URL vacía el usuario no serà redireccionado."],"Logged In":[null,"Validado"],"Logged Out":[null,"Sin validar"],"URL and referrer":[null,"URL y referente"],"Referrer":[null,"Referente"],"Regex":[null,"Expresión regular"],"HTTP Code":[null,"Código HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"El visitante será redireccionado de la URL origen si el referente concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado"],"Matched":[null,"Concuerda"],"Not matched":[null,"Sin coincidencia"],"URL only":[null,"Sólo URL"],"Target URL":[null,"URL destino"],"URL and user agent":[null,"URL y cliente de usuario (user agent)"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Agente usuario HTTP"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"El visitante será redireccionado de la URL origen si el agente de usuario concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"Errores 404"],"Redirections":[null,"Redirecciones"],"Modified posts":[null,"Entradas modificadas"],"Strip WWW":[null,"Quitar WWW"],"Force WWW":[null,"Forzar WWW"],"Strip index.php":[null,"Quitar index.phpl"],"Previous":[null,"Anterior"],"Next":[null,"Siguiente"],"%d per-page":[null,"%d por página"],"Displaying %s&#8211;%s of %s":[null,"Mostrando %s&#8211;%s de %s"],"Redirect to URL":[null,"Redirigir a URL"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Pass-through":[null,"Pasar directo"],"Error (404)":[null,"Error (404)"],"Do nothing":[null,"No hacer nada"],"Log 404s":[null,"Registrar 404s"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Deshabilitado: Debe habilitar <a href=\"options-permalink.php\">permalinks</a> antés de usar esto</strong>"],"<small>No options have been set</small>":[null,"<small>No se configuró ninguna opción</small>"],"Location":[null,"Lugar"],"WordPress is installed in: <code>%s</code>":[null,"WordPress está instalado en: <code>%s</code>"],"Canonical":[null,"Canónico"],"Leave as is":[null,"Dejar como está"],"Strip WWW (%s)":[null,"Quitar WWW (%s)"],"Force WWW (www.%s)":[null,"Forzar WWW (www.%s)"],"Strip Index":[null,"Quitar Index"],"Strip index files (html,php)":[null,"Recortar archivo index (html,php)"],"Memory Limit":[null,"Límite de memoria"],"Server default":[null,"Predeterminado del servidor"],"Error Level":[null,"Nivel de error"],"No errors":[null,"Sin errores"],"Show errors":[null,"Mostrar errores"],"Ban IPs":[null,"Prohibir IPs"],"Allow IPs":[null,"Permitir IPs"],"Raw .htaccess":[null,".htaccess crudo"],"Site URL":[null,"URL del sitio"],"Advanced: For management of external sites":[null,"Avanzado: Para administración de sitios externos"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Localización invalida - verifique que la ruta existe</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>No se puede escribir al archivo <code>.htaccess</code> configurado - verifique permisos</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Desabilitado: ingrese la ubicación del archivo <code>.htaccess</code> para que esto sea valido</strong>"],"strip WWW":[null,"quitar WWW"],"force WWW":[null,"forzar www"],"strip index":[null,"quitar index"],"memory limit at %dMB":[null,"limite de memoria en: %dMB"],"no errors":[null,"sin errores"],"show errors":[null,"mostrar errores"],"IPs are banned":[null,"Se prohiben IPs"],"IPs are allowed":[null,"Se permiten IPs"]," for external site: <code>%s</code>":[null," para sitio externo: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Quitar archivos index (html,php,asp)"],"30 seconds":[null,"30 segundos"],"1 minute":[null,"1 minuto"],"2 minutes":[null,"2 minutos"],"5 minutes":[null,"5 minutos"],"As long as possible":[null,"Lo máximo posible"],"time limit set as long as possible":[null,"limite de tiempo configurado como lo máximo posible"],"time limit at %ss":[null,"tiempo limite a %ss"],"Add new redirection":[null,"Añadir nueva redirección"],"Your redirection has been added.":[null,"Se ha agregado su redirección"],"Source URL":[null,"URL origen"],"Match":[null,"Coincidencia"],"Action":[null,"Acción"],"Regular expression":[null,"Expresión regular"],"Group":[null,"Grupo"],"Add Redirection":[null,"Añadir Redirection"],"Name":[null,"Nombre"],"Tracked":[null,"Tracked"],"Whether to track 'hits' to items":[null,"Si se cuenta la cantidad de \"hits\" a items"],"Enabled":[null,"Habilitado"],"Disabling a group will disable all items contained within it":[null,"Deshablitar un grupo deshabilita todos los elementos que se encuentran dentro del mismo"],"Cancel":[null,"Cancelar"],"edit group":[null,"editar grupo"],"disabled":[null,"desactivado"],"Groups for module":[null,"Grupos para módulo"],"Module":[null,"Módulo"],"Search":[null,"Buscar"],"go":[null,"comenzar"],"Hits":[null,"Hits"],"Select All":[null,"Seleccionar todo"],"Toggle":[null,"Desactivar/Activar"],"Reset Hits":[null,"Reiniciar cuenta"],"Delete":[null,"Eliminar"],"Move To":[null,"Mover a"],"re-order":[null,"re-ordenar"],"save order":[null,"grabar orden"],"You have no groups in this module.":[null,"Usted no tiene grupos en este módulo."],"Add Group":[null,"Añadir grupo"],"Add":[null,"Añadir"],"Please wait...":[null,"Por favor, espere..."],"Are you sure?":[null,"Está seguro?"],"No items have been selected":[null,"No se seleccionaron objetos"],"%s by matching %s":[null,"%s por coincidencia de %s"],"Title":[null,"Título"],"optional":[null,"opcional"],"Redirections for group":[null,"Redirecciones para el grupo"],"Go":[null,"Comenzar"],"Last Access":[null,"Último acceso"],"Type":[null,"Tipo"],"URL":[null,"URL"],"Position":[null,"Posición"],"You have no redirections.":[null,"No tienes redirecciones"],"Redirection Log":[null,"Registro de redirecciones"],"Bulk Actions":[null,"Acciónes en bloque"],"Apply":[null,"Aplicar"],"Filter":[null,"Filtro"],"Date":[null,"Fecha"],"IP":[null,"IP"],"There are no logs to display!":[null,"No hay registros para mostrar!"],"Process Current Logs":[null,"Procesar registros actuales"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Esta acción afectara todos los registros disponibles (su frase de busqueda restringe los elementos registrados)."],"Delete Logs":[null,"Borrar registros"],"Export to CSV":[null,"Exportar a CSV"],"Redirect to":[null,"Redirigir a"],"Redirected by":[null,"Redirigido por"],"for":[null,"para"],"View as":[null,"Ver como"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"editar"],"delete":[null,"borrar"],"reset":[null,"anular"],"Modules":[null,"Módulos"],"Details":[null,"Detalles"],"Groups":[null,"Grupos"],"Items":[null,"Items"],"Operations":[null,"Operaciones"],"Note: Hits are dependant on log entries":[null,"Nota: Los Hits depden de las entradas de su registro"],"You have no modules defined yet":[null,"Usted no tiene ningún módulo definido aún"],"Add Module":[null,"Agregar módulo"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Un módulo es un elemento de control que determina como se manejan las redirecciones. Los elementos en un módulo WordPress son manejados por WordPress, los elementos en un módulo Apache son manejados por <code>.htaccess</code>, y los elementos en un módulo 404 afectan como se registran los errores 404."],"Create":[null,"Crear"],"Options":[null,"Opciones"],"Auto-generate URL":[null,"Auto generar URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Esto se utilizara para auto-generar un URL si no se da ningún URL. Puede usar las etiquetas especiales $dec$ o $hex$ para que se inserte un ID único (decimal o hex, uno de los dos)"],"IP Lookup Service":[null,"Servicio de busqueda de IP"],"Plugin Support":[null,"Soporte de Plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soy una buena persona y ayude al autor de este plugin"],"Expire Logs":[null,"Registro de expirados"],"days (enter 0 for no expiry)":[null,"días (ingresar 0 para que no expire)"],"RSS Token":[null,"Token RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Un identificador único que permite a los lectores RSS acceder a Redirection (dejar en blanco para auto-generarlo)"],"URL Monitoring":[null,"Monitoreo de URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Puede hacer que Redirection detecte cambios en las URL y tener una redirección automáticamente creada dentro de un grupo especifico."],"Post &amp; Page URLs":[null,"URLs de Entradas &amp; Páginas"],"Don't monitor":[null,"No detectar"],"Monitor new posts":[null,"Detectar nuevos artìculos"],"Category URLs":[null,"URLs de categorías"],"Update":[null,"Actualizar"],"Import":[null,"Importar"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Aquí puede importar redirecciones de un archivo .htaccess, un archivo CSV (separado por comas), o un archivo XML de Redirection."],"Import into":[null,"Importar a"],"Upload":[null,"Subir"],"Note that the group is ignored when uploading an XML file.":[null,"Note que el grupo es ignorado cuando carga un archivo XML."],"Delete Redirection":[null,"Borrar Redirection"],"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.":[null,"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."],"Redirects":[null,"Redirecciones"],"Log":[null,"Log"],"Redirection Support":[null,"Soporte Técnico de Redirection"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"Redirection ha llevado mucho tiempo y esfuerzo para desarrollar. Si le resultó útil entonces puede ayudar a su desarrollo por medio de una <strong>pequeña donación de $8</strong>. Esto servirá de incentivo para que continue con el desarrollo, proveyendo incontables horas de soporte, e incluyendo las mejoras que son sugeridas."],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"Como alternativa, si usted es multi-lingüe, considere traducir el original a otro idioma. Todos los archivos de localisación están incluidos y he escrito una <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guia completa al procedimiento de traducción</a>."],"Other plugins":[null,"Otros plugins"],"You may also be interested in some of my other plugins:":[null,"Usted puede estar interesado en alguno de estos otros plugins:"],"HeadSpace":[null,"HeadSpace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"El más completo administrador de meta-datos para SEO y plugins de todo tipo para WordPress. Sustituya cinco o seis plugins con un solo super-plugin!"],"Search Unleashed":[null,"Search Unleashed"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"Busquedas atractivas que van más alla de las originales de WordPress y aumentan la utilidad de su sitio."],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"flexible y poderosa inserción de texto que le permite agregar lo que desee, donde lo desee."],"This notice will only be shown at periodic intervals.":[null,"Este aviso solo se mostrar a intervalos periódicos"]}
1
+ {"":{"po-revision-date":"2017-07-09 16:23:30+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"es","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,"Algo fue mal 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,"Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "],"It didn't work when I tried again":[null,"No funcionó al intentarlo de nuevo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,"Si el problema no se conoce al tratar de desactivar otros plugins - es fácil hacerlo, y puedes volver a activarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos, y conocer esto pronto ayudará mucho."],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,"Si es un problema nuevo entonces, por favor, crea un nuevo aviso de problemas o envíalo directamente a john@urbangiraffe.com. Incluye una descripción de lo que estabas tratando de hacer y los detalles importantes detallados abajo. Si puedes incluir un captura entonces incluso mejor."],"Important details for the thing you just did":[null,"Detalles importantes de lo que fuese que hayas hecho"],"Please include these details in your report":[null,"Por favor, incluye estos detalles en tu informe"],"Log entries (100 max)":[null,"Entradas del registro (máximo 100)"],"Failed to load":[null,"Fallo al cargar"],"Remove WWW":[null,"Quitar WWW"],"Add WWW":[null,"Añadir WWW"],"Search by IP":[null,"Buscar por IP"],"Select bulk action":[null,"Elegir acción en lote"],"Bulk Actions":[null,"Acciones en lote"],"Apply":[null,"Aplicar"],"First page":[null,"Primera página"],"Prev page":[null,"Página anterior"],"Current Page":[null,"Página actual"],"of %(page)s":[null,"de %(página)s"],"Next page":[null,"Página siguiente"],"Last page":[null,"Última página"],"%s item":["%s items","%s elemento","%s elementos"],"Select All":[null,"Elegir todos"],"Sorry but something went wrong loading the data - please try again":[null,"Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"],"No results":[null,"No hay resultados"],"Delete the logs - are you sure?":[null,"Borrar los registros - ¿estás seguro?"],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,"Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."],"Yes! Delete the logs":[null,"¡Sí! Borra los registros"],"No! Don't delete the logs":[null,"¡No! No borres los registros"],"Redirection 404":[null,"Redirección 404"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."],"Newsletter":[null,"Boletín"],"Want to keep up to date with changes to Redirection?":[null,"¿Quieres estar al día de los cambios en Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."],"Your email address:":[null,"Tu dirección de correo electrónico:"],"I deleted a redirection, why is it still redirecting?":[null,"He borrado una redirección, ¿por qué aún sigue redirigiendo?"],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,"Tu navegador cachea las redirecciones. Si has borrado una redirección y tu navegaor aún hace la redirección entonces {{a}}vacía la caché de tu navegador{{/a}}."],"Can I open a redirect in a new tab?":[null,"¿Puedo abrir una redirección en una nueva pestaña?"],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,"No es posible hacer esto en el servidor. Tendrás que añadir {{code}}target=\"blank\"{{/code}} a tu enlace."],"Something isn't working!":[null,"¡Algo no funciona!"],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,"Por favor, desactiva todos los demás plugins y comprueba si persiste el problema. Si así fuera infórmalo {{a}}aquí{{/a}} con todos los detalles del problema y un modo de reproducirlo."],"Frequently Asked Questions":[null,"Preguntas frecuentes"],"Need some help? Maybe one of these questions will provide an answer":[null,"¿Necesitas ayuda? Puede que una de estas preguntas te ofrezca una respuesta"],"You've already supported this plugin - thank you!":[null,"Ya has apoyado a este plugin - ¡gracias!"],"I'd like to donate some more":[null,"Me gustaría donar algo más"],"You get some useful software and I get to carry on making it better.":[null,"Tienes un software útil y yo seguiré haciéndolo mejor."],"Please note I do not provide support and this is just a donation.":[null,"Por favor, se consciente de que no ofrezco soporte, y que esto es solo un donativo."],"Yes I'd like to donate":[null,"Sí, me gustaría donar"],"Thank you for making a donation!":[null,"¡Gracias por hacer un donativo!"],"Forever":[null,"Siempre"],"Failed to save data":[null,"Fallo al guardar los datos"],"Failed to load data":[null,"Fallo al cargar los datos"],"CSV Format":[null,"Formato CSV"],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,"URL de origen, URL de destino, [Regex 0=false, 1=true], [HTTP Code]"],"Delete the plugin - are you sure?":[null,"Borrar el plugin - ¿estás seguro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."],"Yes! Delete the plugin":[null,"¡Sí! Borrar el plugin"],"No! Don't delete the plugin":[null,"¡No! No borrar el plugin"],"Advanced Settings":[null,"Ajustes avanzados"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "],"Redirection Support":[null,"Soporte de Redirection"],"Support":[null,"Soporte"],"404s":[null,"404s"],"404s from %s":[null,"404s desde %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Borrar Redirection"],"Upload":[null,"Subir"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Aquí puedes importar tus redirecciones desde un archivo {{code}}.htaccess{{/code}} existente, o un archivo CSV."],"Import":[null,"Importar"],"Update":[null,"Actualizar"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"Esto será usado para generar automáticamente una URL si no ha sido dada previamente. Puedes usar las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para tener una ID única insertada (tanto decimal como hexadecimal)"],"Auto-generate URL":[null,"Auto generar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"No detectar"],"Monitor changes to posts":[null,"Monitorizar cambios en entradas"],"404 Logs":[null,"Registros 404"],"(time to keep logs for)":[null,"(tiempo que se mantendrán los registros)"],"Redirect Logs":[null,"Registros de redirecciones"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soy una buena persona y ayude al autor de este plugin"],"Plugin support":[null,"Soporte del plugin"],"Options":[null,"Opciones"],"Two months":[null,"Dos meses"],"A month":[null,"Un mes"],"A week":[null,"Una semana"],"A day":[null,"Un dia"],"No logs":[null,"No hay logs"],"Modules":[null,"Módulos"],"Export to CSV":[null,"Exportar a CSV"],"Delete All":[null,"Borrar todo"],"Redirection Log":[null,"Registro de redirecciones"],"optional":[null,"opcional"],"Description":[null,"Copias de seguridad de bases de datos"],"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.":[null,"Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a un módulo, lo cual afecta a cómo se realizan las redirecciones en ese grupo. Si no estás seguro entonces utiliza el módulo WordPress."],"Add Group":[null,"Añadir grupo"],"Search":[null,"Buscar"],"Groups":[null,"Grupos"],"Save":[null,"Guardar"],"Add Redirection":[null,"Añadir redirección"],"Group":[null,"Grupo"],"Regular expression":[null,"Expresión regular"],"Action":[null,"Acción"],"Match":[null,"Coincidencia"],"Your redirection has been added.":[null,"Se ha agregado tu redirección"],"Add new redirection":[null,"Añadir nueva redirección"],"Cancel":[null,"Cancelar"],"Download":[null,"Descargar"],"Sorry, but your redirection was not created":[null,"Lo siento, pero tu redirección no fue creada"],"Unable to perform action":[null,"No se pudo realizar la acción"],"No items were imported":[null,"Ningún elemento importado"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirección importada correctamente","%d redirecciones importadas correctamente"],"Your options were updated":[null,"Tus ajustes se actualizaron"],"Redirection":[null,"Redirection"],"Settings":[null,"Ajustes"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Redirecciones gestionadas por WordPress. No requiere configuración adicional y puedes registrar los accesos"],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Para utilizar en servidores Nginx. Requiere configuración manual. La redirección sucede sin cargar WordPress. No hay registro de accesos. Es un módulo experimental."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Utiliza archivos {{code}}.htaccess{{/code}} de Apache. Requiere configuración adicional. La redirección se realiza sin cargar WordPress. No se realiza un registro de accesos."],"Automatically remove or add www to your site.":[null,"Eliminar o añadir automáticamente www a tu sitio."],"Default server":[null,"Servidor por defecto"],"Canonical URL":[null,"URL canónica"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress está instalado en: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"Si quieres que Redirection automáticamente actualice tu archivo {{code}}.htaccess{{/code}} introduce la ruta completa y nombre de archivo aquí. También puedes descargar el archivo y actualizarlo manualmente."],".htaccess Location":[null,"Ubicación de .htaccess"],"Do nothing":[null,"No hacer nada"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pasar directo"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Redirect to URL":[null,"Redirigir a URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Imposible añadir una nueva redirección - elimina Redirection desde la página de opciones y reinstala"],"Invalid source URL when creating redirect for given match type":[null,"URL de origen no válida a la hora de crear una redirección desde un tipo de conexión previo"],"Invalid group when creating redirect":[null,"Grupo no válido a la hora de crear la redirección"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Solo puedes redireccionar de una URL relativa (<code>%s</code>) en este dominio (<code>%s</code>)."],"Source and target URL must be different":[null,"La URL de origen y destino deben ser diferentes"],"Configure":[null,"Configurar"],"Show only this IP":[null,"Mostrar sólo esta IP"],"IP":[null,"IP"],"Source URL":[null,"URL origen"],"Date":[null,"Fecha"],"Add Redirect":[null,"Añadir redirección"],"All modules":[null,"Todos los módulos"],"View Redirects":[null,"Ver redirecciones"],"Module":[null,"Módulo"],"Redirects":[null,"Redirecciones"],"Name":[null,"Nombre"],"Filter":[null,"Filtro"],"No group filter":[null,"Sin filtro de grupo"],"Reset Hits":[null,"Reiniciar cuenta"],"Enable":[null,"Habilitar"],"Disable":[null,"Desactivar"],"Delete":[null,"Eliminar"],"Edit":[null,"Editar"],"Last Access":[null,"Último acceso"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Tipo"],"Modified Posts":[null,"Entradas modificadas"],"Redirections":[null,"Redirecciones"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"El visitante será redireccionado de la URL origen si el agente de usuario concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado.\n"],"User Agent":[null,"Agente usuario HTTP"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL y cliente de usuario (user agent)"],"Target URL":[null,"URL destino"],"URL only":[null,"Sólo URL"],"Not matched":[null,"Sin coincidencia"],"Matched":[null,"Concuerda"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"El visitante será redireccionado de la URL origen si el referente concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado"],"HTTP Code":[null,"Código HTTP"],"Regex":[null,"Expresión regular"],"Referrer":[null,"Referente"],"URL and referrer":[null,"URL y referente"],"Logged Out":[null,"Desconectado"],"Logged In":[null,"Conectado"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"La URL destino será elegida entre las URL que siguen, dependiendo si el usuario se encuentra validado o no. Si deja la URL vacía el usuario no serà redireccionado."],"URL and login status":[null,"Estado de URL y conexión"]}
locale/json/redirection-fi.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2017-04-13 10:15:22+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"fi","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Edistyneet asetukset"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Hallitse 301-uudelleenohjauksia ja seuraa 404-virheitä"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Redirection-tuki"],"Support":[null,"Tuki"],"404s":[null,"404:t"],"404s from %s":[null,"404:t osoitteesta %s"],"Log":[null,"Loki"],"Delete Redirection":[null,"Poista Redirection-lisäosa"],"Upload":[null,"Siirrä palvelimelle"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Tuonti"],"Update":[null,"Päivitä"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Luo URL automaattisesti"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Uniikki merkkijono (token), jonka avulla RSS-lukijat pääsevät Redirection-lokiin (jätä tyhjäksi, jos haluat että se luodaan automaattisesti)"],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Älä monitoroi"],"Monitor changes to posts":[null,"Seuraa muutoksia sisällön osoitteissa"],"404 Logs":[null,"404-lokit"],"(time to keep logs for)":[null,"(aika lokien säilyttämiseen)"],"Redirect Logs":[null,"Uudelleenohjausloki"],"I'm a nice person and I have helped support the author of this plugin":[null,"Olen kiva typpi ja olen auttanut tukemalla lisäosan kehittäjää"],"Plugin support":[null,""],"Options":[null,"Asetukset"],"Two months":[null,"Kaksi kuukautta"],"A month":[null,"Kuukausi"],"A week":[null,"Viikko"],"A day":[null,"Päivä"],"No logs":[null,"Ei lokeja"],"Modules":[null,"Moduulit"],"Export to CSV":[null,""],"Delete All":[null,"Poista kaikki"],"Redirection Log":[null,"Uudelleenohjausloki"],"optional":[null,"valinnainen"],"Description":[null,"Kuvaus"],"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.":[null,"Käytä ryhmiä uudelleenohjauksiesi organisoimiseen. Ryhmät on asetettu moduuleille, mikä vaikuttaa kuinka sen ryhmän uudelleenohjaukset toimivat. Jos olet epävarma, pysyttele WordPress-moduulissa."],"Add Group":[null,"Lisää Ryhmä"],"Search":[null,"Haku"],"Groups":[null,"Ryhmät"],"Save":[null,"Tallenna"],"Add Redirection":[null,"Lisää uudelleenohjaus"],"Group":[null,"Ryhmä"],"Regular expression":[null,"Säännöllinen lauseke (regex)"],"Action":[null,"Toiminto"],"Match":[null,"Vertaa"],"Your redirection has been added.":[null,"Uudelleenohjaus lisätty."],"Add new redirection":[null,"Lisää uusi uudelleenohjaus"],"Cancel":[null,"Peruuta"],"Download":[null,"Lataa"],"Sorry, but your redirection was not created":[null,"Pahoittelut. Uudelleenohjausta ei luotu"],"Unable to perform action":[null,"Toimintoa ei voida suorittaa"],"No items were imported":[null,"Yhtään merkintää ei tuotu"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d uudelleenohjaus tuotiin onnistuneesti","%d uudelleenohjausta tuotiin onnistuneesti"],"Your options were updated":[null,"Asetukset päivitetty"],"Redirection":[null,"Uudelleenohjaus"],"Settings":[null,"Asetukset"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"WordPressin tekemät uudelleenohjaukset. Tämä ei vaadi enempää konfigurointia ja voit tutkia käyttömääriä."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Käytettäväksi Nginx-palvelimille. Vaatii manuaalisen asennuksen. Uudelleenohjaus tapahtuu lataamatta WordPressiä. Käyttömääriä ei seurata. Tämä on kokeellinen moduuli."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Lisää tai poista www automaattisesti sivustollesi."],"Default server":[null,"Oletuspalvelin"],"Canonical URL":[null,"Kanoninen URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess-tiedoston sijainti"],"Do nothing":[null,"Älä tee mitään"],"Error (404)":[null,"Virhe (404)"],"Pass-through":[null,"Läpikulku"],"Redirect to random post":[null,"Uudelleenohjaus satunnaiseen artikkeliin"],"Redirect to URL":[null,"Uudelleenohjaa osoitteeseen"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Uutta uudelleenohjausta ei voitu tehdä - poista Redirection asetuksista ja asenna uudestaan"],"Invalid source URL when creating redirect for given match type":[null,"Lähdeosoite ei kelpaa tälle vertailutyypille"],"Invalid group when creating redirect":[null,"Epäkelpo ryhmä uudelleenohjausta luotaessa"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Voit tehdä uudelleenohjauksia ainoastaan relatiivisista URL-osoittesta (<code>%s</code>) tällä domainilla (<code>%s</code>)."],"Source and target URL must be different":[null,"Lähde- ja kohdeosoitteiden tulee erota toisistaan"],"Configure":[null,"Konfiguroi"],"Show only this IP":[null,"Näytä vain Tämä IP"],"IP":[null,"IP"],"Source URL":[null,"Lähde-URL"],"Date":[null,"Päiväys"],"Add Redirect":[null,""],"All modules":[null,"Kaikki moduulit"],"View Redirects":[null,"Näytä uudelleenohjaukset"],"Module":[null,"Moduuli"],"Redirects":[null,"Uudelleenohjaukset"],"Name":[null,"Nimi"],"Filter":[null,"Suodata"],"No group filter":[null,"Ei ryhmäsuodatinta"],"Reset Hits":[null,"Nollaa osumat"],"Enable":[null,"Käytä"],"Disable":[null,"Poista käytöstä"],"Delete":[null,"Poista"],"Edit":[null,"Muokkaa"],"Last Access":[null,"Käytetty viimeksi"],"Hits":[null,"Osumat"],"URL":[null,"URL"],"Type":[null,"Laji"],"Modified Posts":[null,"Muokatut artikkelit"],"Redirections":[null,"Uudelleenohjaukset"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Kävijä ohjataan lähtöosoitteesta jos user agent täsmää. Voit syöttää <em>verrattavan</em> kohdeosoitteen paikaksi, jonne halutut kävijät uudelleenohjataan sekä niille, joiden osoite <em>ei täsmää</em>. Jos jätät URL-osoitteen tyhjäksi, kävijää ei ohjata. <strong>Kaikki vertailu tehdään säännönmukaisilla lauseilla (regex)</strong>.\n"],"User Agent":[null,"Selain"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL ja user agent"],"Target URL":[null,"Kohde-URL"],"URL only":[null,"Vain URL"],"Not matched":[null,"Ei-täsmäävät"],"Matched":[null,"Täsmäävät"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Kävijä uudelleenohjataan lähtöosoitteesta jos referrer-tieto täsmää. Voit syöttää <em>täsmääville</em> kohdeosoitteen ja <em>muille</em> oman osoitteen. Jos jätät URL-osoitteen tyhjäksi, kävijää ei uudelleenohjata."],"HTTP Code":[null,"HTTP-koodi"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL ja referrer"],"Logged Out":[null,"Kirjautumaton"],"Logged In":[null,"Kirjautunut"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Kohdeosoite valitaan seuraavista osoitteista riippuen onko käyttäjä kirjautunut sisään. Jos jätät URL-osoitteen tyhjäksi, käyttäjää ei uudelleenohjata."],"URL and login status":[null,"URL ja kirjautumistila"]}
locale/json/redirection-fr_FR.json CHANGED
@@ -1 +1 @@
1
- {"":{"project-id-version":"Redirection 1.7.26","report-msgid-bugs-to":"","pot-creation-date":"2009-06-16 10:53+0100","po-revision-date":"2009-06-16 11:05+0100","last-translator":"serge rauber <http://wp.kalyxstudio.com/contact>","language-team":"Thomas Parisot aka Oncle Tom <thomas@oncle-tom.net>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"French","x-poedit-country":"FRANCE","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ ;_e","x-poedit-basepath":".","x-poedit-searchpath-0":"..","x-poedit-searchpath-1":"."},"Sorry, but your redirection was not created":[null,"Désolé, mais votre redirection n'a pas été créée"],"Settings":[null,"Réglages"],"Redirection Help":[null,"Redirection - Aide"],"Redirection Documentation":[null,"Redirection - Documentation"],"Redirection Support Forum":[null,"Redirection - Forum d'entraide "],"Redirection Bug Tracker":[null,"Redirection - Rapport de bug "],"Redirection FAQ":[null,"Redirection - FAQ "],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Veuillez lire la documentation et la FAQ, et consulter le rapport de bug avant de poser des questions."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Votre module a bien été créé"],"Your module was not created - did you provide a name?":[null,"Votre module n'a pas été créé - avez-vous fourni un nom?"],"Your options were updated":[null,"Vos options ont été mises à jour"],"Redirection data has been deleted and the plugin disabled":[null,"Les données de Redirection ont été supprimées et l'extension désactivée"],"No items were imported":[null,"Aucun item n'a été importé"],"Your logs have been deleted":[null,"Votre archivage a été effacé"],"Your group was added successfully":[null,"Votre groupe a bien été ajouté"],"Please specify a group name":[null,"Veuillez spécifier un nom de groupe"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importé sur %s à %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"L'importation XML est seulement disponible avec PHP5 - vous avez PHP4"],"URL and login status":[null,"URL et statut de connexion"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"L'URL cible sera choisie à partir d'une des adresses suivantes, selon que l'utilisateur est connecté ou non. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé."],"Logged In":[null,"Connecté"],"Logged Out":[null,"Déconnecté"],"URL and referrer":[null,"URL et site référant"],"Referrer":[null,"Référant"],"Regex":[null,"Motif"],"HTTP Code":[null,"Code HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Le visiteur sera redirigé si le site référent correspond. Vous pouvez spécifier une URL cible pour les visiteurs venant d'un site, ou ne venant pas d'un site. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé."],"Matched":[null,"Correspond "],"Not matched":[null,"Ne correspond pas à"],"URL only":[null,"une URL"],"Target URL":[null,"URL cible"],"URL and user agent":[null,"URL et User-Agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Agent utilisateur"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Le visiteur sera rediriger selon l'<em>User-Agent</em>. Vous pouvez spécifier une URL si l'<em>user agent</em> correspond, et s'il ne correspond pas. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé. <strong>Les correspondances sont faites avec des expressions régulières</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"Erreurs 404"],"Redirections":[null,"Redirections"],"Modified posts":[null,"Articles modifiés"],"Strip WWW":[null,"Strip WWW"],"Force WWW":[null,"Forcer WWW"],"Strip index.php":[null,"Enlever index.php"],"Previous":[null,"Précédent"],"Next":[null,"Suivant"],"%d per-page":[null,"%d par page"],"Displaying %s&#8211;%s of %s":[null,"Affichage %s&#8211;%s sur %s"],"Redirect to URL":[null,"Rediriger vers une URL"],"Redirect to random post":[null,"Rediriger vers un article aléatoire"],"Pass-through":[null,"Transiter par"],"Error (404)":[null,"N'existe plus (erreur 404)"],"Do nothing":[null,"Ne rien faire"],"Log 404s":[null,"Journaux des erreurs 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Désactivé: vous devez activer <a href=\"options-permalink.php\">les permaliens</a> avant de l'utiliser</strong>"],"<small>No options have been set</small>":[null,"<small>Aucune option n'a été choisie</small>"],"Location":[null,"Emplacement"],"WordPress is installed in: <code>%s</code>":[null,"WordPress est installé dans: <code>%s</code>"],"Canonical":[null,"canonique"],"Leave as is":[null,"Laisser comme ça"],"Strip WWW (%s)":[null,"Enlever Www (%s)"],"Force WWW (www.%s)":[null,"forcer WWW (www.%s)"],"Strip Index":[null,"Enlever l'index"],"Strip index files (html,php)":[null,"Enlever les fichiers index (html,php)"],"Memory Limit":[null,"Limite Mémoire"],"Server default":[null,"valeur serveur"],"Error Level":[null,"Niveau d'erreur"],"No errors":[null,"Pas d'erreur"],"Show errors":[null,"Afficher les erreurs"],"Ban IPs":[null,"Bannir des IP"],"Allow IPs":[null,"Autoriser des IP"],"Raw .htaccess":[null,".htacess brut"],"Site URL":[null,"URL source"],"Advanced: For management of external sites":[null,"Avancé: pour la gestion de sites externes"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Emplacement invalide - vérifier que l'adresse existe</strong<"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Impossible d'écrire sur le fichier <code>.htaccess</code> - vérifiez les permissions du fichier</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Désactivé: entrez l'emplacement du fichier <code>.htaccess</code></strong>"],"strip WWW":[null,"enlever WWW"],"force WWW":[null,"forcer WWW"],"strip index":[null,"enlever index"],"memory limit at %dMB":[null,"mémoire limitée à %dMB"],"no errors":[null,"Pas d'erreur"],"show errors":[null,"Afficher les erreurs"],"IPs are banned":[null,"Les IP sont bannis"],"IPs are allowed":[null,"Les IP sont autorisés"]," for external site: <code>%s</code>":[null,"pour le site externe: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Enlever les fichiers index (html,asp,php)"],"Time Limit":[null,"Limite de temps"],"30 seconds":[null,"30 secondes"],"1 minute":[null,"1 minute"],"2 minutes":[null,"2 minutes"],"5 minutes":[null,"5 minutes"],"As long as possible":[null,"Aussi long que possible"],"time limit set as long as possible":[null,"durée aussi longue que possible"],"time limit at %ss":[null,"durée limitée à %ss"],"Add new redirection":[null,"Ajouter une nouvelle redirection"],"Your redirection has been added.":[null,"Votre redirection a été ajouté."],"Source URL":[null,"URL source"],"Match":[null,"Correspond à"],"Action":[null,"Action"],"Regular expression":[null,"Expression régulière"],"Group":[null,"Groupe"],"Add Redirection":[null,"Ajouter la redirection"],"Name":[null,"Nom"],"Tracked":[null,"Suivi"],"Whether to track 'hits' to items":[null,"Comptage des hits par item"],"Enabled":[null,"Activé"],"Disabling a group will disable all items contained within it":[null,"Désactivé un groupe, désactive tous les items qu'il contient"],"Save":[null,"Sauvegarder"],"Cancel":[null,"Annuler"],"edit group":[null,"modifier le groupe"],"disabled":[null,"désactivé"],"Groups for module":[null,"Groupes du module"],"Module":[null,"Module"],"Search":[null,"Chercher"],"go":[null,"go"],"Hits":[null,"Hits"],"Select All":[null,"Sélectionner tout"],"Toggle":[null,"Permuter"],"Reset Hits":[null,"Initialiser les accès"],"Delete":[null,"Supprimer"],"Move To":[null,"Déplacer vers"],"Go":[null,"ok"],"re-order":[null,"réordonner"],"save order":[null,"enregistrer l'ordre"],"You have no groups in this module.":[null,"Vous n'avez aucun groupe dans ce module."],"Add Group":[null,"ajouter un groupe"],"Add":[null,"Ajouter"],"No items have been selected":[null,"Aucun item n'a été sélectionné"],"Are you sure?":[null,"Êtes-vous sûr(e) ?"],"Please wait...":[null,"Veuillez patienter ..."],"%s by matching %s":[null,"%s qui correspondent à %s"],"Title":[null,"Titre"],"optional":[null,"optionnel"],"Redirections for group":[null,"Redirections par groupe"],"Last Access":[null,"Dernier accès"],"Type":[null,"Type"],"URL":[null,"URL"],"Position":[null,"Position"],"You have no redirections.":[null,"Vous n'avez pas de redirection."],"Redirection Log":[null,"Journaux des redirections"],"Bulk Actions":[null,"Actions en vrac"],"Apply":[null,"Appliquer"],"Filter":[null,"Filtre"],"Date":[null,"Date"],"IP":[null,"IP"],"There are no logs to display!":[null,"Pas de journaux à afficher!"],"Process Current Logs":[null,"Actions sur les logs"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Ces actions s'appliquent aux items actuellement consultés (résultats de votre recherche ou sélection)"],"Delete Logs":[null,"Supprimer les journaux"],"Export to CSV":[null,"Export en CSV"],"Redirect to":[null,"Redirige vers"],"Redirected by":[null,"Redirigé par"],"for":[null,"pour"],"View as":[null,"Export"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"modifier"],"delete":[null,"Supprimer"],"reset":[null,"Initialiser"],"Modules":[null,"Modules"],"Details":[null,"Détails"],"Groups":[null,"Groupes"],"Items":[null,"Items"],"Operations":[null,"Actions"],"Note: Hits are dependant on log entries":[null,"Note: les hits dépendent des items des journaux"],"You have no modules defined yet":[null,"Vous n'avez aucun modules définis pour l'instant"],"Add Module":[null,"Ajouter un module"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Un module est un élément de contrôle qui détermine la façon dont sont traitées les redirections. Les éléments d'un module WordPress sont traités par WordPress, les éléments d'un module Apache sont traités par <code>.htaccess </ code>, et les éléments du module 404 affecte la façon dont les erreurs sont enregistrées."],"Create":[null,"Créer"],"Options":[null,"Options"],"Auto-generate URL":[null,"URL auto-générée"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Sera utilisée pour générer automatiquement une URL si aucune URL n'est donnée. Vous pouvez utiliser les tags spéciaux $dec$ ou $hex$ pour insérer un ID unique (soit décimal soit hexadécimal)"],"IP Lookup Service":[null,"Service IP Lookup"],"Plugin Support":[null,"Supporter cette extension"],"I'm a nice person and I have helped support the author of this plugin":[null,"Je suis un type bien et j'ai aidé l'auteur de cette extension"],"Expire Logs":[null,"Expiration des journaux"],"days (enter 0 for no expiry)":[null,"jours (0: pas d'expiration)"],"RSS Token":[null,"Coadge RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Un code unique permettant aux lecteurs d'un flux d'accéder au RSS de Redirection (laisser vide pour le générer automatiquement)"],"URL Monitoring":[null,"Surveillance des URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Redirection peut détecter les changements d'URL et générer une redirection automatiquement dans un groupe spécifique."],"Post &amp; Page URLs":[null,"URL d'articles et de pages"],"Don't monitor":[null,"Ne pas surveiller"],"Monitor new posts":[null,"Surveiller les nouveaux articles"],"Category URLs":[null,"URL de catégorie"],"Update":[null,"Enregistrer"],"Import":[null,"Importer"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Vous pouvez importer des redirections depuis un fichier .htaccess, CSV ou XML."],"Import into":[null,"Importer dans"],"Upload":[null,"Envoyer"],"Note that the group is ignored when uploading an XML file.":[null,"Notez que le groupe est ignoré lors de l'import d'un fichier XML"],"Delete Redirection":[null,"Supprimer Redirection"],"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.":[null,"Sélectionner cette option supprimera toutes les redirections, les journaux et toutes les options associées à l'extension Redirection. Soyez sur que c'est ce que vous voulez!"],"Redirects":[null,"Redirections"],"Log":[null,"Journaux"],"Support":[null,"Aide"],"Redirection Support":[null,"Aide de Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection est utilisable gratuitement - la vie est belle! Cependant, il a nécessité un grand nombre d'heure et beaucoup d'effort pour être developpé. Donc si vous trouvez cette extension utile, vous pouvez contribuer à son développement en <strong>faisant un petit don</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Cela m'encourage pour continuer son développement, en fournissant d'innombrables heures de soutien, et notamment de nouvelles fonctionnalités et suggestions. Vous obtenez ainsi des logiciels utiles et je peux continuer à en faire. Tout le monde y gagne."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Si vous utilisez cette extension pour un site commercial, ou trouvez qu'il est particulièrement utile, vous pouvez songer à un <strong>don commercial</strong>."],"Individual<br/>Donation":[null,"Don<br />Individuel"],"Commercial<br/>Donation":[null,"Don<br/>Commercial"],"Translations":[null,"Traductions"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Si vous parlez plusieurs langue, vous pouvez aider en faisant une traductiob:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter.":[null,"Tous les traducteurs ont un lien vers leur site sur la page de l'extension sur <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> et <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Tous les détails pour faire la traduction d'un plugin sont dans ce <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide</a>."]}
1
+ {"":{"po-revision-date":"2017-07-10 09:10:02+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/2.4.0-alpha","language":"fr","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,"Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,"J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"It didn't work when I tried again":[null,"Cela n’a pas fonctionné quand j’ai réessayé."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,"Si le problème n’est pas connu, essayez de désactiver les autres extensions. C’est simple à faire et vous pouvez les réactiver rapidement. D’autres extensions peuvent parfois provoquer des conflits et le savoir à l’avance aidera beaucoup."],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,"Détails importants sur ce que vous venez de faire."],"Please include these details in your report":[null,"Veuillez inclure ces détails dans votre compte-rendu."],"Log entries (100 max)":[null,"Entrées du journal (100 max.)"],"Failed to load":[null,"Échec du chargement"],"Remove WWW":[null,"Retirer WWW"],"Add WWW":[null,"Ajouter WWW"],"Search by IP":[null,"Rechercher par IP"],"Select bulk action":[null,"Sélectionner l’action groupée"],"Bulk Actions":[null,"Actions groupées"],"Apply":[null,"Appliquer"],"First page":[null,"Première page"],"Prev page":[null,"Page précédente"],"Current Page":[null,"Page courante"],"of %(page)s":[null,"de %(page)s"],"Next page":[null,"Page suivante"],"Last page":[null,"Dernière page"],"%s item":["%s items","%s élément","%s éléments"],"Select All":[null,"Tout sélectionner"],"Sorry but something went wrong loading the data - please try again":[null,"Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":[null,"Aucun résultat"],"Delete the logs - are you sure?":[null,"Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,"Une fois supprimés, vos journaux courants ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":[null,"Oui ! Supprimer les journaux"],"No! Don't delete the logs":[null,"Non ! Ne pas supprimer les journaux"],"Redirection 404":[null,"Redirection 404"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."],"Your email address:":[null,"Votre adresse de messagerie :"],"I deleted a redirection, why is it still redirecting?":[null,"J’ai retiré une redirection, pourquoi continue-t-elle de rediriger ?"],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,"Votre navigateur mettra en cache les redirections. Si vous avez retiré une redirection mais que votre navigateur vous redirige encore, {{a}}videz le cache de votre navigateur{{/ a}}."],"Can I open a redirect in a new tab?":[null,"Puis-je ouvrir une redirection dans un nouvel onglet ?"],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,"Impossible de faire cela sur le serveur. À la place, ajoutez {{code}}target=\"blank\"{{/code}} à votre lien."],"Something isn't working!":[null,"Quelque chose ne fonctionne pas !"],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,"Veuillez désactiver toutes les autres extensions et vérifiez si le problème persiste. Si c’est le cas, {{a}}veuillez le signaler{{/a}} avec tous ses détails, et une méthode pour le reproduire."],"Frequently Asked Questions":[null,"Foire aux questions"],"Need some help? Maybe one of these questions will provide an answer":[null,"Vous avez besoin d’aide ? Une de ces questions vous apportera peut-être une réponse."],"You've already supported this plugin - thank you!":[null,"Vous avez déjà apporté votre soutien à l’extension. Merci !"],"I'd like to donate some more":[null,"J’aimerais donner davantage"],"You get some useful software and I get to carry on making it better.":[null,"Vous avez ainsi une extension utile, et je peux continuer à l’améliorer."],"Please note I do not provide support and this is just a donation.":[null,"Veuillez noter que ça n’ouvre pas droit à du support, mais que c’est seulement un don."],"Yes I'd like to donate":[null,"Oui, j’aimerais faire un don"],"Thank you for making a donation!":[null,"Merci d’avoir fait un don !"],"Forever":[null,"Indéfiniment"],"Failed to save data":[null,"L’enregistrement des données a échoué"],"Failed to load data":[null,"Le chargement des données a échoué"],"CSV Format":[null,"Format CSV"],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,"URL source, URL cible, [Regex 0=faux, 1=vrai], [Code HTTP]"],"Delete the plugin - are you sure?":[null,"Confirmez-vous vouloir supprimer cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":[null,"Oui ! Supprimer l’extension"],"No! Don't delete the plugin":[null,"Non ! Ne pas supprimer l’extension"],"Advanced Settings":[null,"Réglages avancés"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Redirection Support":[null,"Support de Redirection"],"Support":[null,"Support"],"404s":[null,"404"],"404s from %s":[null,"404 provenant de %s"],"Log":[null,"Journaux"],"Delete Redirection":[null,"Supprimer la redirection"],"Upload":[null,"Mettre en ligne"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Ici, vous pouvez importer des redirections depuis un fichier {{code}}.htaccess{{/code}} ou un fichier CSV."],"Import":[null,"Importer"],"Update":[null,"Mettre à jour"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"Cela servira à générer automatiquement une URL si aucune n’est spécifiée. Vous pouvez utiliser les balises spéciales {{code}}$dec${{/code} ou {{code}}$hex${{/code}} pour insérer un identifiant unique (décimal ou hexadécimal)."],"Auto-generate URL":[null,"URL auto-générée&nbsp;"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":[null,"Jeton RSS "],"Don't monitor":[null,"Ne pas surveiller"],"Monitor changes to posts":[null,"Surveiller les modifications apportées aux publications&nbsp;"],"404 Logs":[null,"Journaux des 404 "],"(time to keep logs for)":[null,"(durée de conservation des journaux)"],"Redirect Logs":[null,"Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":[null,"Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."],"Plugin support":[null,"Support de l’extension "],"Options":[null,"Options"],"Two months":[null,"Deux mois"],"A month":[null,"Un mois"],"A week":[null,"Une semaine"],"A day":[null,"Un jour"],"No logs":[null,"Aucun journal"],"Modules":[null,"Modules"],"Export to CSV":[null,"Exporter en CSV"],"Delete All":[null,"Tout supprimer"],"Redirection Log":[null,"Journaux des redirections"],"optional":[null,"facultatif"],"Description":[null,"Description"],"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.":[null,"Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":[null,"Ajouter un groupe"],"Search":[null,"Rechercher"],"Groups":[null,"Groupes"],"Save":[null,"Enregistrer"],"Add Redirection":[null,"Ajout de redirection"],"Group":[null,"Groupe"],"Regular expression":[null,"Expression régulière"],"Action":[null,"Action"],"Match":[null,"Correspondant"],"Your redirection has been added.":[null,"Votre redirection a été ajoutée."],"Add new redirection":[null,"Ajouter une nouvelle redirection"],"Cancel":[null,"Annuler"],"Download":[null,"Télécharger"],"Sorry, but your redirection was not created":[null,"Désolé, votre redirection n’a pas été créée"],"Unable to perform action":[null,"Impossible d’effectuer cette action"],"No items were imported":[null,"Aucun élément n’a été importé"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirection a été importée avec succès","%d redirections ont été importées avec succès"],"Your options were updated":[null,"Vos options ont été mises à jour"],"Redirection":[null,"Redirection"],"Settings":[null,"Réglages"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Redirections gérées par WordPress. Aucune autre configuration n’est requise, et vous pouvez suivre les vues."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Pour une utilisation sur un serveur Nginx. Nécessite une configuration manuelle. La redirection intervient sans que WordPress ne soit lancé. Aucun suivi des vues. Il s’agit d’un module expérimental."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Utilise le fichier Apache {{code}}.htaccess{{/code}}. Nécessite une configuration ultérieure. La redirection intervient sans que WordPress ne soit lancé. Aucun suivi des vues."],"Automatically remove or add www to your site.":[null,"Ajouter ou retirer automatiquement www à votre site."],"Default server":[null,"Serveur par défaut"],"Canonical URL":[null,"URL canonique"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress est installé dans : {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"Si vous voulez que Redirection mette à jour automatiquement votre fichier {{code}}.htaccess{{/code}}, saisissez le chemin et nom de fichier ici. Vous pouvez également télécharger le fichier et le mettre à jour manuellement."],".htaccess Location":[null,"Emplacement du .htaccess"],"Do nothing":[null,"Ne rien faire"],"Error (404)":[null,"Erreur (404)"],"Pass-through":[null,"Outrepasser"],"Redirect to random post":[null,"Rediriger vers un article aléatoire"],"Redirect to URL":[null,"Redirection vers une URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Impossible d’ajouter une nouvelle redirection. Supprimez Redirection depuis la page d’options puis réinstallez"],"Invalid source URL when creating redirect for given match type":[null,"URL source non valide à la création d’une redirection pour un type de correspondance donné."],"Invalid group when creating redirect":[null,"Groupe non valide à la création d’une redirection"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Vous pouvez uniquement rediriger depuis une URL relative (<code>%s</code>) sur ce domaine (<code>%s</code>)."],"Source and target URL must be different":[null,"Les URL source et cible doivent être différentes"],"Configure":[null,"Configurer"],"Show only this IP":[null,"Afficher uniquement cette IP"],"IP":[null,"IP"],"Source URL":[null,"URL source"],"Date":[null,"Date"],"Add Redirect":[null,"Ajouter une redirection"],"All modules":[null,"Tous les modules"],"View Redirects":[null,"Voir les redirections"],"Module":[null,"Module"],"Redirects":[null,"Redirections"],"Name":[null,"Nom"],"Filter":[null,"Filtre"],"No group filter":[null,"Aucun filtre de groupe"],"Reset Hits":[null,"Réinitialiser les vues"],"Enable":[null,"Activer"],"Disable":[null,"Désactiver"],"Delete":[null,"Supprimer"],"Edit":[null,"Modifier"],"Last Access":[null,"Dernier accès"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Articles modifiés"],"Redirections":[null,"Redirections"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Le visiteur sera redirigé depuis l’URL source si l’agent utilisateur correspond. Vous pouvez spécifier une URL cible <em>correspondante</em> comme adresse où rediriger les visiteurs s’ils correspondent, et <em>non correspondante</em> s’ils ne correspondent pas. Laisser une URL vide signifie que le visiteur ne sera pas redirigé. <strong>Toutes les correspondances sont calculées comme expression rationnelles</strong>.\n"],"User Agent":[null,"Agent utilisateur"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL et agent utilisateur"],"Target URL":[null,"URL cible"],"URL only":[null,"URL uniquement"],"Not matched":[null,"Non correspondant"],"Matched":[null,"Correspondant"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Le visiteur sera redirigé depuis l’URL source si le référent correspond. Vous pouvez spécifier une URL cible <em>correspondante</em> comme adresse où envoyer les visiteurs s’ils correspondent, et <em>non correspondante</em> s’ils ne correspondent pas. Laisser une URL vide signifie que le visiteur ne sera pas redirigé."],"HTTP Code":[null,"Code HTTP"],"Regex":[null,"Regex"],"Referrer":[null,"Référant"],"URL and referrer":[null,"URL et référent"],"Logged Out":[null,"Déconnecté"],"Logged In":[null,"Connecté"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"L’URL cible sera choisie parmi les URL suivantes, selon que l’utilisateur est connecté ou pas. Laisser une URL vide signifie que l’utilisateur ne sera pas redirigé."],"URL and login status":[null,"URL et état de connexion"]}
locale/json/redirection-it_IT.json CHANGED
@@ -1 +1 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2012-05-07 13:59:00+00:00","po-revision-date":"","last-translator":"Raffaello Tesi <info@raffaellotesi.com>","language-team":"Raffaello Tesi <info@raffaellotesi.com>","language":"it_IT","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-keywordslist":"__;_e","x-poedit-basepath":".","x-poedit-sourcecharset":"UTF-8","x-generator":"Poedit 1.6.5","plural-forms":"nplurals=2; plural=(n != 1);","x-poedit-searchpath-0":"C:\\redirection","x-poedit-searchpath-1":"C:\\redirection\\2.3","x-poedit-searchpath-2":"C:\\redirection\\actions","x-poedit-searchpath-3":"C:\\redirection\\fileio","x-poedit-searchpath-4":"C:\\redirection\\images","x-poedit-searchpath-5":"C:\\redirection\\images\\modules","x-poedit-searchpath-6":"C:\\redirection\\js","x-poedit-searchpath-7":"C:\\redirection\\locale","x-poedit-searchpath-8":"C:\\redirection\\models","x-poedit-searchpath-9":"C:\\redirection\\modules","x-poedit-searchpath-10":"C:\\redirection\\matches","x-poedit-searchpath-11":"C:\\redirection\\view","x-poedit-searchpath-12":"C:\\redirection\\view\\admin"},"Sorry, but your redirection was not created":[null,"Mi dispiace, il reindirizzamento non è stato creato"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importato in %s a %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"L'importazione XML è disponibile solo con PHP5 - è stata invece identificata la versione PHP4"],"URL and login status":[null,"status URL e login"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"L'URL di arrivo verrà scelta tra una delle seguenti, a seconda che l'utente abbia effettuato o meno il login. Lasciando l'URL vuota l'utente non verrà reindirizzato."],"Logged In":[null,"Logged in"],"Logged Out":[null,"Logged out"],"URL and referrer":[null,"URL e referrer"],"Referrer":[null,"Referrer"],"Regex":[null,"Regex"],"HTTP Code":[null,"Codice HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Il visitatore sarà reindirizzato dalla URL di partenza se il referrer corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se il referrer corrisponde, e <em>not matched</em> se non corrisponde. Lasciando l'URL vuota l'utente non viene reindirizzato."],"Matched":[null,"Matched"],"Not matched":[null,"Not matched"],"URL only":[null,"solo URL"],"Target URL":[null,"URL di arrivo"],"URL and user agent":[null,"URL e user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"Firefox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"iPad":[null,"iPad"],"Android":[null,"Android"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"User agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Il visitatore sarà reindirizzato dalla URL di partenza se l'user agent corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se l'user agent corrisponde, e <em>not matched</em> se non corrisponde. <strong>Tutte le corrispondenze sono create come espressioni regolari (regex)</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"Reindirizzamenti"],"Modified Posts":[null,"Post modificati"],"Yes":[null,"Sì"],"No":[null,"No"],"404 Errors":[null,"Errori 404"],"Strip WWW":[null,"Rimuovi WWW"],"Force WWW":[null,"Forza WWW"],"Strip index.php":[null,"Rimuovi index.php"],"Previous":[null,"Precedente"],"Next":[null,"Successivo"],"%d per-page":[null,"%d per pagina"],"Displaying %s&#8211;%s of %s":[null,"Mostrati %s&#8211;%s su %s"],"Redirect to URL":[null,"Reindirizza a URL"],"Redirect to random post":[null,"Reindirizza a un post a caso"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Errore (404)"],"Do nothing":[null,"Non fare niente"],"Log 404s":[null,"Crea log per gli errori 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Disattivato: occorre attivare i <a href=\"options-permalink.php\">permalink</a> prima di poterlo usare</strong>"],"<small>No options have been set</small>":[null,"<small>Non è stata selezionata nessuna opzione</small>"],"Location":[null,"Path"],"WordPress is installed in: <code>%s</code>":[null,"WordPress è installato in: <code>%s</code>"],"Canonical":[null,"Canonica"],"Leave as is":[null,"Lascia com'è"],"Strip WWW (%s)":[null,"Rimuovi WWW (%s)"],"Force WWW (www.%s)":[null,"Forza WWW (www.%s)"],"Strip Index":[null,"Rimuovi Index"],"Strip index files (html,php)":[null,"Rimuovi i file index (html, php)"],"Memory Limit":[null,"Limite memoria"],"Server default":[null,"Server default"],"Error Level":[null,"Livello d'errore"],"No errors":[null,"Nessun errore"],"Show errors":[null,"Mostra gli errori"],"Ban IPs":[null,"Blocca IP"],"Allow IPs":[null,"Approva IP"],"Raw .htaccess":[null,"Contenuto .htaccess"],"Site URL":[null,"URL sito"],"Advanced: For management of external sites":[null,"Avanzato: per la gestione di siti esterni"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Path non valido - controllare che il path esista</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Non è possibile modificare il file <code>.htaccess</code> - controllare i permessi del file</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Disattivato: inserire la posizione del file <code>.htaccess</code> per attivarlo</strong>"],"strip WWW":[null,"rimuovi WWW"],"force WWW":[null,"forza WWW"],"strip index":[null,"rimuovi index"],"memory limit at %dMB":[null,"limite memoria a %d MB"],"no errors":[null,"nessun errore"],"show errors":[null,"mostra errori"],"IPs are banned":[null,"Sono bloccati gli IP"],"IPs are allowed":[null,"Sono permessi gli IP"],"Settings":[null,"Impostazioni"],"Please wait...":[null,"Attendere prego..."],"Are you sure?":[null,"Sei sicuro?"],"No items have been selected":[null,"Nessun elemento è stato selezionato"],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Il modulo è stato creato con successo"],"Your module was not created - did you provide a name?":[null,"Il modulo non è stato creato - è stato inserito un nome?"],"Your options were updated":[null,"Le opzioni sono state aggiornate"],"Redirection data has been deleted and the plugin disabled":[null,"I dati di Redirection sono stati rimossi e il plugin è stato disattivato"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d reindirizzamento importato con successo","%d reindirizzamenti importati con successo"],"No items were imported":[null,"Non è stato importato nessun elemento"],"Your logs have been deleted":[null,"I log sono stati cancellati"],"Your group was added successfully":[null,"Il gruppo è stato aggiunto con successo"],"Please specify a group name":[null,"Inserire il nome del gruppo"],"Redirection is available in":[null,"Redirection è disponibile a"],"Add new redirection":[null,"Aggiungi un nuovo reindirizzamento"],"Your redirection has been added.":[null,"Il reindirizzamento è stato creato."],"Source URL":[null,"URL di partenza"],"Match":[null,"Match"],"Action":[null,"Azione"],"Regular expression":[null,"Espressione regolare (regex)"],"Group":[null,"Gruppo"],"Add Redirection":[null,"Crea reindirizzamento"],"Name":[null,"Nome"],"Tracked":[null,"Tracked"],"Whether to track 'hits' to items":[null,"Effettuare il tracking degli accessi a questo elemento"],"Enabled":[null,"Attivato"],"Disabling a group will disable all items contained within it":[null,"Disattivando un gruppo, tutti gli elementi in esso contenuti verranno disattivati"],"Save":[null,"Salva"],"Cancel":[null,"Annulla"],"edit group":[null,"modifica gruppo"],"disabled":[null,"disattivato"],"Groups for module":[null,"Gruppi per il modulo"],"Module":[null,"Modulo"],"Search":[null,"Cerca"],"go":[null,"vai"],"Hits":[null,"Visite"],"Select All":[null,"Seleziona tutto"],"Toggle":[null,"Inverti"],"Reset Hits":[null,"Azzera visite"],"Delete":[null,"Rimuovi"],"Move To":[null,"Sposta in"],"Go":[null,"Vai"],"re-order":[null,"riordina"],"save order":[null,"salva ordine"],"You have no groups in this module.":[null,"Non ci sono gruppi in questo modulo."],"Add Group":[null,"Aggiungi gruppo"],"Add":[null,"Aggiungi"],"%s by matching %s":[null,"%s nel caso di: %s"],"Title":[null,"Titolo"],"optional":[null,"opzionale"],"Redirections for group":[null,"Reindirizzamenti per il gruppo"],"Last Access":[null,"Ultimo accesso"],"Type":[null,"Tipo"],"URL":[null,"URL"],"Position":[null,"Path"],"You have no redirections.":[null,"Non ci sono reindirizzamenti."],"Redirection Log":[null,"Log reindirizzamenti"],"Bulk Actions":[null,"Azioni di massa"],"Apply":[null,"Applica"],"Filter":[null,"Filtro"],"Date":[null,"Data"],"IP":[null,"IP"],"There are no logs to display!":[null,"Non ci sono log da mostrare!"],"Process Current Logs":[null,"Processa il log corrente"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Queste azioni verranno effettuate su tutti i log esistenti (ad esempio la frase di ricerca limiterà gli elementi del log)."],"Delete Logs":[null,"Cancella i log"],"Redirect to":[null,"Reindirizza a"],"Redirected by":[null,"Reindirizzato da"],"for":[null,"per"],"View as":[null,"Mostra come"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"modifica"],"delete":[null,"rimuovi"],"reset":[null,"azzera"],"Modules":[null,"Moduli"],"Details":[null,"Dettagli"],"Groups":[null,"Gruppi"],"Items":[null,"Elementi"],"Operations":[null,"Operazioni"],"Note: Hits are dependant on log entries":[null,"Nota: le visite dipendono dalle informazioni del log"],"You have no modules defined yet":[null,"Non ci sono moduli definiti"],"Add Module":[null,"Aggiungi modulo"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Il modulo è un elemento di controllo che determina la gestione dei reindirizzamenti. Gli elementi di un modulo di WordPress sono gestiti da WordPress, gli elementi in un modulo di Apache sono gestiti dal file <code>.htaccess</code> e gli elementi di un modulo 404 influenzeranno la gestione del log per gli errori 404."],"Create":[null,"Crea"],"Options":[null,"Opzioni"],"Auto-generate URL":[null,"Genera URL automaticamente"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Se non viene inserita nessuna URL, questa stringa verrà usata per generarne automaticamente una. È possibile usare i tag speciali $dec$ o $hex$ per inserire un ID unico (decimale o esadecimale)"],"IP Lookup Service":[null,"Servizio di ricerca IP"],"Plugin Support":[null,"Supporto plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Logging":[null,"Login in corso"],"log redirected requests":[null,"crea log delle richieste di reindirizzamento"],"log 404 Not Found requests":[null,"crea log delle richieste 404 Not Found"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Deselezionare una o entrambe le opzioni per non creare log delle richieste e ridurre il carico del database. Consigliabile nel caso in cui il carico di reindirizzamenti sia alto, e/o nel caso in cui il sito abbia un alto numero di visitatori e vi siano molte pagine rimosse."],"Expire Logs":[null,"I log scadono dopo"],"days (enter 0 for no expiry)":[null,"giorni (inserire 0 per nessuna scadenza)"],"RSS Token":[null,"Token RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Un token unico permette ai feed reader di accedere ai feed RSS di Redirection (lasciare vuoto per generarlo automaticamente)"],"URL Monitoring":[null,"Controllo URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"È possibile impostare Redirection per identificare i cambiamenti nelle URL e creare automaticamente un reindirizzamento in un gruppo specifico."],"Post &amp; Page URLs":[null,"URL dei post e delle pagine"],"Don't monitor":[null,"Non controllare"],"Monitor new posts":[null,"Controlla i nuovi post"],"Category URLs":[null,"URL della categoria"],"Update":[null,"Aggiorna"],"Import":[null,"Importa"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"È possibile importare reindirizzamenti direttamente da un file .htacess, CSV o XML già esistente."],"Import into":[null,"Importa in"],"Upload":[null,"Carica"],"Note that the group is ignored when uploading an XML file.":[null,"Nota: il gruppo viene ignorato quando si effettua l'upload di un file XML."],"Delete Redirection":[null,"Rimuovi Redirection"],"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.":[null,"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."],"Redirects":[null,"Reindirizzamenti"],"Log":[null,"Log"],"Support":[null,"Supporto"],"Redirection Support":[null,"Forum di supporto Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"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>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Questo mi spronerebbe a proseguirne lo sviluppo, incluse le numerose ore dedicate al supporto, l'inserimento di nuove caratteristiche e suggerimenti. Tu riceverai un software utile e io continuerò a fornirtelo. Insomma, ci guadagnamo tutti."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Se hai intenzione di utilizzare questo plugin su un sito commerciale, o ritieni che sia particolarmente utile, puoi magari pensare di effettuare una <strong>donazione commerciale</strong>."],"Individual<br/>Donation":[null,"Donazione<br/>individuale"],"Commercial<br/>Donation":[null,"Donazione<br/>commerciale"],"Translations":[null,"Traduzioni"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Se parli più lingue potresti essere interessato a donare una traduzione."],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Tutti i traduttori verranno citati inserendo un link al loro sito internet su <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, oltre a diventare sostenitori individuali."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"I dettagli completi su come creare una traduzione sono presenti nella <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guida per tradurre i plugin di WordPress</a>."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"John Godley":[null,"John Godley"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
1
+ {"":{"po-revision-date":"2017-01-29 15:55:57+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"it","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Impostazioni avanzate"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Forum di supporto Redirection"],"Support":[null,"Supporto"],"404s":[null,"404"],"404s from %s":[null,"404 da %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Rimuovi Redirection"],"Upload":[null,"Carica"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importa"],"Update":[null,"Aggiorna"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Genera URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"Non controllare"],"Monitor changes to posts":[null,"Controlla cambiamenti ai post"],"404 Logs":[null,"Registro 404"],"(time to keep logs for)":[null,"(per quanto tempo conservare i log)"],"Redirect Logs":[null,"Registro redirezioni"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Plugin support":[null,""],"Options":[null,"Opzioni"],"Two months":[null,"Due mesi"],"A month":[null,"Un mese"],"A week":[null,"Una settimana"],"A day":[null,"Un giorno"],"No logs":[null,"Nessun log"],"Modules":[null,"Moduli"],"Export to CSV":[null,""],"Delete All":[null,"Elimina tutto"],"Redirection Log":[null,"Log reindirizzamenti"],"optional":[null,"opzionale"],"Description":[null,"Descrizione"],"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.":[null,"Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."],"Add Group":[null,"Aggiungi gruppo"],"Search":[null,"Cerca"],"Groups":[null,"Gruppi"],"Save":[null,"Salva"],"Add Redirection":[null,"Crea reindirizzamento"],"Group":[null,"Gruppo"],"Regular expression":[null,"Espressione regolare (regex)"],"Action":[null,"Azione"],"Match":[null,"Match"],"Your redirection has been added.":[null,"Il reindirizzamento è stato creato."],"Add new redirection":[null,"Aggiungi un nuovo reindirizzamento"],"Cancel":[null,"Annulla"],"Download":[null,"Scaricare"],"Sorry, but your redirection was not created":[null,"Mi dispiace, il reindirizzamento non è stato creato"],"Unable to perform action":[null,"Impossibile eseguire questa azione"],"No items were imported":[null,"Non è stato importato nessun elemento"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d reindirizzamento importato con successo","%d reindirizzamenti importati con successo"],"Your options were updated":[null,"Le opzioni sono state aggiornate"],"Redirection":[null,"Redirection"],"Settings":[null,"Impostazioni"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Redirect gestiti da WordPress. Questo non richiede ulteriori configurazioni e potrai tracciare i redirect effettuati."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Da usare con i server Nginx. Richiede una configurazione manuale. I redirect avvengono senza caricare WordPress. Non verranno tracciati questi redirect. Questo modulo è sperimentale."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Rimuove o aggiunge automaticamente www al tuo sito."],"Default server":[null,"Server predefinito"],"Canonical URL":[null,"URL canonico"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,"Posizione del file .htaccess"],"Do nothing":[null,"Non fare niente"],"Error (404)":[null,"Errore (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Reindirizza a un post a caso"],"Redirect to URL":[null,"Reindirizza a URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Impossibile aggiungere nuovi redirect - elimina Redirection dalla pagina delle opzioni e reinstallalo"],"Invalid source URL when creating redirect for given match type":[null,"URL di partenza non valido nella creazione del redirect per il tipo di corrispondenza inserito"],"Invalid group when creating redirect":[null,"Gruppo non valido nella creazione del redirect"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Puoi eseguire un redirect solo da un URL relativo (<code>%s</code>) in questo dominio (<code>%s</code>). "],"Source and target URL must be different":[null,"L'URL di partenza e di destinazione devono essere differenti"],"Configure":[null,"Configura"],"Show only this IP":[null,"Mostra solo questo IP"],"IP":[null,"IP"],"Source URL":[null,"URL di partenza"],"Date":[null,"Data"],"Add Redirect":[null,""],"All modules":[null,"Tutti i moduli"],"View Redirects":[null,"Mostra i redirect"],"Module":[null,"Modulo"],"Redirects":[null,"Reindirizzamenti"],"Name":[null,"Nome"],"Filter":[null,"Filtro"],"No group filter":[null,"Nessun filtro di gruppo"],"Reset Hits":[null,"Azzera visite"],"Enable":[null,"Attiva"],"Disable":[null,"Disattiva"],"Delete":[null,"Rimuovi"],"Edit":[null,"Modifica"],"Last Access":[null,"Ultimo accesso"],"Hits":[null,"Visite"],"URL":[null,"URL"],"Type":[null,"Tipo"],"Modified Posts":[null,"Post modificati"],"Redirections":[null,"Reindirizzamenti"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Il visitatore sarà reindirizzato dalla URL di partenza se l'user agent corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se l'user agent corrisponde, e <em>not matched</em> se non corrisponde. <strong>Tutte le corrispondenze sono create come espressioni regolari (regex)</strong>.\n"],"User Agent":[null,"User agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"Firefox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL e user agent"],"Target URL":[null,"URL di arrivo"],"URL only":[null,"solo URL"],"Not matched":[null,"Not matched"],"Matched":[null,"Matched"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Il visitatore sarà reindirizzato dalla URL di partenza se il referrer corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se il referrer corrisponde, e <em>not matched</em> se non corrisponde. Lasciando l'URL vuota l'utente non viene reindirizzato."],"HTTP Code":[null,"Codice HTTP"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL e referrer"],"Logged Out":[null,"Logged out"],"Logged In":[null,"Logged in"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"L'URL di arrivo verrà scelta tra una delle seguenti, a seconda che l'utente abbia effettuato o meno il login. Lasciando l'URL vuota l'utente non verrà reindirizzato."],"URL and login status":[null,"status URL e login"]}
locale/json/redirection-ja.json CHANGED
@@ -1 +1 @@
1
- {"":{"project-id-version":"Redirection 2.1.14","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2015-02-25 16:15+0900","po-revision-date":"2015-02-25 16:39+0900","last-translator":"Naoko Takano <info@nao-net.com>","language-team":"","language":"ja","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-sourcecharset":"UTF-8","x-poedit-basepath":"../","x-poedit-keywordslist":"__;_e","x-generator":"Poedit 1.7.1","plural-forms":"nplurals=1; plural=0;","x-poedit-searchpath-0":"."},"Referred by %s":[null,"リファラー: %s"],"URL and login status":[null,"URL およびログイン状態"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"ユーザーがログインしているかどうかにより、ターゲット URL は以下のうちいずれかになります。URL を空白にした場合、そのユーザーは転送されません。"],"Logged In":[null,"ログイン中"],"Logged Out":[null,"ログアウト中"],"URL and referrer":[null,"URL およびリファラー"],"Referrer":[null,"リファラー"],"Regex":[null,"正規表現"],"HTTP Code":[null,"HTTP コード"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"もしリファラーが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。"],"Matched":[null,"一致の場合"],"Not matched":[null,"不一致の場合"],"URL only":[null,"URL のみ"],"Target URL":[null,"ターゲット URL"],"URL and user agent":[null,"URL およびユーザーエージェント"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"iPad":[null,"iPad"],"Android":[null,"Android"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"ユーザーエージェント"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"もしユーザーエージェントが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。<strong>一致条件の判定はすべて正規表現で行われます</strong>。\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"転送ルール"],"Modified Posts":[null,"編集済みの投稿"],"Yes":[null,"はい"],"No":[null,"いいえ"],"Strip WWW":[null,"WWW を除く"],"Force WWW":[null,"WWW を強制追加"],"Strip index.php":[null,"index.php を除く"],"Type":[null,"タイプ"],"URL":[null,"URL"],"Hits":[null,"ヒット数"],"Last Access":[null,"前回のアクセス"],"Edit":[null,"編集"],"Delete":[null,"削除"],"Disable":[null,"無効化"],"Enable":[null,"有効化"],"Reset Hits":[null,"訪問数をリセット"],"Filter":[null,"フィルター"],"Name":[null,"名称"],"Redirects":[null,"転送ルール"],"View Redirects":[null,"転送ルールを表示"],"Add redirect":[null,"転送ルールを追加"],"Date":[null,"日付"],"Source URL":[null,"ソース URL"],"IP":[null,"IP"],"Show only this IP":[null,"この IP のみ表示"],"Groups":[null,"グループ"],"Source and target URL must be different":[null,"ソースとターゲット URL は異なるものを指定してください"],"Invalid group when creating redirect":[null,"転送ルールを作成する際に無効なグループが指定されました"],"Invalid source URL when creating redirect for given match type":[null,"指定された一致タイプの転送ルールを作成する際に無効なソース URL が入力されました"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"新規転送ルールを追加できません。設定ページから転送ルールを削除し、再インストールしてください。"],"Redirect to URL":[null,"URL へ転送"],"Redirect to random post":[null,"ランダムな記事へ転送"],"Pass-through":[null,"通過"],"Error (404)":[null,"エラー (404)"],"Do nothing":[null,"何もしない"],"Location":[null,"位置"],"WordPress is installed in: <code>%s</code>":[null,"WordPress のインストール位置: <code>%s</code>"],"Canonical":[null,"カノニカル"],"Leave as is":[null,"そのままにする"],"Strip WWW (%s)":[null,"WWW を除く (%s)"],"Force WWW (www.%s)":[null,"WWW を強制追加 (www.%s)"],"Strip Index":[null,"Index を除く"],"Strip index files (html,php)":[null,"index ファイルを除く (html,php)"],"Memory Limit":[null,"メモリー上限"],"Server default":[null,"サーバーの初期設定"],"Error Level":[null,"エラーレベル"],"No errors":[null,"エラーなし"],"Show errors":[null,"エラーを表示"],"Ban IPs":[null,"禁止 IP"],"Allow IPs":[null,"許可 IP"],"Raw .htaccess":[null,"生の .htaccess"],"Site URL":[null,"サイト URL "],"Advanced: For management of external sites":[null,"高度な設定: 外部サイト管理用"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>ファイルの位置が正しくありません。パスが存在するか確認してください。</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>設定済みの <code>.htaccess</code> に書き込みできませんでした。パーミッションを確認してください。</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>無効: 有効にするには<code>.htaccess</code> ファイルの位置を入力してください。</strong>"],"strip WWW":[null,"WWW を除く"],"force WWW":[null,"WWW を追加"],"strip index":[null,"index を除く"],"memory limit at %dMB":[null,"メモリー上限%dMB"],"no errors":[null,"エラーなし"],"show errors":[null,"エラーを表示"],"IPs are banned":[null,"禁止 IP"],"IPs are allowed":[null,"許可 IP"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>無効: これを使用する前に<a href=\"options-permalink.php\">パーマリンク</a>を有効にする必要があります。</strong>"],"Settings":[null,"設定"],"Log entries":[null,"エントリーのログを保存"],"Sorry, unable to do that. Please try refreshing the page.":[null,"ご指定の操作は実行できません。ページを再読み込みしてみてください。"],"Redirection":[null,"リディレクション"],"Your options were updated":[null,"設定を更新しました。"],"Redirection data has been deleted and the plugin disabled":[null,"リディレクションデータを削除し、プラグインを無効化しました。"],"%d redirection was successfully imported":["%d redirections were successfully imported",["%d件の転送をインポートしました。"]],"No items were imported":[null,"項目をインポートできませんでした。"],"Your logs have been deleted":[null,"ログを削除しました。"],"Your group was added successfully":[null,"グループの追加に成功しました。"],"Please specify a group name":[null,"グループ名を指定してください。"],"Unknown module":[null,"不明なモジュール"],"Unable to perform action":[null,"操作を実行できません"],"Sorry, but your redirection was not created":[null,"転送ルールを作成できませんでした。"],"Add new redirection":[null,"新しい転送ルールを追加"],"Your redirection has been added.":[null,"新しい転送ルールを追加しました。"],"Match":[null,"一致条件"],"Action":[null,"操作"],"Regular expression":[null,"正規表現"],"Group":[null,"グループ"],"Add Redirection":[null,"新しい転送ルールを追加"],"Tracked":[null,"追跡"],"Whether to track 'hits' to items":[null,"項目のヒット数を追跡"],"Enabled":[null,"有効"],"Disabling a group will disable all items contained within it":[null,"グループを無効化すると、含まれた項目すべてが無効になります"],"Save":[null,"保存"],"Cancel":[null,"キャンセル"],"Search":[null,"検索"],"Add Group":[null,"グループを追加"],"Add":[null,"追加"],"Description":[null,"説明"],"optional":[null,"オプション"],"Redirection Log":[null,"転送ログ"],"Log Management":[null,"ログ管理"],"These apply to the current search term, if any, otherwise all logs.":[null,"これらは現在の検索キーワードに適用されます。もしキーワードがない場合はすべてのログに適用されます。"],"Delete All":[null,"すべてを削除"],"Export To CSV":[null,"CSV としてエクスポート"],"Modules":[null,"モジュール"],"No logs":[null,"ログなし"],"A day":[null,"1日"],"A week":[null,"1週間"],"A month":[null,"1ヶ月"],"Two months":[null,"2ヶ月"],"Keep forever":[null,"無期限に保存"],"Options":[null,"設定"],"Plugin Support":[null,"プラグインサポート"],"I'm a nice person and I have helped support the author of this plugin":[null,"このプラグインの作者に対する援助を行いました"],"Redirect Logs":[null,"転送ログ"],"(time to keep logs for)":[null,"(ログの保存期間)"],"404 Logs":[null,"404 ログ"],"Monitor changes to posts":[null,"投稿の変更をモニター"],"Don't monitor":[null,"モニターしない"],"RSS Token":[null,"RSS トークン"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"Auto-generate URL":[null,"URL を自動生成 "],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"もし URL が指定されていない場合自動生成されます。特別なタグ $dec$ または $hex$ を使い、10進法または16進法の固有 ID を挿入できます。"],"Update":[null,"更新"],"Import":[null,"インポート"],"Here you can import redirections from an existing .htaccess file, or a CSV file.":[null,"ここで既存の .htaccess ファイルまたは CSV ファイルから転送ルールをインポートできます。"],"Import into":[null,"インポート先"],"Upload":[null,"アップロード"],"Delete Redirection":[null,"転送ルールを削除"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"個のオプションを選択すると、リディレクションプラグインに関するすべての転送ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してください。"],"Log":[null,"ログ"],"404s from %s":[null,"%s からの 404"],"404s":[null,"404 エラー"],"Support":[null,"作者を応援 "],"Redirection Support":[null,"Redirection を応援する"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、<strong>少額の寄付</strong>で開発を助けていただけるようでしたら嬉しく思います。"],"This will act as an incentive for me to carry on developing. You get some useful software and I get to carry on making it. Everybody wins.":[null,"これは私が開発を継続するための動機付けになります。皆さんは役に立つソフトウェアを手に入れることができ、私はそれを作り続けられるので、誰もが得をするといえます。"],"Please note that a donation is just a donation - it is not a payment for support. I am not a business, this is not a product, and I'm afraid I cannot provide paid support":[null,"寄付はサポートに対する支払いではないことにご注意ください。このプラグインを提供しているのは法人ではなく、これは商品ではないため、恐れ入りますが有料サポートを提供することはできません。"],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"このプラグインを商用サイトにお使いの場合、または非常に役に立つプラグインだと思っていただける場合は、<strong>商用寄付</strong>をご検討ください。"],"Individual<br/>Donation":[null,"個人の<br/>寄付"],"Commercial<br/>Donation":[null,"商用<br/>寄付"],"Translations":[null,"翻訳"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"多言語をご存知の場合、翻訳という形で寄付をしていただくこともできます。"],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"翻訳作成に関する詳細は<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">翻訳プロセスのガイドライン</a>をご覧ください。"]}
1
+ {"":{"po-revision-date":"2017-07-02 05:10:08+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=1; plural=0;","x-generator":"GlotPress/2.4.0-alpha","language":"ja_JP","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,"問題が発生しました"],"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!":[null,"何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"It didn't work when I tried again":[null,"もう一度試しましたが動きませんでした"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,"もしその問題が未知であれば、他のすべてのプラグインの無効化 (簡単に無効化出来、すぐに再度有効化することが可能です) を試してください。稀に他のプラグインはこのプラグインと衝突を起こします。これを知っておくと今後役に立つでしょう。"],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,"もしその問題が未知の問題の場合、Issue を作成するか、john@urbangiraffe.com へ情報を、何を実行したかの説明と下に表示されている詳細情報と共に送信してください。もしスクリーンショットの方が良ければそちらも送信してください。"],"Important details for the thing you just did":[null,"実行したことの詳細情報"],"Please include these details in your report":[null,"詳細情報をレポートに記入してください。"],"Log entries (100 max)":[null,"ログ (最大100)"],"Failed to load":[null,"読み込みに失敗しました"],"Remove WWW":[null,"WWW を削除"],"Add WWW":[null,"WWW を追加"],"Search by IP":[null,"IP による検索"],"Select bulk action":[null,"一括操作を選択"],"Bulk Actions":[null,"一括操作"],"Apply":[null,"適応"],"First page":[null,"最初のページ"],"Prev page":[null,"前のページ"],"Current Page":[null,"現在のページ"],"of %(page)s":[null,"%(page)s"],"Next page":[null,"次のページ"],"Last page":[null,"最後のページ"],"%s item":["%s items",["%s 個のアイテム"]],"Select All":[null,"すべて選択"],"Sorry but something went wrong loading the data - please try again":[null,"データのロード中にエラーが発生しました - もう一度お試しください"],"No results":[null,"結果なし"],"Delete the logs - are you sure?":[null,"本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,"ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":[null,"ログを消去する"],"No! Don't delete the logs":[null,"ログを消去しない"],"Redirection 404":[null,"404リダイレクト"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":[null,"ニュースレター"],"Want to keep up to date with changes to Redirection?":[null,"リダイレクトの変更を最新の状態に保ちたいですか ?"],"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.":[null,"Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"],"Your email address:":[null,"メールアドレス: "],"I deleted a redirection, why is it still redirecting?":[null,"なぜリダイレクト設定を削除したのにまだリダイレクトが機能しているのですか ?"],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,"ブラウザーはリダイレクト設定をキャッシュします。もしリダイレクト設定を削除後にもまだ機能しているのであれば、{{a}}ブラウザーのキャッシュをクリア{{/a}} してください。"],"Can I open a redirect in a new tab?":[null,"リダイレクトを新しいタブで開くことが出来ますか ?"],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,"このサーバーではこれを実行することが出来ません。代わりに {{code}} target = \"_ blank\" {{/ code}} をリンクに追加する必要があります。"],"Something isn't working!":[null,"何かが動いていないようです"],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,"他のすべてのプラグインを無効化して、問題が継続して発生するか確認してください。問題がある場合、{{a}}こちら{{/a}} で問題の詳細とその再現方法を報告してください。"],"Frequently Asked Questions":[null,"よくある質問"],"Need some help? Maybe one of these questions will provide an answer":[null,"ヘルプが必要ですか ? これらの質問が答えを提供するかもしれません"],"You've already supported this plugin - thank you!":[null,"あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"I'd like to donate some more":[null,"さらに寄付をしたいです"],"You get some useful software and I get to carry on making it better.":[null,"あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Please note I do not provide support and this is just a donation.":[null,"これはただの寄付であり、開発者がサポートを提供することはありません。"],"Yes I'd like to donate":[null,"寄付をしたいです"],"Thank you for making a donation!":[null,"寄付をありがとうございます !"],"Forever":[null,"永久に"],"Failed to save data":[null,"データのセーブに失敗"],"Failed to load data":[null,"データのロードに失敗"],"CSV Format":[null,"CSV フォーマット"],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,"ソース URL、ターゲット URL、 [正規表現 0 = いいえ、1 = はい]、[HTTP コード]"],"Delete the plugin - are you sure?":[null,"本当にプラグインを削除しますか ?"],"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.":[null,"プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":[null,"プラグインを消去する"],"No! Don't delete the plugin":[null,"プラグインを消去しない"],"Advanced Settings":[null,"高度な設定(通常は必要ありません)"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"すべての 301 リダイレクトを管理し、404 エラーをモニター"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"],"Redirection Support":[null,"Redirection を応援する"],"Support":[null,"作者を応援 "],"404s":[null,"404 エラー"],"404s from %s":[null,"%s からの 404"],"Log":[null,"ログ"],"Delete Redirection":[null,"転送ルールを削除"],"Upload":[null,"アップロード"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"ここで既存の {{code}}htaccess{{/code}} または CSV ファイルから転送ルールをインポートできます。"],"Import":[null,"インポート"],"Update":[null,"更新"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"URL が指定されていない場合、自動生成 URL として使われます。特別なタグ {{code}}$dec${{/code}} または {{code}}$hex${{/code}} を使って、独自 ID (10進法または16進法) を挿入させられます。"],"Auto-generate URL":[null,"URL を自動生成 "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"RSS Token":[null,"RSS トークン"],"Don't monitor":[null,"モニターしない"],"Monitor changes to posts":[null,"投稿の変更をモニター"],"404 Logs":[null,"404 ログ"],"(time to keep logs for)":[null,"(ログの保存期間)"],"Redirect Logs":[null,"転送ログ"],"I'm a nice person and I have helped support the author of this plugin":[null,"このプラグインの作者に対する援助を行いました"],"Plugin support":[null,"プラグインサポート"],"Options":[null,"設定"],"Two months":[null,"2ヶ月"],"A month":[null,"1ヶ月"],"A week":[null,"1週間"],"A day":[null,"1日"],"No logs":[null,"ログなし"],"Modules":[null,"モジュール"],"Export to CSV":[null,"CSV としてエクスポート"],"Delete All":[null,"すべてを削除"],"Redirection Log":[null,"転送ログ"],"optional":[null,"オプション"],"Description":[null,"説明"],"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.":[null,"グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"],"Add Group":[null,"グループを追加"],"Search":[null,"検索"],"Groups":[null,"グループ"],"Save":[null,"保存"],"Add Redirection":[null,"新しい転送ルールを追加"],"Group":[null,"グループ"],"Regular expression":[null,"正規表現"],"Action":[null,"操作"],"Match":[null,"一致条件"],"Your redirection has been added.":[null,"新しい転送ルールを追加しました。"],"Add new redirection":[null,"新しい転送ルールを追加"],"Cancel":[null,"キャンセル"],"Download":[null,"ダウンロード"],"Sorry, but your redirection was not created":[null,"転送ルールを作成できませんでした。"],"Unable to perform action":[null,"操作を実行できません"],"No items were imported":[null,"項目をインポートできませんでした。"],"%d redirection was successfully imported":["%d redirections were successfully imported",["%d件の転送をインポートしました。"]],"Your options were updated":[null,"設定を更新しました。"],"Redirection":[null,"Redirection"],"Settings":[null,"設定"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"WordPress による転送。追加設定は必要ありません。また、リンクのクリックをトラックできます。"],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Nginx サーバー用。WordPress が読み込まれず転送が行われます。リンクのクリックはトラックできません。これは試験的なモジュールです。"],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Apache の {{code}}.htaccess{{/code}} ファイルを使用。追加設定が必要になります。WordPress が読み込まれず転送が行われます。リンクのクリックはトラックできません。"],"Automatically remove or add www to your site.":[null,"自動的にサイト URL の www を除去または追加。"],"Default server":[null,"デフォルトサーバー"],"Canonical URL":[null,"カノニカル URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress のインストール位置: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"Redirection プラグインに自動的に {{code}.htaccess{{/code}} ファイルを更新させたい場合は、ファイル名とそのパスをここに入力してください。もしくはファイルをダウンロードして手動で更新することもできます。"],".htaccess Location":[null,".htaccess ファイルの場所"],"Do nothing":[null,"何もしない"],"Error (404)":[null,"エラー (404)"],"Pass-through":[null,"通過"],"Redirect to random post":[null,"ランダムな記事へ転送"],"Redirect to URL":[null,"URL へ転送"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"新規転送ルールを追加できません。設定ページから転送ルールを削除し、再インストールしてください。"],"Invalid source URL when creating redirect for given match type":[null,"指定された一致タイプの転送ルールを作成する際に無効なソース URL が入力されました"],"Invalid group when creating redirect":[null,"転送ルールを作成する際に無効なグループが指定されました"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"相対 URL (<code>%s</code>) で、このドメイン (<code>%s</code>) 上にある URL のみからの転送が可能です。"],"Source and target URL must be different":[null,"ソースとターゲット URL は異なるものを指定してください"],"Configure":[null,"設定"],"Show only this IP":[null,"この IP のみ表示"],"IP":[null,"IP"],"Source URL":[null,"ソース URL"],"Date":[null,"日付"],"Add Redirect":[null,"転送ルールを追加"],"All modules":[null,"すべてのモジュール"],"View Redirects":[null,"転送ルールを表示"],"Module":[null,"モジュール"],"Redirects":[null,"転送ルール"],"Name":[null,"名称"],"Filter":[null,"フィルター"],"No group filter":[null,"グループフィルターなし"],"Reset Hits":[null,"訪問数をリセット"],"Enable":[null,"有効化"],"Disable":[null,"無効化"],"Delete":[null,"削除"],"Edit":[null,"編集"],"Last Access":[null,"前回のアクセス"],"Hits":[null,"ヒット数"],"URL":[null,"URL"],"Type":[null,"タイプ"],"Modified Posts":[null,"編集済みの投稿"],"Redirections":[null,"転送ルール"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"もしユーザーエージェントが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。<strong>一致条件の判定はすべて正規表現で行われます</strong>。\n"],"User Agent":[null,"ユーザーエージェント"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL およびユーザーエージェント"],"Target URL":[null,"ターゲット URL"],"URL only":[null,"URL のみ"],"Not matched":[null,"不一致の場合"],"Matched":[null,"一致の場合"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"もしリファラーが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。"],"HTTP Code":[null,"HTTP コード"],"Regex":[null,"正規表現"],"Referrer":[null,"リファラー"],"URL and referrer":[null,"URL およびリファラー"],"Logged Out":[null,"ログアウト中"],"Logged In":[null,"ログイン中"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"ユーザーがログインしているかどうかにより、ターゲット URL は以下のうちいずれかになります。URL を空白にした場合、そのユーザーは転送されません。"],"URL and login status":[null,"URL およびログイン状態"]}
locale/json/redirection-nl_NL.json CHANGED
@@ -1 +1 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.2.5","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","po-revision-date":"2012-01-11 14:48+0100","last-translator":"Bart Kummel <bart@kummelweb.nl>","language-team":"Bart Kummel <bart@kummelweb.nl>","plural-forms":"nplurals=2; plural=n != 1;","x-poedit-language":"Dutch","x-poedit-country":"NETHERLANDS","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ngettext:1,2","x-poedit-basepath":"~/Downloads/redirection"},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s geïmporteerd op %s naar %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML-import is alleen beschikbaar in PHP5, maar jij hebt PHP4."],"Groups for module":[null,"Groepen voor module"],"Module":[null,"Module"],"Search":[null,"Zoeken"],"go":[null,"ga"],"Hits":[null,"Hits"],"Name":[null,"Naam"],"Select All":[null,"Alles selecteren"],"Toggle":[null,"Schakelen"],"Reset Hits":[null,"Reset hits"],"Delete":[null,"Verwijderen"],"Move To":[null,"Verplaatsen naar"],"Go":[null,"Ga"],"re-order":[null,"Volgorde aanpassen"],"save order":[null,"volgorde opslaan"],"You have no groups in this module.":[null,"Je hebt geen groepen in deze module."],"Add Group":[null,"Groep toevoegen"],"Add":[null,"Toevoegen"],"No items have been selected":[null,"Er zijn geen items geselecteerd."],"Are you sure?":[null,"Weet je het zeker?"],"Redirects":[null,"Redirects"],"Groups":[null,"Groepen"],"Modules":[null,"Modules"],"Log":[null,"Log"],"Options":[null,"Instellingen"],"Support":[null,"Ondersteuning"],"View as":[null,"Bekijk als"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"bewerk"],"delete":[null,"verwijder"],"reset":[null,"reset"],"Redirection Log":[null,"Redirection-log"],"Bulk Actions":[null,"Bulkacties"],"Apply":[null,"Toepassen"],"Group":[null,"Groep"],"Filter":[null,"Filter"],"Date":[null,"Datum"],"Source URL":[null,"Bron-URL"],"Referrer":[null,"Referrer"],"IP":[null,"IP-adres"],"There are no logs to display!":[null,"Er zijn geen logs om weer te geven!"],"Process Current Logs":[null,"Huidige logs verwerken"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Deze acties zijn op alle momenteel beschikbare logs van toepassing. (Dus je zoektermen beperken de log-items.)"],"Delete Logs":[null,"Verwijder logs"],"Redirections for group":[null,"Redirects voor groep"],"Last Access":[null,"Laatste hit"],"Type":[null,"Type"],"URL":[null,"URL"],"Position":[null,"Positie"],"You have no redirections.":[null,"Je hebt geen redirects."],"Redirect to":[null,"Redirect naar"],"Redirected by":[null,"Ge-redirect door"],"for":[null,"voor"],"User Agent":[null,"User agent"],"disabled":[null,"uitgeschakeld"],"%s by matching %s":[null,"%s door te vergelijken met %s"],"Title":[null,"Titel"],"optional":[null,"optioneel"],"Regex":[null,"Regex"],"Save":[null,"Opslaan"],"Cancel":[null,"Annuleren"],"Add new redirection":[null,"Nieuwe redirect toevoegen"],"Your redirection has been added.":[null,"Je redirect is toegevoegd."],"Match":[null,"Vergelijk met"],"Action":[null,"Actie"],"Regular expression":[null,"Reguliere expressie"],"Target URL":[null,"Doel-URL"],"Add Redirection":[null,"Voeg redirect toe"],"edit group":[null,"bewerk groep"],"Details":[null,"Details"],"Items":[null,"Items"],"Operations":[null,"Acties"],"Note: Hits are dependant on log entries":[null,"NB: hits zijn afhankelijk van log-regels."],"You have no modules defined yet":[null,"Je hebt nog geen modules gedefinieerd."],"Add Module":[null,"Voeg module toe"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Een module bepaalt hoe redirects worden afgehandeld. Elementen in een WordPress-module worden afgehandeld door WordPress, elementen in een Apache-module worden afgehandeld door een <code>.htaccess</code>-bestand en elementen in een 404-module bepalen hoe 404-errors worden gelogd."],"Create":[null,"Maak aan"],"Redirection Support":[null,"Ondersteun Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Je mag Redirection gratis gebruiken - het leven is vurrukuluk! Desalniettemin heeft het veel tijd en moeite gekost om Redirection te ontwikkelen. Als je Redirection handig vind, kan je de ontwikkeling ondersteunen door een <strong>kleine donatie</strong> te doen."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Dit zal me stimuleren om verder te gaan met de ontwikkeling, ontelbare uren ondersteuning te verlenen en nieuwe functies en ideeën te maken. Jij krijgt handige software en ik kan doorgaan die te maken. Een win-win-situatie!"],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Als je de Redirection-plugin gebruikt in een commerciële omgeving, of als je gewoon supertevreden bent, kan je overwegen een <strong>commerciële donatie</strong> te doen."],"Individual<br/>Donation":[null,"Individuele<br/>donatie"],"Commercial<br/>Donation":[null,"Commerciële<br/>donatie"],"Translations":[null,"Vertalingen"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Als je meertalig bent, kan je overwegen een vertaling te doneren:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Alle vertalers krijgen een link naar hun website op de plugin-homepage: <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>. Daarnaast krijgen ze de status van individuele supporter."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Uitgebreide uitleg over het maken van een vertaling kan je vinden in de Engelstalige <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."],"Auto-generate URL":[null,"URL automatisch genereren"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Dit wordt gebruikt om automatisch een URL te genereren als er geen is opgegeven. Je kan de speciale tags $dec$ en $hex$ gebruiken om een unieke ID te laten invoegen, respectievelijk in decimale of hexadecimale notatie."],"IP Lookup Service":[null,"IP-zoek-service"],"Plugin Support":[null,"Ondersteuning van de plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ik ben een aardig persoon en ik heb de auteur van deze plugin geholpen met ondersteuning."],"Logging":[null,"Logging"],"log redirected requests":[null,"Houd ge-redirecte requests bij in een log."],"log 404 Not Found requests":[null,"Houd 404-fouten bij in een log."],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Zet een of beide vinkjes uit om logging uit te schakelen. Daardoor kan je de belasting van de database verminderen, wat handig kan zijn als je veel redirects hebt of als je site heel drukbezocht is."],"Expire Logs":[null,"Verwijder logs na"],"days (enter 0 for no expiry)":[null,"dagen (vul 0 in als je wil dat de logs nooit verwijderd worden)"],"RSS Token":[null,"RSS-token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Een unieke token dat feed-readers toegang geeft tot Redirection RSS. (Wordt automatisch gegenereerd als je het veld leeglaat.)"],"URL Monitoring":[null,"URL-controle"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Je kan de Redirection-plugin URL-wijzigingen laten detecteren en automatisch redirects laten aanmaken in een specifieke groep."],"Post &amp; Page URLs":[null,"Berichten- &amp; pagina-URL's"],"Don't monitor":[null,"Niet controleren"],"Monitor new posts":[null,"Controleer op nieuwe berichten"],"Category URLs":[null,"Categorie-URL's"],"Update":[null,"Bijwerken"],"Import":[null,"Importeren"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Hier kan je redirects importeren uit een bestaand .htaccess-bestand, een CSV-bestand of een Redirection XML-bestand."],"Import into":[null,"Importeer naar"],"Upload":[null,"Uploaden"],"Note that the group is ignored when uploading an XML file.":[null,"Merk op dat de groep wordt genegeerd als je een XML-bestand upload."],"Delete Redirection":[null,"Verwijder Redirection"],"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.":[null,"Deze actie zal alle redirects, alle logs en alle instellingen van de Redirection-plugin verwijderen. Bezint eer ge begint!"],"Tracked":[null,"Tellen"],"Whether to track 'hits' to items":[null,"Tel het aantal 'hits' per item"],"Enabled":[null,"Ingeschakeld"],"Disabling a group will disable all items contained within it":[null,"Als je de groep uitschakelt, worden ook alle items in de groep uitgeschakeld."],"Log 404s":[null,"Log 404-fouten"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Uitgeschakeld: je moet <a href=\"options-permalink.php\">permalinks</a> aanzetten voordat je dit kunt gebruiken.</strong>"],"<small>No options have been set</small>":[null,"<small>Er zijn geen instellingen gemaakt.</small>"],"Location":[null,"Locatie"],"WordPress is installed in: <code>%s</code>":[null,"WordPress is geïnstalleerd in: <code>%s</code>"],"Canonical":[null,"Kanoniek"],"Leave as is":[null,"Laten zoals het is"],"Strip WWW (%s)":[null,"WWW verwijderen (%s)"],"Force WWW (www.%s)":[null,"WWW forceren (www.%s)"],"Strip Index":[null,"Index verwijderen"],"Strip index files (html,php)":[null,"Index-bestanden verwijderen (html, php)"],"Memory Limit":[null,"Geheugenlimiet"],"Server default":[null,"Standaard van de server"],"Error Level":[null,"Foutniveau"],"No errors":[null,"Geen fouten"],"Show errors":[null,"Toon fouten"],"Ban IPs":[null,"Blokkeer IP's"],"Allow IPs":[null,"Sta IP's toe"],"Raw .htaccess":[null,"Ruwe .htaccess"],"Site URL":[null,"Site-URL"],"Advanced: For management of external sites":[null,"Geavanceerd: voor het beheren van externe sites"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Ongeldige locatie - controleer of het pad bestaat.</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Geen schrijf-toegang tot het ingestelde <code>.htaccess</code>-bestand. Controleer de bestandsrechten.</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Uitgeschakeld: vul de locatie van een <code>.htaccess</code>-bestand in om dit geldig te maken.</strong>"],"strip WWW":[null,"verwijder WWW"],"force WWW":[null,"forceer WWW"],"strip index":[null,"verwijder index"],"memory limit at %dMB":[null,"geheugenlimit op %dMB"],"no errors":[null,"geen fouten"],"show errors":[null,"toon fouten"],"IPs are banned":[null,"IP's zijn geblokkeerd"],"IPs are allowed":[null,"IP's zijn toegestaan"],"Redirect to URL":[null,"Redirect naar URL"],"Redirect to random post":[null,"Redirect naar willekeurig bericht"],"Pass-through":[null,"Doorlaten"],"Error (404)":[null,"Fout (404)"],"Do nothing":[null,"Doe niks"],"WordPress":[null,"WordPress"],"404 Errors":[null,"404-fouten"],"Strip WWW":[null,"Verwijder WWW"],"Force WWW":[null,"Forceer WWW"],"Strip index.php":[null,"Verwijder index.php"],"Redirections":[null,"Redirects"],"Modified Posts":[null,"Gewijzigde berichten"],"Previous":[null,"Vorige"],"Next":[null,"Volgende"],"%d per-page":[null,"%d per pagina"],"Displaying %s&#8211;%s of %s":[null,"Toont %s&#8211;%s van %s"],"Yes":[null,"Ja"],"No":[null,"Nee"],"Sorry, but your redirection was not created":[null,"Excuses, er is geen redirect aangemaakt."],"Settings":[null,"Instellingen"],"Please wait...":[null,"Even wachten alsjeblieft..."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"De module is aangemaakt."],"Your module was not created - did you provide a name?":[null,"De module is niet aangemaakt - heb je wel een naam ingevuld?"],"Your options were updated":[null,"De instellingen zijn gewijzigd."],"Redirection data has been deleted and the plugin disabled":[null,"Alle Redirection-data is verwijderd en de plugin is uigeschakeld."],"%d redirection was successfully imported":["%d redirections were successfully imported","Er is %d redirect geïmporteerd.","Er zijn %d redirects geïmporteerd."],"No items were imported":[null,"Er zijn geen items geïmporteerd."],"Your logs have been deleted":[null,"De logs zijn verwijderd."],"Your group was added successfully":[null,"De groep is toegevoegd."],"Please specify a group name":[null,"Geef de groep een naam."],"Redirection is available in":[null,"Redirection is beschikbaar in het"],"URL only":[null,"Alleen URL"],"HTTP Code":[null,"HTTP-code"],"URL and login status":[null,"URL en loginstatus"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"De doel-URL wordt gekozen uit de volgende URL's, afhankelijk van of de gebruiker wel of niet is ingelogd. Als je een URL leeglaat, wordt de gebruiker niet ge-redirect."],"Logged In":[null,"Ingelogd"],"Logged Out":[null,"Uitgelogd"],"URL and user agent":[null,"URL en user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"Firefox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"De bezoeker zal worden doorgestuurd vanaf de bron-URL als de user agent overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de user agent overeenkomt en een <em>niet overeenkomende</em> voor als de user agent anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. <strong>Alle overeenkomsten worden met reguliere expressies gecontroleerd</strong>.\n"],"Matched":[null,"Overeenkomend"],"Not matched":[null,"Niet overeenkomend"],"URL and referrer":[null,"URL en referrer"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"De bezoeker wordt doorgestuurd van de bron-URL als de referrer overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de referrer overeenkomt en een <em>niet overeenkomende</em> voor als de referrer anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. "],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Beheer al je 301-redirects en hou 404-fouten in de gaten."],"John Godley":[null,"John Godley"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
1
+ {"":{"po-revision-date":"2017-07-10 19:35:45+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"nl","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,"WWW verwijderen"],"Add WWW":[null,"WWW toevoegen"],"Search by IP":[null,"Zoek op IP"],"Select bulk action":[null,"Bulk actie selecteren"],"Bulk Actions":[null,"Bulk acties"],"Apply":[null,"Toepassen"],"First page":[null,"Eerste pagina"],"Prev page":[null,"Vorige pagina"],"Current Page":[null,"Huidige pagina"],"of %(page)s":[null,"van %(pagina)s"],"Next page":[null,"Volgende pagina"],"Last page":[null,"Laatste pagina"],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Geavanceerde instellingen"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Beheer al je 301-redirects en hou 404-fouten in de gaten."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Je mag Redirection gratis gebruiken - het leven is vurrukuluk! Desalniettemin heeft het veel tijd en moeite gekost om Redirection te ontwikkelen. Als je Redirection handig vind, kan je de ontwikkeling ondersteunen door een {{strong}}kleine donatie{{/strong}} te doen."],"Redirection Support":[null,"Ondersteun Redirection"],"Support":[null,"Ondersteuning"],"404s":[null,"404s"],"404s from %s":[null,"404s vanaf %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Verwijder Redirection"],"Upload":[null,"Uploaden"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Hier kan je redirects importeren vanuit een bestaand {{code}}.htacces{{/code}} bestand of een CSV-bestand."],"Import":[null,"Importeren"],"Update":[null,"Bijwerken"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"URL automatisch genereren"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"RSS-token"],"Don't monitor":[null,"Niet controleren"],"Monitor changes to posts":[null,"Veranderingen aan berichten monitoren"],"404 Logs":[null,"404 logboeken"],"(time to keep logs for)":[null,"(tijd om logboeken voor te bewaren)"],"Redirect Logs":[null,"Redirect logboeken"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ik ben een aardig persoon en ik heb de auteur van deze plugin geholpen met ondersteuning."],"Plugin support":[null,"Ondersteuning van de plugin"],"Options":[null,"Instellingen"],"Two months":[null,"Twee maanden"],"A month":[null,"Een maand"],"A week":[null,"Een week"],"A day":[null,"Een dag"],"No logs":[null,"Geen logs"],"Modules":[null,"Modules"],"Export to CSV":[null,"Exporteer naar CSV"],"Delete All":[null,"Verwijder alles"],"Redirection Log":[null,"Redirection-log"],"optional":[null,"optioneel"],"Description":[null,"Beschrijving"],"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.":[null,""],"Add Group":[null,"Groep toevoegen"],"Search":[null,"Zoeken"],"Groups":[null,"Groepen"],"Save":[null,"Opslaan"],"Add Redirection":[null,"Voeg redirect toe"],"Group":[null,"Groep"],"Regular expression":[null,"Reguliere expressie"],"Action":[null,"Actie"],"Match":[null,"Vergelijk met"],"Your redirection has been added.":[null,"Je redirect is toegevoegd."],"Add new redirection":[null,"Nieuwe redirect toevoegen"],"Cancel":[null,"Annuleren"],"Download":[null,"Download"],"Sorry, but your redirection was not created":[null,"Excuses, er is geen redirect aangemaakt."],"Unable to perform action":[null,"Onmogelijk om actie uit te voeren"],"No items were imported":[null,"Er zijn geen items geïmporteerd."],"%d redirection was successfully imported":["%d redirections were successfully imported","Er is %d redirect geïmporteerd.","Er zijn %d redirects geïmporteerd."],"Your options were updated":[null,"De instellingen zijn gewijzigd."],"Redirection":[null,"Redirection"],"Settings":[null,"Instellingen"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Automatisch www toevoegen aan of verwijderen van je website."],"Default server":[null,"Standaard server"],"Canonical URL":[null,"Canonical URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress is geïnstalleerd in: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess Locatie"],"Do nothing":[null,"Niets doen"],"Error (404)":[null,"Fout (404)"],"Pass-through":[null,"Doorlaten"],"Redirect to random post":[null,"Redirect naar willekeurig bericht"],"Redirect to URL":[null,"Redirect naar URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,""],"Invalid source URL when creating redirect for given match type":[null,""],"Invalid group when creating redirect":[null,""],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,""],"Source and target URL must be different":[null,"Bron en doel-URL moeten verschillend zijn"],"Configure":[null,"Configureer"],"Show only this IP":[null,"Toon alleen dit IP"],"IP":[null,"IP-adres"],"Source URL":[null,"Bron-URL"],"Date":[null,"Datum"],"Add Redirect":[null,"Redirect toevoegen"],"All modules":[null,"Alle modules"],"View Redirects":[null,"Redirects bekijken"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Naam"],"Filter":[null,"Filter"],"No group filter":[null,"Geen groepfilter"],"Reset Hits":[null,"Reset hits"],"Enable":[null,"Inschakelen"],"Disable":[null,"Schakel uit"],"Delete":[null,"Verwijderen"],"Edit":[null,"Bewerk"],"Last Access":[null,"Laatste hit"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Gewijzigde berichten"],"Redirections":[null,"Redirects"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"De bezoeker zal worden doorgestuurd vanaf de bron-URL als de user agent overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de user agent overeenkomt en een <em>niet overeenkomende</em> voor als de user agent anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. <strong>Alle overeenkomsten worden met reguliere expressies gecontroleerd</strong>.\n"],"User Agent":[null,"User agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"Firefox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL en user agent"],"Target URL":[null,"Doel-URL"],"URL only":[null,"Alleen URL"],"Not matched":[null,"Niet overeenkomend"],"Matched":[null,"Overeenkomend"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"De bezoeker wordt doorgestuurd van de bron-URL als de referrer overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de referrer overeenkomt en een <em>niet overeenkomende</em> voor als de referrer anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. "],"HTTP Code":[null,"HTTP-code"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL en referrer"],"Logged Out":[null,"Uitgelogd"],"Logged In":[null,"Ingelogd"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"De doel-URL wordt gekozen uit de volgende URL's, afhankelijk van of de gebruiker wel of niet is ingelogd. Als je een URL leeglaat, wordt de gebruiker niet ge-redirect."],"URL and login status":[null,"URL en loginstatus"]}
locale/json/redirection-pt_PT.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2017-04-04 07:53:47+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"pt","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Configurações avançadas"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Faça a gestão dos redireccionamentos 301 e monitorize erros 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Suporte do Redirection"],"Support":[null,"Suporte"],"404s":[null,"404s"],"404s from %s":[null,"404s de %s"],"Log":[null,"Registo"],"Delete Redirection":[null,"Eliminar redireccionamento"],"Upload":[null,"Carregar"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importar"],"Update":[null,"Actualizar"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Gerar URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Um token único que permite os leitores de feed acederem ao registo de redireccionamento RSS (deixar em branco para gerar automaticamente)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"Não monitorizar"],"Monitor changes to posts":[null,"Monitorizar alterações nos conteúdos"],"404 Logs":[null,"Registos de 404"],"(time to keep logs for)":[null,"(tempo a manter os registos)"],"Redirect Logs":[null,"Registos de redireccionamentos"],"I'm a nice person and I have helped support the author of this plugin":[null,"Eu sou boa pessoa e ajudei o autor deste plugin"],"Plugin support":[null,""],"Options":[null,"Opções"],"Two months":[null,"Dois meses"],"A month":[null,"Um mês"],"A week":[null,"Uma semana"],"A day":[null,"Um dia"],"No logs":[null,"Sem registos"],"Modules":[null,"Módulos"],"Export to CSV":[null,""],"Delete All":[null,"Eliminar tudo"],"Redirection Log":[null,"Registo de redireccionamento"],"optional":[null,"opcional"],"Description":[null,"Descrição"],"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.":[null,""],"Add Group":[null,"Adicionar grupo"],"Search":[null,"Pesquisar"],"Groups":[null,"Grupos"],"Save":[null,"Guardar"],"Add Redirection":[null,"Adicionar redireccionamento"],"Group":[null,"Grupo"],"Regular expression":[null,"Expressão regular"],"Action":[null,"Acção"],"Match":[null,""],"Your redirection has been added.":[null,"O seu redireccionamento foi adicionado."],"Add new redirection":[null,"Adicionar novo redireccionamento"],"Cancel":[null,"Cancelar"],"Download":[null,"Descarregar"],"Sorry, but your redirection was not created":[null,"Desculpe, o seu redireccionamento não foi criado"],"Unable to perform action":[null,"Não foi possível executar a acção"],"No items were imported":[null,"Nenhum item importado"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redireccionamento importado com sucesso","%d redireccionamentos importados com sucesso"],"Your options were updated":[null,"As suas opções foram actualizadas"],"Redirection":[null,"Redireccionamento"],"Settings":[null,"Definições"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Para ser utilizado com servidor Nginx. Necessita de configuração manual. O redireccionamento ocorre sem carregar o WordPress. Os acessos não são monitorizados. Isto é um módulo experimental."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Adicionar ou remover automaticamente www do seu site."],"Default server":[null,"Servidor por omissão"],"Canonical URL":[null,"URL canónico"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,"Localização do .htaccess"],"Do nothing":[null,"Não fazer nada"],"Error (404)":[null,"Erro (404)"],"Pass-through":[null,""],"Redirect to random post":[null,"Redireccionar para um conteúdo"],"Redirect to URL":[null,"Redireccionar para o URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Não foi possível adicionar um novo redireccionamento - elimine os redireccionamentos na página de opções e reinstale"],"Invalid source URL when creating redirect for given match type":[null,"URL de origem inválido ao criar o redirecionamento para o tipo de correspondência fornecido"],"Invalid group when creating redirect":[null,"Grupo inválido ao criar o redireccionamento"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Apenas pode redireccionar a partir de um URL relativo (<code>%s</code>) neste domínio (<code>%s</code>)."],"Source and target URL must be different":[null,"O URL de origem e o URL de destino têm de ser diferentes"],"Configure":[null,"Configurar"],"Show only this IP":[null,"Mostrar apenas este IP"],"IP":[null,"IP"],"Source URL":[null,"URL de origem"],"Date":[null,"Data"],"Add Redirect":[null,""],"All modules":[null,"Todos os módulos"],"View Redirects":[null,"Ver redireccionamentos"],"Module":[null,"Módulo"],"Redirects":[null,"Redireccionamentos"],"Name":[null,"Nome"],"Filter":[null,"Filtrar"],"No group filter":[null,""],"Reset Hits":[null,"Limpar acessos"],"Enable":[null,"Activar"],"Disable":[null,"Desactivar"],"Delete":[null,"Apagar"],"Edit":[null,"Editar"],"Last Access":[null,"Último acesso"],"Hits":[null,"Acessos"],"URL":[null,"Link"],"Type":[null,"Tipo"],"Modified Posts":[null,"Conteúdos alterados"],"Redirections":[null,"Redireccionamentos"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"\n"],"User Agent":[null,"Agente do utilizador"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"Firefox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL e agente do utilizador"],"Target URL":[null,"URL de destino"],"URL only":[null,"Apenas o URL"],"Not matched":[null,""],"Matched":[null,""],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,""],"HTTP Code":[null,"Código HTTP"],"Regex":[null,"ExprReg"],"Referrer":[null,"Referenciador"],"URL and referrer":[null,"URL e referenciador"],"Logged Out":[null,"Sem sessão iniciada"],"Logged In":[null,"Com sessão iniciada"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"O URL de destino será escolhido de um dos seguintes URL, dependendo se o utilizador iniciou ou não iniciou a sessão. Deixar um URL em branco significa que o utilizador não será redireccionado."],"URL and login status":[null,"URL e estado da sessão"]}
locale/json/redirection-ro_RO.json CHANGED
@@ -1 +1 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.2.13","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2012-05-07 13:59:00+00:00","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","po-revision-date":"2014-01-07 15:52-0000","last-translator":"Inbox Translation <office@inboxtranslation.com>","language-team":"Inbox Translation <info@inboxtranslation.com>","plural-forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));","language":"ro","x-generator":"Poedit 1.6.3"},"Sorry, but your redirection was not created":[null,"Îmi pare rău, redirecționarea nu s-a creat"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importat la data de %s ora %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Importarea de fișiere XML este disponibilă numai cu PHP5 - dumneavoastră aveți PHP4."],"URL and login status":[null,"Stare URL și logare "],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"URL-ul țintă va fi ales unul dintre următoarele URL-uri, în funcție dacă utilizatorul este conectat sau nu. A lăsa necompletat un URL înseamnă că utilizatorul nu este redirecționat."],"Logged In":[null,"Conectat"],"Logged Out":[null,"Neconectat"],"URL and referrer":[null,"URL și referent"],"Referrer":[null,"Referent"],"Regex":[null,"Expresii regulate"],"HTTP Code":[null,"Cod HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Vizitatorul va fi redirecționat de la URL-ul sursă dacă referentul corespunde. Puteți specifica un URL țintă ce <em>corespunde</em> ca adresă unde să fie trimiși vizitatorii în cazul în care corespund și unul ce <em>nu corespunde</em> dacă nu corespund. A lăsa necompletat un URL înseamnă că vizitatorul nu este redirecționat."],"Matched":[null,"Corespunde"],"Not matched":[null,"Nu corespunde"],"URL only":[null,"Doar URL"],"Target URL":[null,"URL țintă"],"URL and user agent":[null,"URL și agent utilizator"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"iPad":[null,"iPad"],"Android":[null,"Android"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Agent utilizator"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Vizitatorul va fi redirecționat de la URL-ul sursă dacă agentul utilizator corespunde. Puteți specifica un URL țintă ce <em>corespunde</em> ca adresă unde să fie trimiși vizitatorii dacă aceștia corespund și unul <em>nu corespunde</em> dacă nu corespund. A lăsa necompletat un URL înseamnă că vizitatorul nu este redirecționat. <strong>Toate corespondențele sunt generate ca expresii regulate</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"Redirecționări"],"Modified Posts":[null,"Articole modificate"],"Yes":[null,"Da"],"No":[null,"Nu"],"404 Errors":[null,"Erori 404"],"Strip WWW":[null,"Renunțare la WWW"],"Force WWW":[null,"Forțare WWW"],"Strip index.php":[null,"Renunțare la index.php"],"Previous":[null,"Anterior"],"Next":[null,"Următor"],"%d per-page":[null,"%d pe pagină"],"Displaying %s&#8211;%s of %s":[null,"Afișare %s&#8211;%s din %s"],"Redirect to URL":[null,"Redirecționare către URL"],"Redirect to random post":[null,"Redirecționare către articol aleatoriu"],"Pass-through":[null,"Interogări la distanță"],"Error (404)":[null,"Eroare (404)"],"Do nothing":[null,"Nu face nimic"],"Log 404s":[null,"Înregistrați erori 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Dezactivat: Trebuie să activați <a href=\"options-permalink.php\">permalinks</a> înainte de a putea utiliza</strong>"],"<small>No options have been set</small>":[null,"<small>Nicio opțiune nu a fost setată</small>"],"Location":[null,"Locație"],"WordPress is installed in: <code>%s</code>":[null,"WordPress este instalat în: <code>%s</code>"],"Canonical":[null,"Canonic"],"Leave as is":[null,"Lăsați neschimbat"],"Strip WWW (%s)":[null,"Renunțare la WWW (%s)"],"Force WWW (www.%s)":[null,"Forțare WWW (www.%s)"],"Strip Index":[null,"Renunțare la Index"],"Strip index files (html,php)":[null,"Renunțare la fișierele index (html,php)"],"Memory Limit":[null,"Limită de memorie"],"Server default":[null,"Prestabilire server"],"Error Level":[null,"Nivel eroare"],"No errors":[null,"Fără erori"],"Show errors":[null,"Afișare erori"],"Ban IPs":[null,"Interzicere IP-uri"],"Allow IPs":[null,"Permitere IP-uri"],"Raw .htaccess":[null,".htaccess brut"],"Site URL":[null,"URL-ul site-ului"],"Advanced: For management of external sites":[null,"Avansat: Pentru administrarea site-urilor externe"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Locație invalidă - verificați dacă există calea</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Nu a fost permisă editarea fișierului configurat <code>.htaccess</code>-verificați permisiunile fișierului</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Dezactivat: introduceți locația unui fișier <code>.htaccess</code> pentru ca acesta să fie valid</strong>"],"strip WWW":[null,"renunțare la WWW"],"force WWW":[null,"forțare WWW"],"strip index":[null,"renunțare la index"],"memory limit at %dMB":[null,"limită memorie la %dMB"],"no errors":[null,"fără erori"],"show errors":[null,"afișare erori"],"IPs are banned":[null,"IP-urile sunt interzise"],"IPs are allowed":[null,"IP-urile sunt permise"],"Settings":[null,"Setări"],"Please wait...":[null,"Vă rugăm așteptați..."],"Are you sure?":[null,"Sunteți sigur?"],"No items have been selected":[null,"Niciun obiect nu a fost selectat"],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Modulul dumneavoastră a fost creat cu succes"],"Your module was not created - did you provide a name?":[null,"Modulul dumneavoastră nu a fost creat - ați furnizat un nume?"],"Your options were updated":[null,"Opțiunile dumneavoastră au fost actualizate"],"Redirection data has been deleted and the plugin disabled":[null,"Datele din Redirection au fost șterse și plugin-ul dezactivat"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirecționare a fost importată cu succes","%d redirecționări au fost importate cu succes","%d redirecționări au fost importate cu succes"],"No items were imported":[null,"Niciun obiect nu a fost importat"],"Your logs have been deleted":[null,"Înregistrările dumneavoastră au fost șterse"],"Your group was added successfully":[null,"Grupul dumneavoastră a fost adăugat cu succes"],"Please specify a group name":[null,"Vă rugăm precizați un nume pentru grup"],"Redirection is available in":[null,"Redirection este disponibil în"],"Add new redirection":[null,"Adăugare redirecționare nouă"],"Your redirection has been added.":[null,"Redirecționarea dumneavoastră a fost adăugată."],"Source URL":[null,"Origine URL"],"Match":[null,"Corespondență"],"Action":[null,"Acțiune"],"Regular expression":[null,"Expresii regulate"],"Group":[null,"Grup"],"Add Redirection":[null,"Adăugare redirecționare"],"Name":[null,"Nume"],"Tracked":[null,"Urmărit"],"Whether to track 'hits' to items":[null,"Dacă să se urmărească accesările către obiecte"],"Enabled":[null,"Activat"],"Disabling a group will disable all items contained within it":[null,"Dezactivarea unui grup va dezactiva toate obiectele conținute de acesta"],"Save":[null,"Salvare"],"Cancel":[null,"Anulare"],"edit group":[null,"editare grup"],"disabled":[null,"dezactivat"],"Groups for module":[null,"Grupuri pentru modul"],"Module":[null,"Modul"],"Search":[null,"Căutare"],"go":[null,"începere"],"Hits":[null,"Accesări"],"Select All":[null,"Selectează tot"],"Toggle":[null,"Permutare"],"Reset Hits":[null,"Resetare accesări"],"Delete":[null,"Ștergere"],"Move To":[null,"Mutare la"],"Go":[null,"Începere"],"re-order":[null,"re-aranjare"],"save order":[null,"salvare ordine"],"You have no groups in this module.":[null,"Nu aveți niciun grup în acest modul."],"Add Group":[null,"Adăugare grup"],"Add":[null,"Adăugare"],"%s by matching %s":[null,"%s corespunzând %s"],"Title":[null,"Titlu"],"optional":[null,"opțional"],"Redirections for group":[null,"Redirecționări pentru grup"],"Last Access":[null,"Ultima accesare"],"Type":[null,"Tip"],"URL":[null,"URL"],"Position":[null,"Poziție"],"You have no redirections.":[null,"Nu aveți redirecționări."],"Redirection Log":[null,"Registru redirecționări"],"Bulk Actions":[null,"Acțiuni în masă"],"Apply":[null,"Aplicare"],"Filter":[null,"Filtrare"],"Date":[null,"Dată"],"IP":[null,"IP"],"There are no logs to display!":[null,"Nu există înregistrări de afișat!"],"Process Current Logs":[null,"Procesare registre curente"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Aceste acțiuni vor afecta toate registrele disponibile la acest moment (mai exact, expresia căutată va restricționa intrările din registru). "],"Delete Logs":[null,"Ștergere registre"],"Redirect to":[null,"Redirecționare către"],"Redirected by":[null,"Redirecționat de"],"for":[null,"pentru"],"View as":[null,"Vizualizare ca"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"editare"],"delete":[null,"ștergere"],"reset":[null,"resetare"],"Modules":[null,"Module"],"Details":[null,"Detalii"],"Groups":[null,"Grupuri"],"Items":[null,"Obiecte"],"Operations":[null,"Operațiuni"],"Note: Hits are dependant on log entries":[null,"Notă: Accesările depind de intrările din registru"],"You have no modules defined yet":[null,"Nu aveți încă niciun modul definit"],"Add Module":[null,"Adăugare modul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Un modul este un element de control care determină modul în care se fac redirecționările. Elementele dintr-un modul WordPress sunt controlate de WordPress, elementele dintr-un modul Apache sunt controlate de <code>.htaccess</code>, iar elementele dintr-un modul 404 afectează modul în care sunt înregistrate erorile 404."],"Create":[null,"Creare"],"Options":[null,"Opțiuni"],"Auto-generate URL":[null,"Generare automată URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Acesta va fi folosit pentru a genera automat un URL dacă niciun URL nu este precizat. Puteți folosi tag-urile speciale $dec$ sau $hex$ pentru a insera un ID unic (fie zecimal sau hexazecimal)"],"IP Lookup Service":[null,"Serviciu căutare IP"],"Plugin Support":[null,"Suport plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sunt o persoană de treabă și am ajutat autorului acestui plugin"],"Logging":[null,"Înregistrare"],"log redirected requests":[null,"înregistrare cereri redirecționate"],"log 404 Not Found requests":[null,"înregistrare cereri 404 Nu există"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Debifați una sau ambele opțiuni pentru a opri înregistrarea și pentru a reduce supraîncărcarea bazei de date dacă URL-urile redirecționate sunt accesate foarte frecvent și/sau dacă site-ul dvs. este greu accesibil și se întâmplă des ca paginile să nu fie găsite."],"Expire Logs":[null,"Expirare registre"],"days (enter 0 for no expiry)":[null,"zile (introduceți 0 dacă nu expiră)"],"RSS Token":[null,"Jeton RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Un jeton unic care permite accesul cititorilor la RSS Redirection (lăsați necompletat pentru generare automată)"],"URL Monitoring":[null,"Monitorizare URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Puteți alege ca Redirection să detecteze schimbările în URL-uri și să se creeze o redirecționare automată într-un anumit grup."],"Post &amp; Page URLs":[null,"URL-uri pagini &amp; articole"],"Don't monitor":[null,"Nu se monitorizează"],"Monitor new posts":[null,"Monitorizare articole noi"],"Category URLs":[null,"Categorii URL-uri"],"Update":[null,"Actualizare"],"Import":[null,"Importare"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Aici puteți importa redirecționări dintr-un fișier .htaccess existent, dintr-un fișier CSV sau XML Redirection."],"Import into":[null,"Importare în"],"Upload":[null,"Încărcare"],"Note that the group is ignored when uploading an XML file.":[null,"Țineți seama că grupul este ignorat când se încarcă un fișier XML."],"Delete Redirection":[null,"Ștergere Redirection"],"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.":[null,"Selectarea acestei opțiuni va șterge toate redirecționările, toate registrele și toate opțiunile asociate cu plugin-ul Redirection. Asigurați-vă că asta vreți să faceți."],"Redirects":[null,"Redirecționare"],"Log":[null,"Registru"],"Support":[null,"Suport tehnic"],"Redirection Support":[null,"Suport tehnic Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection este gratuit - viața e minunată! Totuși, dezvoltarea acestui plugin presupune mult timp și efort depuse din partea mea și dacă v-a fost de folos puteți contribui la acest proiect <strong>făcând o mică donație</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Aceasta mă va motiva să continui să îl dezvolt, oferind nenumărate ore de suport tehnic și adăugând opțiuni și sugestii noi. Voi vă alegeți cu un program util iar eu reușesc să continui să îl fac. Toată lumea câștigă."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Dacă folosiți acest plugin într-un mediu comercial, sau considerați că v-a fost extrem de util, ați putea să vă gândiți la o <strong>donație comercială</strong>."],"Individual<br/>Donation":[null,"Donație <br/>individuală"],"Commercial<br/>Donation":[null,"Donație<br/>comercială"],"Translations":[null,"Traduceri"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Dacă vorbiți mai multe limbi ați putea contribui cu o traducere:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Toți traducătorii vor primi un link către site-ul lor de pe pagina principală a plugin-ului <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, pe lângă contribuția individuală."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Detaliile despre cum puteți contribui cu o traducere pot fi găsite în acest <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">ghid despre traducerea plugin-urilor WordPress </a>."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Puteți administra toate redirecționările 301 și monitoriza erorile 404"],"John Godley":[null,"John Godley"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
1
+ {"":{"po-revision-date":"2017-07-09 16:00:20+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","x-generator":"GlotPress/2.4.0-alpha","language":"ro","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Setări avansate"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Administrează-ți toate redirecționările 301 și monitorizează erorile 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,"Redirecționarea este gratuită - viața e minunată și frumoasă! Totuși, a necesitat mult timp și efort pentru a-l dezvolta și, dacă ți-a fost de folos, poți contribui la acest proiect {{strong}}făcând o mică donație{{/strong}}."],"Redirection Support":[null,"Suport pentru Redirecționare"],"Support":[null,"Suport"],"404s":[null,"Erori 404"],"404s from %s":[null,"Erori 404 din %s"],"Log":[null,"Jurnal"],"Delete Redirection":[null,"Șterge Redirecționare"],"Upload":[null,"Încărcare"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Aici poți importa redirecționări dintr-un fișier {{code}}.htaccess{{/code}} existent sau dintr-un fișier CSV."],"Import":[null,"Import"],"Update":[null,"Actualizare"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"Va fi folosit pentru a genera automat un URL dacă niciun URL nu este dat. Poți folosi tagurile speciale {{code}}$dec${{/code}} sau {{code}}$hex${{/code}} pentru a avea un ID unic inserat (fie zecimal ori hex)"],"Auto-generate URL":[null,"URL generat automat"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token unic care permite accesul fluxului de cititori la jurnalul RSS de redirecționare (lasă necompletat pentru generare automată)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"Nu monitoriza"],"Monitor changes to posts":[null,"Monitorizează schimbări în articole"],"404 Logs":[null,"Jurnale 404"],"(time to keep logs for)":[null,"(perioadă de păstrare a jurnalelor)"],"Redirect Logs":[null,"Jurnale redirecționare"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sunt o persoană de treabă și am sprijinit autorul acestui modul"],"Plugin support":[null,"Suport modul"],"Options":[null,"Opțiuni"],"Two months":[null,"Două luni"],"A month":[null,"O lună"],"A week":[null,"O săptămână"],"A day":[null,"O zi"],"No logs":[null,"Niciun jurnal"],"Modules":[null,"Extensii"],"Export to CSV":[null,"Exportă în CSV"],"Delete All":[null,"Șterge tot"],"Redirection Log":[null,"Jurnal redirecționare"],"optional":[null,"opțional"],"Description":[null,"Descriere"],"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.":[null,"Folosește grupuri pentru a-ți organiza redirecționările. Grupurile sunt atribuite unei extensii, care afectează modul în care redirecționările din acel grup funcționează. Dacă nu ești sigur, atunci lipește extensia WordPress."],"Add Group":[null,"Adaugă grup"],"Search":[null,"Caută"],"Groups":[null,"Grupuri"],"Save":[null,"Salvează"],"Add Redirection":[null,"Adaugă redirecționare"],"Group":[null,"Grup"],"Regular expression":[null,"Expresie uzuală"],"Action":[null,"Acțiune"],"Match":[null,"Potrivire"],"Your redirection has been added.":[null,"Redirecționarea ta a fost adăugată."],"Add new redirection":[null,"Adaugă redirecționare nouă"],"Cancel":[null,"Anulare"],"Download":[null,"Descarcă"],"Sorry, but your redirection was not created":[null,"Regret, dar redirecționarea ta nu s-a creat"],"Unable to perform action":[null,"Imposibil de executat acțiunea"],"No items were imported":[null,"Niciun element n-a fost importat"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirecționare a fost importată cu succes","%d redirecționări au fost importate cu succes","%d de redirecționări au fost importate cu succes"],"Your options were updated":[null,"Opțiunile tale au fost actualizate"],"Redirection":[null,"Redirecționare"],"Settings":[null,"Setări"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Redirecționări cu sprijinul WordPress. Nu necesită nicio configurare suplimentară și poți urmări vizitele."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Pentru folosire cu server Nginx. Necesită configurare manuală. Redirecționarea se face fără încărcare WordPress. Nicio urmărire a vizitelor. Aceasta este o extensie experimentală."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Folosește fișiere {{code}}.htaccess{{/code}} Apache. Necesită configurare suplimentară. Redirecționarea se face fără încărcarea WordPress. Nicio urmărire a vizitelor."],"Automatically remove or add www to your site.":[null,"Înlătură sau adaugă automat www la situl tău."],"Default server":[null,"Server implicit"],"Canonical URL":[null,"URL canonic"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress este instalat în: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"Dacă vrei ca Redirecționarea să-ți actualizeze automat fișierul {{code}}.htaccess{{/code}}, atunci introdu aici calea completă și numele fișierului. De asemenea, poți descărca fișierul și să-l actualizezi manual."],".htaccess Location":[null,"Locație .htaccess"],"Do nothing":[null,"Nu face nimic"],"Error (404)":[null,"Eroare (404)"],"Pass-through":[null,"Trece prin"],"Redirect to random post":[null,"Redirecționează către articol aleatoriu"],"Redirect to URL":[null,"Redirecționează către URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Nu se pot adăuga redirecționări noi - șterge Redirecționare din pagina opțiuni și reinstalează"],"Invalid source URL when creating redirect for given match type":[null,"URL sursă invalid la crearea redirecționării pentru tipul de potrivire dat"],"Invalid group when creating redirect":[null,"Grup invalid la crearea redirecționării"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Poți redirecționa numai de la un URL relativ (<code>%s</code>) pe acest domeniu (<code>%s</code>)."],"Source and target URL must be different":[null,"Sursa și URL-ul de destinație trebuie să fie diferite"],"Configure":[null,"Configurare"],"Show only this IP":[null,"Arată numai acest IP"],"IP":[null,"IP"],"Source URL":[null,"URL sursă"],"Date":[null,"Dată"],"Add Redirect":[null,"Adaugă redirecționare"],"All modules":[null,"Toate extensiile"],"View Redirects":[null,"Vizualizare redirecționări"],"Module":[null,"Extensie"],"Redirects":[null,"Redirecționări"],"Name":[null,"Nume"],"Filter":[null,"Filtru"],"No group filter":[null,"Niciun filtru pentru grup"],"Reset Hits":[null,"Resetare vizite"],"Enable":[null,"Activare"],"Disable":[null,"Dezactivare"],"Delete":[null,"Șterge"],"Edit":[null,"Editare"],"Last Access":[null,"Ultima vizită"],"Hits":[null,"Vizite"],"URL":[null,"URL"],"Type":[null,"Tip"],"Modified Posts":[null,"Articole modificate"],"Redirections":[null,"Redirecționări"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Vizitatorul va fi redirecționat de la URL-ul sursă dacă agentul utilizator se potrivește. Poți specifica un URL de destinație <em>potrivit</em> ca adresă pentru a trimite vizitatorii dacă se potrivesc și unul <em>nepotrivit</em> dacă nu se potrivesc. Lăsând un URL necompletat înseamnă că vizitatorul nu este redirecționat. <strong>Toate potrivirile sunt executate ca expresii uzuale</strong>.\n"],"User Agent":[null,"Agent utilizator"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL și agent utilizator"],"Target URL":[null,"URL de destinație"],"URL only":[null,"Numai URL"],"Not matched":[null,"Nepotrivit"],"Matched":[null,"Potrivit"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Vizitatorul va fi redirecționat de la URL-ul sursă dacă referentul se potrivește. Poți specifica un URL de destinație <em>potrivit</em> ca adresă pentru a trimite vizitatorii dacă se potrivesc și unul <em>nepotrivit</em> dacă nu se potrivesc. Lăsând un URL necompletat înseamnă că vizitatorul nu este redirecționat."],"HTTP Code":[null,"Cod HTTP"],"Regex":[null,"Expresie uzuală"],"Referrer":[null,"Referent"],"URL and referrer":[null,"URL și referent"],"Logged Out":[null,"Dezautentificat"],"Logged In":[null,"Autentificat"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"URL-ul de destinație va fi ales din unul dintre următoarele URL-uri, în funcție dacă utilizatorul este autentificat sau nu. Lăsând un URL necompletat înseamnă că utilizatorul nu este redirecționat."],"URL and login status":[null,"URL și stare autentificare"]}
locale/json/redirection-ru_RU.json CHANGED
@@ -1 +1 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.1.20","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","po-revision-date":"2011-08-08 10:21+0500","last-translator":"","language-team":"www.wp-ru.ru <grib69@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;"},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s импортировано %s в %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Импорт XML доступен только с PHP5, у вас установлен PHP4"],"Groups for module":[null,"Группы для модуля"],"Module":[null,"Модуль"],"Search":[null,"Поиск"],"go":[null,"вперед"],"Hits":[null,"Счетчик"],"Name":[null,"Название"],"Select All":[null,"Выбрать все"],"Toggle":[null,"Вкл/Выкл"],"Reset Hits":[null,"Обнулить счетчик"],"Delete":[null,"Удалить"],"Move To":[null,"Переместить"],"Go":[null,"Вперед"],"re-order":[null,"поменять местами"],"save order":[null,"сохранить порядок"],"You have no groups in this module.":[null,"Нет групп в данном модуле"],"Add Group":[null,"Добавить группу"],"Add":[null,"Добавить"],"No items have been selected":[null,"Ничего не выбрано"],"Are you sure?":[null,"Вы уверены?"],"Redirects":[null,"Перенаправления"],"Groups":[null,"Группы"],"Modules":[null,"Модули"],"Log":[null,"Журнал"],"Options":[null,"Настройки"],"Support":[null,"Поддержка"],"View as":[null,"Посмотреть как"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"править"],"delete":[null,"удалить"],"reset":[null,"сбросить"],"Redirection Log":[null,"Журнал перенаправлений"],"Bulk Actions":[null,"Массовые действия"],"Apply":[null,"Применить"],"Group":[null,"Группа"],"Filter":[null,"Фильтр"],"Date":[null,"Дата"],"Source URL":[null,"URL источника"],"Referrer":[null,"Реферер"],"IP":[null,"IP"],"There are no logs to display!":[null,"Журналы отсутствуют!"],"Process Current Logs":[null,"Действия с текущим журналом"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Эти действия коснутся всех имеющихся в настоящее время журналов (поиск по журналу будет ограничен)"],"Delete Logs":[null,"Удалить журналы"],"Redirections for group":[null,"Перенаправление для группы"],"Last Access":[null,"Последний"],"Type":[null,"Тип"],"URL":[null,"URL"],"Position":[null,"Сортировка"],"You have no redirections.":[null,"Нет перенаправлений"],"Redirect to":[null,"Перенаправить на"],"Redirected by":[null,"Перенаправлено"],"for":[null,"для"],"User Agent":[null,"User-Agent"],"disabled":[null,"отключено"],"%s by matching %s":[null,"%s сопоставление %s"],"Title":[null,"Название"],"optional":[null,"не обязательно"],"Regex":[null,"Регулярное выражение"],"Save":[null,"Сохранить"],"Cancel":[null,"Отмена"],"Add new redirection":[null,"Добавить новое перенаправление"],"Your redirection has been added.":[null,"Ваше правило перенаправления добавлено."],"Match":[null,"Совпадение"],"Action":[null,"Действие"],"Regular expression":[null,"Регулярное выражение"],"Target URL":[null,"URL назначения"],"Add Redirection":[null,"Добавить перенаправление"],"edit group":[null,"править группу"],"Details":[null,"Детали"],"Items":[null,"Элементы"],"Operations":[null,"Действия"],"Note: Hits are dependant on log entries":[null,"Примечание: показания счетчика зависят от записей в журнале"],"You have no modules defined yet":[null,"Вы не определили модули"],"Add Module":[null,"Добавить модуль"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Модуль представляет собой элемент управления, который определяет как обрабатываются перенаправления. Элементы модуля WordPress обрабатываются WordPress, элементы модуля Apache обрабатываются файлом <code>.htaccess</code> и элементы модуля 404 влияют на журналирование ошибок 404"],"Create":[null,"Создать"],"Redirection Support":[null,"Поддержка"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Этот плагин абсолютно свободен для использования - жизнь прекрасна и удивительна! Тем не менее, он требует много времени и усилий в разработке и если он был вам полезен, вы можете поддержать его дальнейшее развитие, <strong>сделав небольшое пожертвование</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Это будет для меня стимулом продолжать заниматься разработкой данного плагина, тратить много времени на оказание поддержки, в том числе на реализацию новых предложенных возможностей. Вы получаете новые программы, а я продолжаю этим заниматься. Все остаются в выигрыше."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Если вы используете данный плагин в коммерческих проектах или считаете, что он был вам особенно полезен, то вполне возможно, что вы захотите сделать <strong>коммерческий взнос</strong>."],"Individual<br/>Donation":[null,"Индивидуальный<br/>взнос"],"Commercial<br/>Donation":[null,"Коммерческий<br/>взнос"],"Translations":[null,"Переводчики"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Если вы владеете другим языком, вы можете оказать помощь, сделав перевод:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Все переводчики получают ссылку на свой сайт с домашней страницы плагина на <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> и <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, а также имеют возможность получать индивидуальную поддержку."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Полную информацию о подготовке перевода можно найти в <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">руководстве по переводу плагинов для WordPress</a>."],"Auto-generate URL":[null,"Автоматическая генерация URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Используется для автоматической генерации URL, если URL не представлен. Вы можете использовать специальные тэги $dec$ или $hex$ для вставки уникального ID (десятичные или шестнадцатиричные)"],"IP Lookup Service":[null,"Сервис разрешения имен по IP"],"Plugin Support":[null,"Поддержка плагина"],"I'm a nice person and I have helped support the author of this plugin":[null,"Я - хороший человек и я поддержал автора данного плагина"],"Logging":[null,"Журнал"],"log redirected requests":[null,"вести журнал запросов перенаправлений"],"log 404 Not Found requests":[null,"вести журнал запросов 404"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Если ваши перенаправленные URL посещаются очень часто и/или ваш сайт очень загружен и страницы часто бывают не найдены, снимите флажок с одной или обеих этих опций чтобы отключить ведение журнала и тем самым снизить загрузку базы данных."],"Expire Logs":[null,"Время жизни журнала"],"days (enter 0 for no expiry)":[null,"дней (введите 0 для неограниченного времени)"],"RSS Token":[null,"Токен RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Уникальная строка для доступа к RSS фиду плагина (оставьте пустой для автоматической генерации)"],"URL Monitoring":[null,"Отслеживание URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Вы можете включить слежение за изменением URL и автоматически создавать перенаправление в определенной группе."],"Post &amp; Page URLs":[null,"URL записей и страниц"],"Don't monitor":[null,"Не отслеживать"],"Monitor new posts":[null,"Отслеживание новых записей"],"Category URLs":[null,"URL категории"],"Update":[null,"Обновить"],"Import":[null,"Импорт"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Вы можете импортировать правила перенаправлений из существующих .htaccess, CSV или XML файлов"],"Import into":[null,"Импортировать в"],"Upload":[null,"Загрузить"],"Note that the group is ignored when uploading an XML file.":[null,"Примечание: группа будет проигнорирована при загрузке XML-файла."],"Delete Redirection":[null,"Удалить плагин"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."],"Tracked":[null,"Слежение"],"Whether to track 'hits' to items":[null,"Отслеживать кол-во срабатываний"],"Enabled":[null,"Включено"],"Disabling a group will disable all items contained within it":[null,"Отключение группы приведет к отключению всех пунктов, содержащихся в ней"],"Log 404s":[null,"Журналирование 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Отключено: Перед использованием должны быть включены <a href=\"options-permalink.php\">ЧПУ</a>"],"<small>No options have been set</small>":[null,"<small>Нет настраиваемых параметров</small>"],"Location":[null,"Расположение"],"WordPress is installed in: <code>%s</code>":[null,"WordPress установлен в: <code>%s</code>"],"Canonical":[null,"Основа"],"Leave as is":[null,"Оставить как есть"],"Strip WWW (%s)":[null,"Вырезать WWW (%s)"],"Force WWW (www.%s)":[null,"Принудительно использовать WWW (www.%s)"],"Strip Index":[null,"Удаление индекса"],"Strip index files (html,php)":[null,"Удалить файлы index (html,php) "],"Memory Limit":[null,"Лимит памяти"],"Server default":[null,"Настройки сервера"],"Error Level":[null,"Уровень ошибок"],"No errors":[null,"Без ошибок"],"Show errors":[null,"Показывать ошибки"],"Ban IPs":[null,"Блокировать IP"],"Allow IPs":[null,"Разрешить IP"],"Raw .htaccess":[null,"Необработанный .htaccess"],"Site URL":[null,"URL сайта"],"Advanced: For management of external sites":[null,"Дополнительно: для управления внешними сайтами"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Неправильное расположение - проверьте что путь существует</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Невозможно записать файл <code>.htaccess</code> - проверьте права доступа</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Отключено: укажите положение файла <code>.htaccess</code> или приведите его в рабочее состояние</strong>"],"strip WWW":[null,"вырезать WWW"],"force WWW":[null,"принудительно использовать WWW"],"strip index":[null,"удалить index"],"memory limit at %dMB":[null,"лимит памяти %dMB"],"no errors":[null,"нет ошибок"],"show errors":[null,"показать ошибки"],"IPs are banned":[null,"Запрещенные IP"],"IPs are allowed":[null,"Разрешенные IP"],"Redirect to URL":[null,"Перенаправить на URL"],"Redirect to random post":[null,"Перенаправить на случайную запись"],"Pass-through":[null,"Транзит (pass-through)"],"Error (404)":[null,"Ошибка 404"],"Do nothing":[null,"Ничего не делать"],"WordPress":[null,"WordPress"],"404 Errors":[null,"Ошибки 404"],"Strip WWW":[null,"Вырезать WWW"],"Force WWW":[null,"Принудительно использовать WWW"],"Strip index.php":[null,"Удалить index.php"],"Redirections":[null,"Перенаправления"],"Modified Posts":[null,"Измененные записи"],"Previous":[null,"Предыдущий"],"Next":[null,"Следующий"],"%d per-page":[null,"%d на страницу"],"Displaying %s&#8211;%s of %s":[null,"Показано %s&#8211;%s из %s"],"Yes":[null,"Да"],"No":[null,"Нет"],"Sorry, but your redirection was not created":[null,"Извините, перенаправление не было создано"],"Settings":[null,"Настройки"],"Please wait...":[null,"Пожалуйста подождите..."],"Redirection":[null,"Перенаправления"],"Your module was successfully created":[null,"Модуль успешно создан"],"Your module was not created - did you provide a name?":[null,"Модуль не был создан - не указали имя?"],"Your options were updated":[null,"Ваши настройки были обновлены"],"Redirection data has been deleted and the plugin disabled":[null,"Все настройки перенаправлений были удалены, а плагин отключен"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d перенаправление было успешно импортировано","%d перенаправления были успешно импортированы"],"No items were imported":[null,"Ничего не импортировано"],"Your logs have been deleted":[null,"Ваши журналы были удалены"],"Your group was added successfully":[null,"Ваша группа успешно добавлена"],"Please specify a group name":[null,"Пожалуйста, определите имя группы"],"Redirection is available in":[null,"Перенаправления доступны в"],"URL only":[null,"Только URL"],"HTTP Code":[null,"Код HTTP"],"URL and login status":[null,"URL и статус входа"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Будет выбран один из следующих URL-адресов в зависимости от того, войдет пользователь в систему или нет. Если оставить поле пустым - пользователь перенаправляться не будет."],"Logged In":[null,"Залогинен"],"Logged Out":[null,"Разлогинен"],"URL and user agent":[null,"URL и User-Agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Посетитель будет перенаправлен при совпадении User-Agent. Вы можете определить различные целевые URL при совпадении или не совпадении. Если оставить поле пустым, то посетитель никуда перенаправляться не будет. <strong>Все условия вводятся как регулярные выражения</strong>.\n"],"Matched":[null,"Совпадают"],"Not matched":[null,"Не совпадают"],"URL and referrer":[null,"URL и реферер"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Посетитель будет перенапрвлен на URL источника при совпадении реферера. Вы можете определить различные целевые URL при совпадении и не совпадении. Если оставить поле пустым, посетитель никуда перенаправляться не будет."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"John Godley":[null,"Джон Годли"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
1
+ {"":{"po-revision-date":"2016-08-24 17:24:44+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","x-generator":"GlotPress/2.4.0-alpha","language":"ru","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Расширенные параметры"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"Джон Годли"],"Manage all your 301 redirects and monitor 404 errors":[null,"Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Поддержка"],"Support":[null,"Поддержка"],"404s":[null,"404 ошибки"],"404s from %s":[null,"ошибки 404 от %s"],"Log":[null,"Журнал"],"Delete Redirection":[null,"Удалить плагин"],"Upload":[null,"Загрузить"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Импорт"],"Update":[null,"Обновить"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Автоматическая генерация URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Уникальный токен разрешающий RSS-ридерам доступ к RSS журналу перенаправлений (оставьте пустым для автогенерации)"],"RSS Token":[null,"Токен RSS"],"Don't monitor":[null,"Не отслеживать"],"Monitor changes to posts":[null,"Наблюдать за изменениями в записях"],"404 Logs":[null,"Журналы 404"],"(time to keep logs for)":[null,"(время хранения журналов)"],"Redirect Logs":[null,"Журналы перенаправлений"],"I'm a nice person and I have helped support the author of this plugin":[null,"Я - хороший человек и я поддержал автора данного плагина"],"Plugin support":[null,""],"Options":[null,"Настройки"],"Two months":[null,"Два месяца"],"A month":[null,"Месяц"],"A week":[null,"Неделя"],"A day":[null,"День"],"No logs":[null,"Экспорт в CSV"],"Modules":[null,"Модули"],"Export to CSV":[null,""],"Delete All":[null,"Удалить все"],"Redirection Log":[null,"Журнал перенаправлений"],"optional":[null,"не обязательно"],"Description":[null,"Описание"],"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.":[null,"Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress"],"Add Group":[null,"Добавить группу"],"Search":[null,"Поиск"],"Groups":[null,"Группы"],"Save":[null,"Сохранить"],"Add Redirection":[null,"Добавить перенаправление"],"Group":[null,"Группа"],"Regular expression":[null,"Регулярное выражение"],"Action":[null,"Действие"],"Match":[null,"Совпадение"],"Your redirection has been added.":[null,"Ваше правило перенаправления добавлено."],"Add new redirection":[null,"Добавить новое перенаправление"],"Cancel":[null,"Отмена"],"Download":[null,"Скачать"],"Sorry, but your redirection was not created":[null,"Извините, перенаправление не было создано"],"Unable to perform action":[null,"Невозможно совершить действие"],"No items were imported":[null,"Ничего не импортировано"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d перенаправление было успешно импортировано","%d перенаправления были успешно импортированы",""],"Your options were updated":[null,"Ваши настройки были обновлены"],"Redirection":[null,"Перенаправления"],"Settings":[null,"Настройки"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Редирект через WordPress. Дополнительная конфигурация не требуется и можно отслеживать количество переходов"],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Используется с вебсервером NGINX, требуется ручная конфигурация. Редирект происходит без загрузки WordPress. Количество переходов не отслеживается. Это экспериментальный модуль"],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Автоматически удалять или добавлять WWW к вашему сайту"],"Default server":[null,"Сервер по умолчанию"],"Canonical URL":[null,"Канонические URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,"Расположение .htaccess"],"Do nothing":[null,"Ничего не делать"],"Error (404)":[null,"Ошибка 404"],"Pass-through":[null,"Транзит (pass-through)"],"Redirect to random post":[null,"Перенаправить на случайную запись"],"Redirect to URL":[null,"Перенаправить на URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Непозвожно добавить новое перенаправление, удалите Redirection из страницы настроек и переустановите"],"Invalid source URL when creating redirect for given match type":[null,"Неверный исходный URL при создании перенаправления для заданного типа"],"Invalid group when creating redirect":[null,"Неверная группа при создании перенаправления"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Можно перенаправлять только с относительного URL (<code>%s</code>) для этого домена (<code>%s</code>)."],"Source and target URL must be different":[null,"Исходный и целевой URL должны отличаться"],"Configure":[null,"Настроить"],"Show only this IP":[null,"Показать только этот IP"],"IP":[null,"IP"],"Source URL":[null,"URL источника"],"Date":[null,"Дата"],"Add Redirect":[null,""],"All modules":[null,"Все модули"],"View Redirects":[null,"Посмотреть перенаправления"],"Module":[null,"Модуль"],"Redirects":[null,"Перенаправления"],"Name":[null,"Название"],"Filter":[null,"Фильтр"],"No group filter":[null,"Без группового фильтра"],"Reset Hits":[null,"Обнулить счетчик"],"Enable":[null,"Включено"],"Disable":[null,"Отключено"],"Delete":[null,"Удалить"],"Edit":[null,"Изменить"],"Last Access":[null,"Последний"],"Hits":[null,"Счетчик"],"URL":[null,"URL"],"Type":[null,"Тип"],"Modified Posts":[null,"Измененные записи"],"Redirections":[null,"Перенаправления"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Посетитель будет перенаправлен при совпадении User-Agent. Вы можете определить различные целевые URL при совпадении или не совпадении. Если оставить поле пустым, то посетитель никуда перенаправляться не будет. <strong>Все условия вводятся как регулярные выражения</strong>.\n"],"User Agent":[null,"User-Agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL и User-Agent"],"Target URL":[null,"URL назначения"],"URL only":[null,"Только URL"],"Not matched":[null,"Не совпадают"],"Matched":[null,"Совпадают"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Посетитель будет перенапрвлен на URL источника при совпадении реферера. Вы можете определить различные целевые URL при совпадении и не совпадении. Если оставить поле пустым, посетитель никуда перенаправляться не будет."],"HTTP Code":[null,"Код HTTP"],"Regex":[null,"Регулярное выражение"],"Referrer":[null,"Реферер"],"URL and referrer":[null,"URL и реферер"],"Logged Out":[null,"Разлогинен"],"Logged In":[null,"Залогинен"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Будет выбран один из следующих URL-адресов в зависимости от того, войдет пользователь в систему или нет. Если оставить поле пустым - пользователь перенаправляться не будет."],"URL and login status":[null,"URL и статус входа"]}
locale/json/redirection-sk_SK.json ADDED
@@ -0,0 +1 @@
 
1
+ {"":{"po-revision-date":"2016-06-15 09:49:02+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","x-generator":"GlotPress/2.4.0-alpha","language":"sk","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Rozšírené nastavenia"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Spravujte všetky vaše 301 presmerovania a monitorujte 404 chyby"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,""],"Support":[null,"Podpora"],"404s":[null,"404"],"404s from %s":[null,"404 z %s"],"Log":[null,"Záznam"],"Delete Redirection":[null,"Vymazať presmerovanie"],"Upload":[null,"Nahrať"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Import"],"Update":[null,"Aktualizovať"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Automatické generovanie URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Nesledovať"],"Monitor changes to posts":[null,"Sledovať zmeny v článkoch"],"404 Logs":[null,"Zaznamenávanie 404"],"(time to keep logs for)":[null,"(ako dlho uchovávať záznamy)"],"Redirect Logs":[null,"Zaznamenávanie presmerovaní"],"I'm a nice person and I have helped support the author of this plugin":[null,"Som dobrý človek a podporil som autora tohto modulu"],"Plugin support":[null,""],"Options":[null,"Možnosti"],"Two months":[null,"Dva mesiace"],"A month":[null,"Mesiac"],"A week":[null,"Týždeň"],"A day":[null,"Deň"],"No logs":[null,"Žiadne zaznamenávanie"],"Modules":[null,"Moduly"],"Export to CSV":[null,""],"Delete All":[null,"Vymazať všetko"],"Redirection Log":[null,"Záznamy presmerovaní"],"optional":[null,"voliteľné"],"Description":[null,"Popis"],"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.":[null,"Používajte skupiny na organizovanie presmerovaní. Skupiny sú priradené k modulu, ktorý určuje, ako budú presmerovania v tejto skupine fungovať. Ak si nie ste istí, držte sa WordPress modulu."],"Add Group":[null,"Pridať typ údaju"],"Search":[null,"Hľadať"],"Groups":[null,"Skupiny"],"Save":[null,"Uložiť"],"Add Redirection":[null,"Pridať presmerovanie"],"Group":[null,"Skupina"],"Regular expression":[null,"Regulárny výraz"],"Action":[null,"Akcia"],"Match":[null,"Zhoda"],"Your redirection has been added.":[null,"Vaše presmerovanie bolo pridané."],"Add new redirection":[null,"Pridať nové presmerovanie"],"Cancel":[null,"Zrušiť"],"Download":[null,"Stiahnuť"],"Sorry, but your redirection was not created":[null,"Prepáčte, presmerovanie nebolo vytvorené"],"Unable to perform action":[null,"Nie je možné vykonať akciu"],"No items were imported":[null,"Žiadne položky neboli importované"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d presmerovanie bolo úspešne importované","%d presmerovania boli úspešne importované","%d presmerovaní bolo úspešne importovaných"],"Your options were updated":[null,"Vaše možnosti boli aktualizované"],"Redirection":[null,"Presmerovanie"],"Settings":[null,"Nastavenia"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Presmerovania podporované WordPress-om. Nevyžaduje žiadnu ďalšiu konfiguráciu a viete sledovať aj štatistiky."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Pre použitie s Nginx servermi vyžaduje manuálnu konfiguráciu. Presmerovania nastanú bez načítania WordPress-u. Nesleduje štatistiky. Toto je experimentálny modul."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Automaticky pridať alebo odstrániť www k vašej webovej stránke."],"Default server":[null,""],"Canonical URL":[null,""],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess umiestnenie"],"Do nothing":[null,"Nerobiť nič"],"Error (404)":[null,"Chyba (404)"],"Pass-through":[null,""],"Redirect to random post":[null,"Presmerovať na náhodný článok"],"Redirect to URL":[null,"Presmerovať na URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Nemožno pridať nové presmerovanie - zmažte Presmerovanie zo stránky modulov a preinštalujte"],"Invalid source URL when creating redirect for given match type":[null,"Neplatná zdrojová URL adresa pri vytváraní presmerovania pre daný typ zhody"],"Invalid group when creating redirect":[null,"Neplatná skupina pri vytváraní presmerovania"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Môžete presmerovať len z relatívnych URL adries (<code>%s</code>) na tejto dómene (<code>%s</code>)."],"Source and target URL must be different":[null,"Zdrojová a cieľová URL musia byť odlišné"],"Configure":[null,"Konfigurácia"],"Show only this IP":[null,"Ukázať len túto IP adresu"],"IP":[null,"IP"],"Source URL":[null,"Zdrojová URL"],"Date":[null,"Dátum"],"Add Redirect":[null,""],"All modules":[null,"Všetky moduly"],"View Redirects":[null,"Zobraziť presmerovania"],"Module":[null,"Modul"],"Redirects":[null,"Presmerovania"],"Name":[null,"Názov"],"Filter":[null,"Filtrovať"],"No group filter":[null,"Všetky skupiny"],"Reset Hits":[null,"Resetovať štatistiky"],"Enable":[null,"Povoliť"],"Disable":[null,"Zakázať"],"Delete":[null,"Vymazať"],"Edit":[null,"Upraviť"],"Last Access":[null,"Posledný prístup"],"Hits":[null,"Štatistika"],"URL":[null,"URL"],"Type":[null,"Typ"],"Modified Posts":[null,"Upravené články"],"Redirections":[null,"Presmerovania"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Návštevník bude presmerovaný z URL ak sa zhoduje agent používateľa (user agent). Môžete špecifikovať <em>zhodujúcu sa</em> cieľovú URL ako adresu kam presmerovať návštevníka, ak sa agent používateľa zhoduje. A <em>nezhodujúce sa</em> ak sa nezhoduje. Ak necháte URL prázdne, návštevník nebude presmerovaný. <strong>Všetky zhody sú vyhodnocované ako regulárne výrazy</strong>.\n\n"],"User Agent":[null,"Agent používateľa (user agent)"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL a agent používateľa (user agent)"],"Target URL":[null,"Cieľová URL"],"URL only":[null,"Len URL"],"Not matched":[null,"Nezhodná"],"Matched":[null,"Zhodná"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Návštevník bude presmerovaný zo zdrojovej URL adresy ak sa referrer zhoduje. Môžete špecifikovať <em>zhodnú</em> cieľovú URL adresu ako adresu, kam posielate návštevníkov ak sa údaje zhodujú. Alebo <em>nezhodnú</em> ak sa nezhodujú. Ponechaním prázdneho poľa URL znamená, že návštevník nie je presmerovaný."],"HTTP Code":[null,"HTTP kód"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL a referrer"],"Logged Out":[null,"Odhlásený"],"Logged In":[null,"Prihlásený"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Cieľová URL bude zvolená z nasledujúcich URL adries na základe toho, či používateľ je prihlásený alebo nie. Ak necháte URL prázdne, používateľ nebude presmerovaný."],"URL and login status":[null,"URL a status prihlásenia"]}
locale/json/redirection-tr_TR.json CHANGED
@@ -1 +1 @@
1
- {"":{"project-id-version":"Redirect","report-msgid-bugs-to":"","pot-creation-date":"2009-02-23 20:25-0300","po-revision-date":"","last-translator":"Fatih Cevik <fatihdu77@gmail.com>","language-team":"wpp.pp.ua <wordpress.ua@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Ukrainian","x-poedit-country":"UKRAINE","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"c:/temp/redirection/","x-poedit-keywordslist":"__;_e"},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">Bu kaynağa ulaşma hakkınız yoktur.</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">Bu işlem tanımsızdır.</p>"],"Sorry, but your redirection was not created":[null,"Üzgünüm, yönlendirileceğiniz alan oluşturulmamıştır."],"Failed to retrieve group data":[null,"Grup bilgisi alınırken hata oluştu"],"Failed to retrieve module data":[null,"Modüle bilgisi alınırken hata oluştu"],"How many widgets would you like?":[null,"Kaç tane bileşen istiyorsunuz?"],"Save":[null,"Kaydet"],"Redirection Help":[null,"Redirection Yardım"],"Redirection Documentation":[null,"Redirection Yardım Dosyaları"],"Redirection Support Forum":[null,"Redirection Yardım Forumu"],"Redirection Bug Tracker":[null,"Redirection Hata Ayıklayıcısı"],"Redirection FAQ":[null,"Redirection S.S.S"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Lütfen, soru sormadan önce Redirection Yardım Dosyaları, Sıkça Sorulan Sorular(S.S.S) ve Hata Ayıklayıcıyı inceleyiniz."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Modülünüz başarıyla oluşturuldu"],"Your module was not created - did you provide a name?":[null,"Modülünüz oluşturulamadı, isim yazdığınızdan emin misiniz?"],"Your options were updated":[null,"Ayarlarınız güncellendi"],"Redirection data has been deleted and the plugin disabled":[null,"Redirection bilgileri silindi ve eklenti etkisizleştirildi"],"No items were imported":[null,"Hiçbir eleman içeri aktarılmadı"],"Your logs have been deleted":[null,"İşlem geçmişiniz kaydedildi"],"Your group was added successfully":[null,"Grup başarıyla kaydedildi"],"Please specify a group name":[null,"Lütfen bir grup ismi belirtiniz"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s aktarıldığı tarih %s в %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"İçeri XML aktarmak sadece PHP5 ile yapılabilir, sizde ise PHP4 bulunmaktadır."],"URL and login status":[null,"URL ve giriş bilgileri"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Hedef URL, sıradaki URL'lerin içinden seçilecek, ve kullanıcının giriş yapıp yapmamış olmasına göre değişiklik gösterir. Boş bir URL yazmak ise kullanıcının yönlendirilmeyeceği anlamına gelir."],"Logged In":[null,"Giriş Yapıldı"],"Logged Out":[null,"Çıkış Yapıldı"],"URL and referrer":[null,"URL ve ziyaretçi gönderen"],"Referrer":[null,"Ziyaretçi gönderen"],"Regex":[null,"Regex"],"HTTP Code":[null,"HTTP Kodu"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Ziyaretçi yönlendirmede eşleşme oluyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir."],"Matched":[null,"Karşılaştırıldı"],"Not matched":[null,"Karşılaştırılamadı"],"URL only":[null,"Yalnız URL"],"Target URL":[null,"Hedef URL"],"URL and user agent":[null,"URL ve kullanıcı bilgileri"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Kullanıcı Bilgileri"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Ziyaretçi kullanıcı arayüzü eşleşiyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir. <strong>Tüm karşılaştırmalarda düzenli ifadeler olarak uygulanmaktadır.</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"404 Hataları"],"Redirections":[null,"Yönlendirmeler"],"Modified posts":[null,"Değiştirilmiş Yazı"],"Strip WWW":[null,"Kes WWW"],"Force WWW":[null,"Zorlama WWW"],"Strip index.php":[null,"Kes index.php"],"Previous":[null,"Geri"],"Next":[null,"İleri"],"%d per-page":[null,"%d sayfa-basi"],"Displaying %s&#8211;%s of %s":[null,"Gösterilen %s&#8211;%s of %s"],"Redirect to URL":[null,"URL'ye Yönlendir"],"Redirect to random post":[null,"Rastgele bir yazıya yönlendir"],"Pass-through":[null,"Doğrudan"],"Error (404)":[null,"Hata (404)"],"Do nothing":[null,"Hiçbir şey yapma"],"Log 404s":[null,"404 Kayıtları"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Aktif değil: Kullanmadan önce aktif etmelisiniz <a href=\"options-permalink.php\">kalıcı bağlantılar</a></strong>"],"<small>No options have been set</small>":[null,"<small>Hiçbir özellik ayarlanmadı</small>"],"Location":[null,"Yer"],"WordPress is installed in: <code>%s</code>":[null,"WordPress yüklendi: <code>%s</code>"],"Canonical":[null,"Yasal"],"Leave as is":[null,"Olduğu gibi bırak"],"Strip WWW (%s)":[null,"Parçala WWW (%s)"],"Force WWW (www.%s)":[null,"Zorlama WWW (www.%s)"],"Strip Index":[null,"Parçala Index"],"Strip index files (html,php)":[null,"Anasayfa dosyalarını parçala (html, php)"],"Memory Limit":[null,"Hafıza Limiti"],"Server default":[null,"Varsayılan sunucu"],"Error Level":[null,"Hata Derecesi"],"No errors":[null,"Hiçbir hata yok"],"Show errors":[null,"Hataları göster"],"Ban IPs":[null,"IP'yi Engelle"],"Allow IPs":[null,"IP'ye İzin ver"],"Raw .htaccess":[null,"Değiştirilmemiş .htaccess"],"Site URL":[null,"Site URL"],"Advanced: For management of external sites":[null,"Gelişmiş: Harici sitelerin yönetimi için"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Adres geçersiz - adresin var olup olmadığını kontrol ediniz</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Yapılandırılmış <code>.htaccess</code> dosyasının üzerine yazamaszınız. Lütfen dosya kullanım izinlerini kontrol ediniz.</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Aktif değil: aktif olabilmesi için herhangi bir <code>.htaccess</code> dosyasının adresini giriniz.</strong>"],"strip WWW":[null,"parçala WWW"],"force WWW":[null,"zorlama WWW"],"strip index":[null,"parçala index"],"memory limit at %dMB":[null,"hafıza limiti %dMB"],"no errors":[null,"hatasız"],"show errors":[null,"hataları göster"],"IPs are banned":[null,"IP'ler engellendi"],"IPs are allowed":[null,"IP'lere izin verildi"]," for external site: <code>%s</code>":[null,"başka bir site için: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Index dosyasını parçala (html,php,asp)"],"30 seconds":[null,"30 saniye"],"1 minute":[null,"1 dakika"],"2 minutes":[null,"2 dakika"],"5 minutes":[null,"5 dakika"],"As long as possible":[null,"Mümkün olduğu sürece"],"time limit set as long as possible":[null,"zaman limitini olabildiğince en büyüğe ayarla"],"time limit at %ss":[null,"zaman limiti %ss"],"Add new redirection":[null,"Yeni yönlendirme ekle"],"Your redirection has been added.":[null,"Yeni yönlendirmeniz eklenmiştir."],"Source URL":[null,"Kaynak URL"],"Match":[null,"Karşılaştır"],"Action":[null,"İşlem"],"Regular expression":[null,"Düzenli İfadeler"],"Group":[null,"Grup"],"Add Redirection":[null,"Yönlendirme Ekle"],"Name":[null,"İsim"],"Tracked":[null,"İzlendi"],"Whether to track 'hits' to items":[null,"Nesnenin izlenip izlenmediği"],"Enabled":[null,"Aktif"],"Disabling a group will disable all items contained within it":[null,"Bir grubu etkisizleştirmek, grup içindeki bütün elemanları etkisiz hâle getirir."],"Cancel":[null,"İptal"],"edit group":[null,"grup düzenle"],"disabled":[null,"aktif değil"],"Groups for module":[null,"Grup için modül"],"Module":[null,"Modüle"],"Search":[null,"Ara"],"go":[null,"git"],"Hits":[null,"Hitler"],"Select All":[null,"Hepsini Seç"],"Toggle":[null,"Bağla"],"Reset Hits":[null,"Hitleri Sıfırla"],"Delete":[null,"Sil"],"Move To":[null,"Taşı"],"re-order":[null,"tekrar sırala"],"save order":[null,"sıralamayı kaydet"],"You have no groups in this module.":[null,"Bu modüle altında hiçbir grup bulunmamaktadır."],"Add Group":[null,"Yeni Grup Ekle"],"Add":[null,"Ekle"],"Please wait...":[null,"Lütfen bekleyiniz..."],"Are you sure?":[null,"Emin misiniz?"],"No items have been selected":[null,"Hiçbir eleman seçilmemiştir"],"%s by matching %s":[null,"%s karsilik gelen %s"],"Title":[null,"Başlık"],"optional":[null,"Opsiyonal"],"Redirections for group":[null,"Gruplar için yönlendirme"],"Go":[null,"Git"],"Last Access":[null,"Son Giriş"],"Type":[null,"Tür"],"URL":[null,"URL"],"Position":[null,"Pozisyon"],"You have no redirections.":[null,"Hiçbir yönlendirmeniz bulunmamaktadır."],"Redirection Log":[null,"Yönlendirme Kayıtları"],"Bulk Actions":[null,"Toplu İşlem"],"Apply":[null,"Uygula"],"Filter":[null,"Filtrele"],"Date":[null,"Tarih"],"IP":[null,"IP"],"There are no logs to display!":[null,"Gösterilecek başka kayıt bulunmamaktadır!"],"Process Current Logs":[null,"Güncel Kayıtlara Uygula"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Bu işlem bütün güncel kayıtlara uygulanacaktır.(mesela, arama yaparken kullandığınız cümle, diğer kayıtlara sınırlama getirecektir.)"],"Delete Logs":[null,"Kayıtları Sil"],"Export to CSV":[null,"CSV'ye aktar"],"Redirect to":[null,"Buraya yönlendir"],"Redirected by":[null,"Tarafından yönlendirildi"],"for":[null,"/"],"View as":[null,"Olarak görüntüle"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"düzenle"],"delete":[null,"sil"],"reset":[null,"sıfırla"],"Modules":[null,"Modüller"],"Details":[null,"Detaylar"],"Groups":[null,"Gruplar"],"Items":[null,"Elemanlar"],"Operations":[null,"Operasyonlar"],"Note: Hits are dependant on log entries":[null,"Not: Hitler, giriş kayıtlarına göre değişiklik gösterir."],"You have no modules defined yet":[null,"Henüz, tanımlı bir modülünüz bulunmamaktadır"],"Add Module":[null,"Modüle Ekle"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Bu modül yönlendirmelerin nasıl ele alınacağını belirleyen bir kontrol unsurudur. WordPress modülünde elementin WordPress tarafından işlendiğini, bir Apache modülü içindeki elemanların<code>.htaccess</code> tarafından nasıl ele alındığını ve 404 modülü içindeki elementlerin nasıl etkileşim gösterdiği kayıt edilir."],"Create":[null,"Oluştur"],"Options":[null,"Ayarlar"],"Auto-generate URL":[null,"URL'yi otomatik oluştur"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Eğer URL adresi girmemişseniz, bu URL otomatik oluşturulmuş bir URL olarak kullanılacaktır. Etiketlerin karışmaması için $dec$ veya $hex$ gibi özel etiketler kullanabilirsiniz."],"IP Lookup Service":[null,"IP Arama Servisi"],"Plugin Support":[null,"Plugin'i Destekle"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ben iyi birisiyim ve bu eklentiyi yazan kişiyi desteklemeliyim."],"Expire Logs":[null,"Kayıtları Sonlandır"],"days (enter 0 for no expiry)":[null,"gün (sınırsız olması için 0 giriniz)"],"RSS Token":[null,"Alınan RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Sadece tek bir besleme okuyucuya Redirection'un RSS adresini okuma izni vardır. (Otomatik belirlenmesi için bos bırakınız)"],"URL Monitoring":[null,"URL Takibi"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Redirection'un otomatik olarak tespit ettiği URL'leri ve belirlenmiş URL gruplarını görebilirsiniz."],"Post &amp; Page URLs":[null,"Yazı &amp; Sayfa URLleri"],"Don't monitor":[null,"URL Takip etme"],"Monitor new posts":[null,"Yeni yazıları takip et"],"Category URLs":[null,"URL'leri kategorize et"],"Update":[null,"Güncelle"],"Import":[null,"Aktar"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Burada, daha önce oluşturulmuş bir .htaccess dosyası, CSV dosyası veya XML Yönlendirme dosyasından içeri bilgi aktarabilirsiniz."],"Import into":[null,"İçeri Aktar"],"Upload":[null,"Yükle"],"Note that the group is ignored when uploading an XML file.":[null,"Grup, bir XML dosyası yüklemesine açık değildir."],"Delete Redirection":[null,"Yönlendirmeyi sil"],"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.":[null,"Bu özelliği seçmek bütün yönlendirmeleri, kayıtları ve Redirection eklentisiyle ilgili bütün ayarları silecektir. Lütfen, bunu yapmak istediğinizden emin olunuz."],"Redirects":[null,"Yönlendirmeler"],"Log":[null,"Kayıtlar"],"Redirection Support":[null,"Redirection Destek"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"Redirection'u geliştirmek için çok büyük zaman ve çaba harcandı. Eğer <strong>8$'lik bir bağışta</strong> bulunursanız benim için cok faydalı olacaktır. Bu sayede plugin'i geliştirmeye devam edecek ve sizlere daha iyisini sunmaya çalışacağım. Teşekkürler."],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"Alternatif olarak, eğer birçok dil konuşabiliyorsanız. Bu plugin'i başka dillere çevirebilirsiniz. Bütün gerekli bilgileri de şu adreste ki yazımda açıkladım.<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">Buraya tıklayın.</a>"],"Other plugins":[null,"Diğer eklentiler"],"You may also be interested in some of my other plugins:":[null,"Belki yaptığım diğer plugin'ler ilginizi çekebilir:"],"HeadSpace":[null,"Headspace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"Wordpres için eksiksiz en iyi SEO meta-data yöneticisi ve ultra amaçlı bir plugin."],"Search Unleashed":[null,"Arama kısıtlandı"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"Etkileyici aramalar Wordpress arama özelliğini daha cazip kılar ve sitenin kullanılırlığını büyük ölçüde arttırır."],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"çok esnek ve güçlü yazı ekleme fonksiyonlarını içeriyor ve istediğiniz her yazıyı ekleme olanağı sunuyor."],"This notice will only be shown at periodic intervals.":[null,"Bu uyarı sadece periyodik aralıklarla gösterilecektir."]}
1
+ {"":{"po-revision-date":"2017-02-21 12:07:48+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=(n > 1);","x-generator":"GlotPress/2.4.0-alpha","language":"tr","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"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!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"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.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"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.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Genel Ayarlar"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Tüm 301 yönlendirmelerinizi yönetin ve 404 hatalarını görüntüleyin"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"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}}.":[null,""],"Redirection Support":[null,"Redirection Destek"],"Support":[null,"Destek"],"404s":[null,"404'ler"],"404s from %s":[null,""],"Log":[null,"Kayıtlar"],"Delete Redirection":[null,"Yönlendirmeyi sil"],"Upload":[null,"Yükle"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Aktar"],"Update":[null,"Güncelle"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"URL'yi otomatik oluştur"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"Alınan RSS"],"Don't monitor":[null,"URL Takip etme"],"Monitor changes to posts":[null,""],"404 Logs":[null,""],"(time to keep logs for)":[null,""],"Redirect Logs":[null,""],"I'm a nice person and I have helped support the author of this plugin":[null,"Ben iyi birisiyim ve bu eklentiyi yazan kişiyi desteklemeliyim."],"Plugin support":[null,"Eklenti desteği"],"Options":[null,"Ayarlar"],"Two months":[null,"İki ay"],"A month":[null,"Bir ay"],"A week":[null,"Bir hafta"],"A day":[null,"Bir gün"],"No logs":[null,""],"Modules":[null,"Modüller"],"Export to CSV":[null,"CSV'ye aktar"],"Delete All":[null,"Hepsini sil"],"Redirection Log":[null,"Yönlendirme Kayıtları"],"optional":[null,"Opsiyonal"],"Description":[null,"Açıklama"],"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.":[null,""],"Add Group":[null,"Yeni Grup Ekle"],"Search":[null,"Ara"],"Groups":[null,"Gruplar"],"Save":[null,"Kaydet"],"Add Redirection":[null,"Yönlendirme Ekle"],"Group":[null,"Grup"],"Regular expression":[null,"Düzenli İfadeler"],"Action":[null,"İşlem"],"Match":[null,"Karşılaştır"],"Your redirection has been added.":[null,"Yeni yönlendirmeniz eklenmiştir."],"Add new redirection":[null,"Yeni yönlendirme ekle"],"Cancel":[null,"İptal"],"Download":[null,"İndir"],"Sorry, but your redirection was not created":[null,"Üzgünüm, yönlendirileceğiniz alan oluşturulmamıştır."],"Unable to perform action":[null,""],"No items were imported":[null,"Hiçbir eleman içeri aktarılmadı"],"%d redirection was successfully imported":["%d redirections were successfully imported","",""],"Your options were updated":[null,"Ayarlarınız güncellendi"],"Redirection":[null,"Redirection"],"Settings":[null,"Ayarlar"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Siteye otomatik olarak www ekle ya da kaldır."],"Default server":[null,"Varsayılan sunucu"],"Canonical URL":[null,""],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress yüklendi: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess konumu"],"Do nothing":[null,"Hiçbir şey yapma"],"Error (404)":[null,"Hata (404)"],"Pass-through":[null,"Doğrudan"],"Redirect to random post":[null,"Rastgele bir yazıya yönlendir"],"Redirect to URL":[null,"URL'ye Yönlendir"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,""],"Invalid source URL when creating redirect for given match type":[null,""],"Invalid group when creating redirect":[null,""],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,""],"Source and target URL must be different":[null,"Kaynak ve hedef URL farklı olmalıdır"],"Configure":[null,""],"Show only this IP":[null,"Sadece bu IP'yi göster"],"IP":[null,"IP"],"Source URL":[null,"Kaynak URL"],"Date":[null,"Tarih"],"Add Redirect":[null,"Yönlendirme ekle"],"All modules":[null,""],"View Redirects":[null,"Yönlendirmeleri göster"],"Module":[null,"Modüle"],"Redirects":[null,"Yönlendirmeler"],"Name":[null,"İsim"],"Filter":[null,"Filtrele"],"No group filter":[null,""],"Reset Hits":[null,"Hitleri Sıfırla"],"Enable":[null,"Etkinleştir"],"Disable":[null,"Etkisizleştir"],"Delete":[null,"Sil"],"Edit":[null,"Düzenle"],"Last Access":[null,"Son Giriş"],"Hits":[null,"Hitler"],"URL":[null,"URL"],"Type":[null,"Tür"],"Modified Posts":[null,"Değiştirilmiş Yazılar"],"Redirections":[null,"Yönlendirmeler"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Ziyaretçi kullanıcı arayüzü eşleşiyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir. <strong>Tüm karşılaştırmalarda düzenli ifadeler olarak uygulanmaktadır.</strong>.\n"],"User Agent":[null,"Kullanıcı Bilgileri"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL ve kullanıcı bilgileri"],"Target URL":[null,"Hedef URL"],"URL only":[null,"Yalnız URL"],"Not matched":[null,"Karşılaştırılamadı"],"Matched":[null,"Karşılaştırıldı"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Ziyaretçi yönlendirmede eşleşme oluyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir."],"HTTP Code":[null,"HTTP Kodu"],"Regex":[null,"Regex"],"Referrer":[null,"Ziyaretçi gönderen"],"URL and referrer":[null,"URL ve ziyaretçi gönderen"],"Logged Out":[null,"Çıkış Yapıldı"],"Logged In":[null,"Giriş Yapıldı"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Hedef URL, sıradaki URL'lerin içinden seçilecek, ve kullanıcının giriş yapıp yapmamış olmasına göre değişiklik gösterir. Boş bir URL yazmak ise kullanıcının yönlendirilmeyeceği anlamına gelir."],"URL and login status":[null,"URL ve giriş bilgileri"]}
locale/redirection-ca.mo CHANGED
Binary file
locale/redirection-ca.po CHANGED
@@ -1,968 +1,782 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Redirect\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 20:25-0300\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Robert Buj <rbuj@wanadoo.es>\n"
8
- "Language-Team: Robert Buj <rbuj@wanadoo.es>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Catalan\n"
13
- "X-Poedit-Country: SPAIN\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-Basepath: c:/temp/redirection/\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
 
18
- #: c:/temp/redirection/ajax.php:51
19
- msgid "<p style=\"color: red\">You are not allowed access to this resource</p>"
20
- msgstr "<p style=\"color: red\">No esteu autoritzats per a accedir a aquest recurs</p>"
21
 
22
- #: c:/temp/redirection/ajax.php:59
23
- msgid "<p style=\"color: red\">That function is not defined</p>"
24
- msgstr "<p style=\"color: red\">Aquesta funció no està definida</p>"
25
 
26
- #: c:/temp/redirection/ajax.php:76
27
- msgid "Sorry, but your redirection was not created"
28
- msgstr "Ho sento, però la vostra redirecció no ha estat creada"
29
 
30
- #: c:/temp/redirection/ajax.php:234
31
- #: c:/temp/redirection/ajax.php:243
32
- #: c:/temp/redirection/ajax.php:270
33
- #: c:/temp/redirection/ajax.php:317
34
- #: c:/temp/redirection/ajax.php:332
35
- #: c:/temp/redirection/ajax.php:356
36
- msgid "Failed to retrieve group data"
37
- msgstr "S'ha produït un error a l'obtindre dades del grup"
38
 
39
- #: c:/temp/redirection/ajax.php:307
40
- msgid "Failed to retrieve module data"
41
- msgstr "Error a l'obtindre dades del módul"
42
 
43
- #: c:/temp/redirection/plugin.php:648
44
- msgid "How many widgets would you like?"
45
- msgstr "Quants widgets voleu?"
46
 
47
- #: c:/temp/redirection/plugin.php:655
48
- msgid "Save"
49
- msgstr "Desar"
50
 
51
- #: c:/temp/redirection/redirection.php:122
52
- msgid "Redirection Help"
53
- msgstr "Ajuda de Redirecció"
54
 
55
- #: c:/temp/redirection/redirection.php:123
56
- msgid "Redirection Documentation"
57
- msgstr "Documentació de Redirecció"
58
 
59
- #: c:/temp/redirection/redirection.php:124
60
- msgid "Redirection Support Forum"
61
- msgstr "Fòrum de suport de Redirecció"
62
 
63
- #: c:/temp/redirection/redirection.php:125
64
- msgid "Redirection Bug Tracker"
65
- msgstr "Seguiment d'errors de Redirecció"
66
 
67
- #: c:/temp/redirection/redirection.php:126
68
- msgid "Redirection FAQ"
69
- msgstr "Preguntes més freqüents de Redirecció"
70
 
71
- #: c:/temp/redirection/redirection.php:127
72
- msgid "Please read the documentation and FAQ, and check the bug tracker, before asking a question."
73
- msgstr "Si us plau, llegiu la documentació, el FAQ, i verifiqueu el registre d'errors, abans de realitzar una pregunta."
74
 
75
- #: c:/temp/redirection/redirection.php:186
76
- msgid "Redirection"
77
- msgstr "Redirecció"
78
 
79
- #: c:/temp/redirection/redirection.php:249
80
- msgid "Your module was successfully created"
81
- msgstr "Mòdul creat amb èxit"
82
 
83
- #: c:/temp/redirection/redirection.php:253
84
- msgid "Your module was not created - did you provide a name?"
85
- msgstr "El vostre mòdul no s'ha crat - heu proporcionat un nom?"
86
 
87
- #: c:/temp/redirection/redirection.php:317
88
- msgid "Your options were updated"
89
- msgstr "Les vostres opcions han estat actualitzades"
90
 
91
- #: c:/temp/redirection/redirection.php:326
92
- msgid "Redirection data has been deleted and the plugin disabled"
93
- msgstr "Les dades de redirecció ha estat eliminades i l'extensió deshabilitada"
94
 
95
- #: c:/temp/redirection/redirection.php:339
96
- msgid "No items were imported"
97
- msgstr "No s'han importat elements"
98
 
99
- #: c:/temp/redirection/redirection.php:359
100
- msgid "Your logs have been deleted"
101
- msgstr "S'han eliminat els vostres registres"
102
 
103
- #: c:/temp/redirection/redirection.php:385
104
- msgid "Your group was added successfully"
105
- msgstr "El vostre grup ha estat afegit correctament."
106
 
107
- #: c:/temp/redirection/redirection.php:389
108
- msgid "Please specify a group name"
109
- msgstr "Si us plau especifiqueu un nom pel grup"
110
 
111
- #: c:/temp/redirection/fileio/csv.php:21
112
- #, php-format
113
- msgid "module_%d.csv"
114
- msgstr "module_%d.csv"
 
115
 
116
- #: c:/temp/redirection/fileio/xml.php:32
117
- #, php-format
118
- msgid "module_%d.xml"
119
- msgstr "module_%d.xml"
120
 
121
- #: c:/temp/redirection/fileio/xml.php:105
122
- #, php-format
123
- msgid "%s imported on %s at %s"
124
- msgstr "%s importat el %s a %s"
125
 
126
- #: c:/temp/redirection/fileio/xml.php:168
127
- msgid "XML importing is only available with PHP5 - you have PHP4."
128
- msgstr "Importar per XML solament està disponible utilitzant PHP5 - vosté té PHP4."
129
 
130
- #: c:/temp/redirection/matches/login.php:25
131
- msgid "URL and login status"
132
- msgstr "Estat de l'URL i connexió"
133
 
134
- #: c:/temp/redirection/matches/login.php:32
135
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
136
- msgstr "La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."
137
 
138
- #: c:/temp/redirection/matches/login.php:37
139
- #: c:/temp/redirection/matches/login.php:39
140
- msgid "Logged In"
141
- msgstr "Identificat"
142
 
143
- #: c:/temp/redirection/matches/login.php:47
144
- #: c:/temp/redirection/matches/login.php:49
145
- msgid "Logged Out"
146
- msgstr "Desconnectat"
147
 
148
- #: c:/temp/redirection/matches/referrer.php:28
149
- msgid "URL and referrer"
150
- msgstr "URL i referent"
151
 
152
- #: c:/temp/redirection/matches/referrer.php:40
153
- msgid "Referrer"
154
- msgstr "Referent"
155
 
156
- #: c:/temp/redirection/matches/referrer.php:43
157
- msgid "Regex"
158
- msgstr "Expresió regular"
159
 
160
- #: c:/temp/redirection/matches/referrer.php:47
161
- #: c:/temp/redirection/matches/url.php:40
162
- #: c:/temp/redirection/matches/user_agent.php:56
163
- msgid "HTTP Code"
164
- msgstr "Codi HTTP"
165
 
166
- #: c:/temp/redirection/matches/referrer.php:57
167
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
168
- msgstr "El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."
169
 
170
- #: c:/temp/redirection/matches/referrer.php:63
171
- #: c:/temp/redirection/matches/referrer.php:65
172
- #: c:/temp/redirection/matches/user_agent.php:74
173
- #: c:/temp/redirection/matches/user_agent.php:76
174
- msgid "Matched"
175
- msgstr "Coincideix"
176
 
177
- #: c:/temp/redirection/matches/referrer.php:73
178
- #: c:/temp/redirection/matches/referrer.php:75
179
- #: c:/temp/redirection/matches/user_agent.php:84
180
- #: c:/temp/redirection/matches/user_agent.php:86
181
- msgid "Not matched"
182
- msgstr "No coincideix"
183
 
184
- #: c:/temp/redirection/matches/url.php:25
185
- msgid "URL only"
186
- msgstr "Solament URL"
187
 
188
- #: c:/temp/redirection/matches/url.php:32
189
- msgid "Target URL"
190
- msgstr "URL destí"
191
 
192
- #: c:/temp/redirection/matches/user_agent.php:27
193
- msgid "URL and user agent"
194
- msgstr "URL i agent d'usuari"
195
 
196
- #: c:/temp/redirection/matches/user_agent.php:33
197
- msgid "FeedBurner"
198
- msgstr "FeedBurner"
199
 
200
- #: c:/temp/redirection/matches/user_agent.php:34
201
- msgid "Internet Explorer"
202
- msgstr "Internet Explorer"
203
 
204
- #: c:/temp/redirection/matches/user_agent.php:35
205
- msgid "FireFox"
206
- msgstr "FireFox"
207
 
208
- #: c:/temp/redirection/matches/user_agent.php:36
209
- msgid "Opera"
210
- msgstr "Opera"
211
 
212
- #: c:/temp/redirection/matches/user_agent.php:37
213
- msgid "Safari"
214
- msgstr "Safari"
215
 
216
- #: c:/temp/redirection/matches/user_agent.php:38
217
- msgid "iPhone"
218
- msgstr "iPhone"
219
 
220
- #: c:/temp/redirection/matches/user_agent.php:39
221
- msgid "Nintendo Wii"
222
- msgstr "Nintendo Wii"
223
 
224
- #: c:/temp/redirection/matches/user_agent.php:44
225
- msgid "User Agent"
226
- msgstr "Agent d'usuari"
227
 
228
- #: c:/temp/redirection/matches/user_agent.php:67
229
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
230
- msgstr "El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"
231
 
232
- #: c:/temp/redirection/models/database.php:110
233
- #: c:/temp/redirection/models/module.php:168
234
- msgid "WordPress"
235
- msgstr "WordPress"
236
 
237
- #: c:/temp/redirection/models/database.php:111
238
- #: c:/temp/redirection/models/module.php:167
239
- msgid "Apache"
240
- msgstr "Apache"
241
 
242
- #: c:/temp/redirection/models/database.php:112
243
- #: c:/temp/redirection/models/module.php:169
244
- msgid "404 Errors"
245
- msgstr "Errore 404"
246
 
247
- #: c:/temp/redirection/models/database.php:118
248
- msgid "Redirections"
249
- msgstr "Redireccions"
250
 
251
- #: c:/temp/redirection/models/database.php:119
252
- msgid "Modified posts"
253
- msgstr "Entrades modificades"
254
 
255
- #: c:/temp/redirection/models/module.php:192
256
- msgid "Strip WWW"
257
- msgstr "Treure WWW"
258
 
259
- #: c:/temp/redirection/models/module.php:192
260
- msgid "Force WWW"
261
- msgstr "Forçar WWW"
262
 
263
- #: c:/temp/redirection/models/module.php:198
264
- msgid "Strip index.php"
265
- msgstr "Treure index.php"
266
 
267
- #: c:/temp/redirection/models/pager.php:402
268
- msgid "Previous"
269
- msgstr "Anterior"
270
 
271
- #: c:/temp/redirection/models/pager.php:403
272
- msgid "Next"
273
- msgstr "Següent"
274
 
275
- #: c:/temp/redirection/models/pager.php:461
276
- #, php-format
277
- msgid "%d per-page"
278
- msgstr "%d per pàgina"
279
 
280
- #: c:/temp/redirection/models/pager.php:470
281
- #, php-format
282
- msgid "Displaying %s&#8211;%s of %s"
283
- msgstr "Mostrant %s&#8211;%s de %s"
284
 
285
- #: c:/temp/redirection/models/redirect.php:387
286
- msgid "Redirect to URL"
287
- msgstr "Redirigir a URL"
288
 
289
- #: c:/temp/redirection/models/redirect.php:388
290
- msgid "Redirect to random post"
291
- msgstr "Redirigir a entrada aleatoria"
292
 
293
- #: c:/temp/redirection/models/redirect.php:389
294
- msgid "Pass-through"
295
- msgstr "Pasar directe"
296
 
297
- #: c:/temp/redirection/models/redirect.php:390
298
- msgid "Error (404)"
299
- msgstr "Error (404)"
300
 
301
- #: c:/temp/redirection/models/redirect.php:391
302
- msgid "Do nothing"
303
- msgstr "No fer res"
304
 
305
- #: c:/temp/redirection/modules/404.php:37
306
- msgid "Log 404s"
307
- msgstr "Registrar 404s"
308
-
309
- #: c:/temp/redirection/modules/404.php:46
310
- #: c:/temp/redirection/modules/wordpress.php:223
311
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
312
- msgstr "<strong>Deshabilitat: Heu d'habilitar <a href=\"options-permalink.php\">permalinks</a> abans d'utilitzar-lo</strong>"
313
-
314
- #: c:/temp/redirection/modules/404.php:57
315
- #: c:/temp/redirection/modules/wordpress.php:247
316
- msgid "<small>No options have been set</small>"
317
- msgstr "<small>No s'ha configurat cap opció</small>"
318
-
319
- #: c:/temp/redirection/modules/apache.php:65
320
- msgid "Location"
321
- msgstr "Lloc"
322
-
323
- #: c:/temp/redirection/modules/apache.php:70
324
- #, php-format
325
- msgid "WordPress is installed in: <code>%s</code>"
326
- msgstr "WordPress està instal·lat a: <code>%s</code>"
327
-
328
- #: c:/temp/redirection/modules/apache.php:75
329
- #: c:/temp/redirection/modules/wordpress.php:184
330
- msgid "Canonical"
331
- msgstr "Canònic"
332
-
333
- #: c:/temp/redirection/modules/apache.php:78
334
- #: c:/temp/redirection/modules/apache.php:84
335
- #: c:/temp/redirection/modules/wordpress.php:187
336
- #: c:/temp/redirection/modules/wordpress.php:192
337
- msgid "Leave as is"
338
- msgstr "Deixar como està"
339
-
340
- #: c:/temp/redirection/modules/apache.php:78
341
- #: c:/temp/redirection/modules/wordpress.php:187
342
- #, php-format
343
- msgid "Strip WWW (%s)"
344
- msgstr "Treure WWW (%s)"
345
-
346
- #: c:/temp/redirection/modules/apache.php:78
347
- #: c:/temp/redirection/modules/wordpress.php:187
348
- #, php-format
349
- msgid "Force WWW (www.%s)"
350
- msgstr "Forçar WWW (www.%s)"
351
-
352
- #: c:/temp/redirection/modules/apache.php:82
353
- msgid "Strip Index"
354
- msgstr "Treure Index"
355
-
356
- #: c:/temp/redirection/modules/apache.php:84
357
- msgid "Strip index files (html,php)"
358
- msgstr "Treure fitxers índex (html,php)"
359
-
360
- #: c:/temp/redirection/modules/apache.php:89
361
- msgid "Memory Limit"
362
- msgstr "Límit de memòria"
363
-
364
- #: c:/temp/redirection/modules/apache.php:92
365
- #: c:/temp/redirection/modules/apache.php:97
366
- #: c:/temp/redirection/modules/wordpress.php:200
367
- #: c:/temp/redirection/modules/wordpress.php:205
368
- msgid "Server default"
369
- msgstr "Predeterminat pel servidor"
370
-
371
- #: c:/temp/redirection/modules/apache.php:95
372
- msgid "Error Level"
373
- msgstr "Nivell d'error"
374
-
375
- #: c:/temp/redirection/modules/apache.php:97
376
- msgid "No errors"
377
- msgstr "Sense errors"
378
-
379
- #: c:/temp/redirection/modules/apache.php:97
380
- msgid "Show errors"
381
- msgstr "Mostrar errors"
382
-
383
- #: c:/temp/redirection/modules/apache.php:102
384
- msgid "Ban IPs"
385
- msgstr "Prohivir IPs"
386
-
387
- #: c:/temp/redirection/modules/apache.php:108
388
- msgid "Allow IPs"
389
- msgstr "Permetre IPs"
390
-
391
- #: c:/temp/redirection/modules/apache.php:114
392
- msgid "Raw .htaccess"
393
- msgstr ".htaccess cru"
394
-
395
- #: c:/temp/redirection/modules/apache.php:120
396
- msgid "Site URL"
397
- msgstr "URL del lloc"
398
-
399
- #: c:/temp/redirection/modules/apache.php:123
400
- msgid "Advanced: For management of external sites"
401
- msgstr "Avançado: Per a administración de llocs externs"
402
-
403
- #: c:/temp/redirection/modules/apache.php:138
404
- msgid "<strong>Location is invalid - check that path exists</strong>"
405
- msgstr "<strong>Localització incorrecta - verifiqueu que la ruta existeixi</strong>"
406
-
407
- #: c:/temp/redirection/modules/apache.php:144
408
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
409
- msgstr "<strong>No s'ha pogut escriure al fitxer <code>.htaccess</code> configurat - verifiqueu els permisos</strong>"
410
-
411
- #: c:/temp/redirection/modules/apache.php:151
412
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
413
- msgstr "<strong>Desabilitat: entreu l'ubicació del fitxer <code>.htaccess</code> per a que aixó sigui vàlid</strong>"
414
-
415
- #: c:/temp/redirection/modules/apache.php:156
416
- msgid "strip WWW"
417
- msgstr "treure WWW"
418
-
419
- #: c:/temp/redirection/modules/apache.php:156
420
- msgid "force WWW"
421
- msgstr "forçar www"
422
-
423
- #: c:/temp/redirection/modules/apache.php:159
424
- #: c:/temp/redirection/modules/wordpress.php:231
425
- msgid "strip index"
426
- msgstr "treure índex"
427
-
428
- #: c:/temp/redirection/modules/apache.php:162
429
- #, php-format
430
- msgid "memory limit at %dMB"
431
- msgstr "límit de memòria a: %dMB"
432
-
433
- #: c:/temp/redirection/modules/apache.php:165
434
- #: c:/temp/redirection/modules/wordpress.php:242
435
- msgid "no errors"
436
- msgstr "sense errors"
437
-
438
- #: c:/temp/redirection/modules/apache.php:165
439
- #: c:/temp/redirection/modules/wordpress.php:242
440
- msgid "show errors"
441
- msgstr "mostrar errors"
442
-
443
- #: c:/temp/redirection/modules/apache.php:168
444
- msgid "IPs are banned"
445
- msgstr "Es prohiveixen IPs"
446
-
447
- #: c:/temp/redirection/modules/apache.php:171
448
- msgid "IPs are allowed"
449
- msgstr "Es permeten IPs"
450
-
451
- #: c:/temp/redirection/modules/apache.php:179
452
- #, php-format
453
- msgid " for external site: <code>%s</code>"
454
- msgstr " per a un lloc extern: <code>%s</code>"
455
-
456
- #: c:/temp/redirection/modules/wordpress.php:192
457
- msgid "Strip index files (html,php,asp)"
458
- msgstr "Treure fitxers d'índex (html,php,asp)"
459
-
460
- #: c:/temp/redirection/modules/wordpress.php:200
461
- msgid "30 seconds"
462
- msgstr "30 segons"
463
-
464
- #: c:/temp/redirection/modules/wordpress.php:200
465
- msgid "1 minute"
466
- msgstr "1 minut"
467
-
468
- #: c:/temp/redirection/modules/wordpress.php:200
469
- msgid "2 minutes"
470
- msgstr "2 minuts"
471
-
472
- #: c:/temp/redirection/modules/wordpress.php:200
473
- msgid "5 minutes"
474
- msgstr "5 minuts"
475
-
476
- #: c:/temp/redirection/modules/wordpress.php:200
477
- msgid "As long as possible"
478
- msgstr "El màxim posible"
479
-
480
- #: c:/temp/redirection/modules/wordpress.php:236
481
- msgid "time limit set as long as possible"
482
- msgstr "límit de temps configurat com al màxim posible"
483
-
484
- #: c:/temp/redirection/modules/wordpress.php:238
485
- #, php-format
486
- msgid "time limit at %ss"
487
- msgstr "límit de temps a %ss"
488
-
489
- #: c:/temp/redirection/view/admin/add.php:3
490
- msgid "Add new redirection"
491
- msgstr "Afegir una nova redirecció"
492
 
493
- #: c:/temp/redirection/view/admin/add.php:6
494
- msgid "Your redirection has been added."
495
- msgstr "S'ha afegit la vostra redirecció"
496
 
497
- #: c:/temp/redirection/view/admin/add.php:12
498
- msgid "Source URL"
499
- msgstr "URL origen"
500
 
501
- #: c:/temp/redirection/view/admin/add.php:16
502
- msgid "Match"
503
- msgstr "Coincidència"
504
 
505
- #: c:/temp/redirection/view/admin/add.php:22
506
- msgid "Action"
507
- msgstr "Acció"
508
 
509
- #: c:/temp/redirection/view/admin/add.php:27
510
- msgid "Regular expression"
511
- msgstr "Expresió regular"
512
 
513
- #: c:/temp/redirection/view/admin/add.php:36
514
- msgid "Group"
515
- msgstr "Grup"
516
 
517
- #: c:/temp/redirection/view/admin/add.php:43
518
- msgid "Add Redirection"
519
- msgstr "Afegir Redirecció"
520
 
521
- #: c:/temp/redirection/view/admin/group_edit.php:6
522
- #: c:/temp/redirection/view/admin/group_list.php:31
523
- #: c:/temp/redirection/view/admin/group_list.php:93
524
- #: c:/temp/redirection/view/admin/module_edit.php:17
525
- #: c:/temp/redirection/view/admin/module_list.php:37
526
- msgid "Name"
527
- msgstr "Nom"
528
 
529
- #: c:/temp/redirection/view/admin/group_edit.php:10
530
- msgid "Tracked"
531
- msgstr "Seguiment"
532
 
533
- #: c:/temp/redirection/view/admin/group_edit.php:11
534
- msgid "Whether to track 'hits' to items"
535
- msgstr "Ja sigui per fer un seguiment de visites als elements"
536
 
537
- #: c:/temp/redirection/view/admin/group_edit.php:14
538
- msgid "Enabled"
539
- msgstr "Habilitat"
540
 
541
- #: c:/temp/redirection/view/admin/group_edit.php:15
542
- msgid "Disabling a group will disable all items contained within it"
543
- msgstr "Deshablitar un grup deshabilita tots els elements que es troben dins del mateix"
544
 
545
- #: c:/temp/redirection/view/admin/group_edit.php:21
546
- #: c:/temp/redirection/view/admin/item_edit.php:28
547
- #: c:/temp/redirection/view/admin/module_edit.php:27
548
- msgid "Cancel"
549
- msgstr "Cancel·lar"
550
 
551
- #: c:/temp/redirection/view/admin/group_item.php:4
552
- msgid "edit group"
553
- msgstr "editar grup"
554
 
555
- #: c:/temp/redirection/view/admin/group_item.php:20
556
- #: c:/temp/redirection/view/admin/item.php:27
557
- msgid "disabled"
558
- msgstr "deshabilitat"
559
 
560
- #: c:/temp/redirection/view/admin/group_list.php:2
561
- msgid "Groups for module"
562
- msgstr "Grups per mòdul"
563
 
564
- #: c:/temp/redirection/view/admin/group_list.php:10
565
- #: c:/temp/redirection/view/admin/log.php:34
566
- msgid "Module"
567
- msgstr "Mòdul"
568
 
569
- #: c:/temp/redirection/view/admin/group_list.php:15
570
- #: c:/temp/redirection/view/admin/item_list.php:18
571
- #: c:/temp/redirection/view/admin/log.php:12
572
- #: c:/temp/redirection/view/admin/log.php:19
573
- msgid "Search"
574
- msgstr "Cercar"
575
 
576
- #: c:/temp/redirection/view/admin/group_list.php:20
577
- msgid "go"
578
- msgstr "començar"
579
 
580
- #: c:/temp/redirection/view/admin/group_list.php:30
581
- #: c:/temp/redirection/view/admin/item_list.php:31
582
- #: c:/temp/redirection/view/admin/module_list.php:12
583
- msgid "Hits"
584
- msgstr "Hits"
585
 
586
- #: c:/temp/redirection/view/admin/group_list.php:53
587
- #: c:/temp/redirection/view/admin/item_list.php:56
588
- msgid "Select All"
589
- msgstr "Seleccionar-ho tot"
590
 
591
- #: c:/temp/redirection/view/admin/group_list.php:54
592
- #: c:/temp/redirection/view/admin/item_list.php:57
593
- msgid "Toggle"
594
- msgstr "Desactivar/Activar"
595
 
596
- #: c:/temp/redirection/view/admin/group_list.php:55
597
- #: c:/temp/redirection/view/admin/item_list.php:58
598
- msgid "Reset Hits"
599
- msgstr "Reiniciar Hits"
600
 
601
- #: c:/temp/redirection/view/admin/group_list.php:56
602
- #: c:/temp/redirection/view/admin/item_list.php:59
603
- #: c:/temp/redirection/view/admin/log.php:26
604
- #: c:/temp/redirection/view/admin/options.php:105
605
- msgid "Delete"
606
- msgstr "Eliminar"
 
 
 
 
 
 
 
 
 
607
 
608
- #: c:/temp/redirection/view/admin/group_list.php:58
609
- #: c:/temp/redirection/view/admin/item_list.php:61
610
- msgid "Move To"
611
- msgstr "Moure a"
612
 
613
- #: c:/temp/redirection/view/admin/group_list.php:68
614
- #: c:/temp/redirection/view/admin/item_list.php:72
615
- msgid "re-order"
616
- msgstr "re-ordenar"
617
 
618
- #: c:/temp/redirection/view/admin/group_list.php:69
619
- #: c:/temp/redirection/view/admin/item_list.php:73
620
- msgid "save order"
621
- msgstr "desar ordre"
622
 
623
- #: c:/temp/redirection/view/admin/group_list.php:82
624
- msgid "You have no groups in this module."
625
- msgstr "No teniu grups en aquest mòdul."
 
 
 
 
626
 
627
- #: c:/temp/redirection/view/admin/group_list.php:87
 
 
 
 
628
  msgid "Add Group"
629
  msgstr "Afegir grup"
630
 
631
- #: c:/temp/redirection/view/admin/group_list.php:98
632
- msgid "Add"
633
- msgstr "Afegir"
634
 
635
- #: c:/temp/redirection/view/admin/head.php:4
636
- msgid "Please wait..."
637
- msgstr "Si us plau, espereu..."
638
 
639
- #: c:/temp/redirection/view/admin/head.php:7
640
- msgid "Are you sure?"
641
- msgstr "Esteu segurs?"
642
 
643
- #: c:/temp/redirection/view/admin/head.php:8
644
- msgid "No items have been selected"
645
- msgstr "No s'han seleccionat elements"
646
 
647
- #: c:/temp/redirection/view/admin/item_edit.php:3
648
- #, php-format
649
- msgid "%s by matching %s"
650
- msgstr "%s per coincidència amb %s"
651
 
652
- #: c:/temp/redirection/view/admin/item_edit.php:7
653
- msgid "Title"
654
- msgstr "Títul"
655
 
656
- #: c:/temp/redirection/view/admin/item_edit.php:10
657
- msgid "optional"
658
- msgstr "opcional"
659
 
660
- #: c:/temp/redirection/view/admin/item_list.php:3
661
- msgid "Redirections for group"
662
- msgstr "Redireccions pel grup"
663
 
664
- #: c:/temp/redirection/view/admin/item_list.php:23
665
- msgid "Go"
666
- msgstr "Començar"
667
 
668
- #: c:/temp/redirection/view/admin/item_list.php:30
669
- msgid "Last Access"
670
- msgstr "Últim accés"
671
 
672
- #: c:/temp/redirection/view/admin/item_list.php:32
673
- #: c:/temp/redirection/view/admin/module_list.php:41
674
- msgid "Type"
675
- msgstr "Tipus"
676
 
677
- #: c:/temp/redirection/view/admin/item_list.php:33
678
- msgid "URL"
679
- msgstr "URL"
680
 
681
- #: c:/temp/redirection/view/admin/item_list.php:33
682
- msgid "Position"
683
- msgstr "Posició"
684
 
685
- #: c:/temp/redirection/view/admin/item_list.php:77
686
- msgid "You have no redirections."
687
- msgstr "No teniu redireccions"
 
688
 
689
- #: c:/temp/redirection/view/admin/log.php:2
690
- msgid "Redirection Log"
691
- msgstr "Registre de redireccions"
692
 
693
- #: c:/temp/redirection/view/admin/log.php:25
694
- msgid "Bulk Actions"
695
- msgstr "Accions en bloc"
 
 
696
 
697
- #: c:/temp/redirection/view/admin/log.php:29
698
- msgid "Apply"
699
- msgstr "Aplicar"
700
 
701
- #: c:/temp/redirection/view/admin/log.php:45
702
- msgid "Filter"
703
- msgstr "Filtre"
704
 
705
- #: c:/temp/redirection/view/admin/log.php:63
706
- msgid "Date"
707
- msgstr "Data"
708
 
709
- #: c:/temp/redirection/view/admin/log.php:66
710
- msgid "IP"
711
- msgstr "IP"
712
 
713
- #: c:/temp/redirection/view/admin/log.php:79
714
- msgid "There are no logs to display!"
715
- msgstr "No hi ha registres per mostrar!"
716
 
717
- #: c:/temp/redirection/view/admin/log.php:88
718
- msgid "Process Current Logs"
719
- msgstr "Procesar registres actuals"
720
 
721
- #: c:/temp/redirection/view/admin/log.php:89
722
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
723
- msgstr "Aquesta acció afectarà a tots els registres disponibles (ex. la vostra frase de cerca restringirà els elements registrats)."
724
 
725
- #: c:/temp/redirection/view/admin/log.php:94
726
- msgid "Delete Logs"
727
- msgstr "Eliminar registres"
728
 
729
- #: c:/temp/redirection/view/admin/log.php:95
730
- msgid "Export to CSV"
731
- msgstr "Exportar a CSV"
732
 
733
- #: c:/temp/redirection/view/admin/log_item_details.php:9
734
- msgid "Redirect to"
735
- msgstr "Redirigir a"
736
 
737
- #: c:/temp/redirection/view/admin/log_item_details.php:15
738
- msgid "Redirected by"
739
- msgstr "Redirigit per"
740
 
741
- #: c:/temp/redirection/view/admin/log_item_details.php:16
742
- msgid "for"
743
- msgstr "per"
744
 
745
- #: c:/temp/redirection/view/admin/module_item.php:23
746
- msgid "View as"
747
- msgstr "Veure com"
748
 
749
- #: c:/temp/redirection/view/admin/module_item.php:25
750
- msgid "CSV"
751
- msgstr "CSV"
752
 
753
- #: c:/temp/redirection/view/admin/module_item.php:26
754
- msgid "XML"
755
- msgstr "XML"
756
 
757
- #: c:/temp/redirection/view/admin/module_item.php:28
758
- msgid "RSS"
759
- msgstr "RSS"
760
 
761
- #: c:/temp/redirection/view/admin/module_item.php:41
762
- msgid "edit"
763
- msgstr "editar"
764
 
765
- #: c:/temp/redirection/view/admin/module_item.php:44
766
- msgid "delete"
767
- msgstr "eliminar"
768
 
769
- #: c:/temp/redirection/view/admin/module_item.php:47
770
- msgid "reset"
771
- msgstr "restablir"
772
 
773
- #: c:/temp/redirection/view/admin/module_list.php:2
774
- #: c:/temp/redirection/view/admin/submenu.php:6
775
- msgid "Modules"
776
- msgstr "Mòduls"
777
 
778
- #: c:/temp/redirection/view/admin/module_list.php:9
779
- msgid "Details"
780
- msgstr "Detalls"
781
 
782
- #: c:/temp/redirection/view/admin/module_list.php:10
783
- #: c:/temp/redirection/view/admin/submenu.php:5
784
- msgid "Groups"
785
- msgstr "Grups"
786
 
787
- #: c:/temp/redirection/view/admin/module_list.php:11
788
- msgid "Items"
789
- msgstr "Elements"
790
 
791
- #: c:/temp/redirection/view/admin/module_list.php:13
792
- msgid "Operations"
793
- msgstr "Operacions"
794
 
795
- #: c:/temp/redirection/view/admin/module_list.php:22
796
- msgid "Note: Hits are dependant on log entries"
797
- msgstr "Nota: Els Hits depenen de les entrades del vostre registre"
798
 
799
- #: c:/temp/redirection/view/admin/module_list.php:24
800
- msgid "You have no modules defined yet"
801
- msgstr "Encara no teniu cap mòdul definit"
 
802
 
803
- #: c:/temp/redirection/view/admin/module_list.php:29
804
- msgid "Add Module"
805
- msgstr "Afegir mòdul"
806
 
807
- #: c:/temp/redirection/view/admin/module_list.php:30
808
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
809
- msgstr "Un mòdul és un element de control que determina com es gestionen les redireccions. Els elements en un mòdul WordPress són gestionats per WordPress, els elements en un mòdul Apache són gestionats per <code>.htaccess</code>, i els elements en un mòdul 404 afecten com estiguin registrats els errors 404."
810
 
811
- #: c:/temp/redirection/view/admin/module_list.php:50
812
- msgid "Create"
813
- msgstr "Crear"
814
 
815
- #: c:/temp/redirection/view/admin/options.php:2
816
- #: c:/temp/redirection/view/admin/submenu.php:8
817
- msgid "Options"
818
- msgstr "Opcions"
819
 
820
- #: c:/temp/redirection/view/admin/options.php:11
821
- msgid "Auto-generate URL"
822
- msgstr "Autogenerar URL"
 
823
 
824
- #: c:/temp/redirection/view/admin/options.php:15
825
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
826
- msgstr "Aixó s'utilitzarà per a autogenerar una URL si s'indica cap URL. Puede usar las etiquetas especiales $dec$ o $hex$ para que se inserte un ID único (decimal o hex, uno de los dos)"
827
 
828
- #: c:/temp/redirection/view/admin/options.php:20
829
- msgid "IP Lookup Service"
830
- msgstr "Servei de cerca d'IP"
 
831
 
832
- #: c:/temp/redirection/view/admin/options.php:26
833
- msgid "Plugin Support"
834
- msgstr "Suport de l'extensió"
835
 
836
- #: c:/temp/redirection/view/admin/options.php:29
837
- msgid "I'm a nice person and I have helped support the author of this plugin"
838
- msgstr "Soc una bona persona i he ajudat a l'autor d'aquesta extensió"
839
 
840
- #: c:/temp/redirection/view/admin/options.php:33
841
- msgid "Expire Logs"
842
- msgstr "Registres caducats"
843
 
844
- #: c:/temp/redirection/view/admin/options.php:36
845
- msgid "days (enter 0 for no expiry)"
846
- msgstr "dies (introduiu 0 per a que no caduqui)"
 
847
 
848
- #: c:/temp/redirection/view/admin/options.php:40
849
- msgid "RSS Token"
850
- msgstr "Token de RSS"
 
851
 
852
- #: c:/temp/redirection/view/admin/options.php:43
853
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
854
- msgstr "Un identificador únic que permet als lectors RSS accedir a Redirecció (deixar en blanc per autogenerar-lo)"
 
 
 
855
 
856
- #: c:/temp/redirection/view/admin/options.php:48
857
- msgid "URL Monitoring"
858
- msgstr "URL de seguiment"
859
 
860
- #: c:/temp/redirection/view/admin/options.php:49
861
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
862
- msgstr "Podeu fer que Redirecció detecti canvis a les URL i tindre una redirecció creada automàticament dins d'un grup específic."
863
 
864
- #: c:/temp/redirection/view/admin/options.php:53
865
- msgid "Post &amp; Page URLs"
866
- msgstr "URLs d'entrades &amp; Pàgines"
867
 
868
- #: c:/temp/redirection/view/admin/options.php:56
869
- #: c:/temp/redirection/view/admin/options.php:67
870
- msgid "Don't monitor"
871
- msgstr "No fer el seguiment"
872
 
873
- #: c:/temp/redirection/view/admin/options.php:60
874
- msgid "Monitor new posts"
875
- msgstr "Fer el seguiment de noves entrades"
876
 
877
- #: c:/temp/redirection/view/admin/options.php:64
878
- msgid "Category URLs"
879
- msgstr "URLs de categories"
880
 
881
- #: c:/temp/redirection/view/admin/options.php:74
882
- msgid "Update"
883
- msgstr "Actualitzar"
884
 
885
- #: c:/temp/redirection/view/admin/options.php:80
886
- msgid "Import"
887
- msgstr "Importar"
888
 
889
- #: c:/temp/redirection/view/admin/options.php:82
890
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
891
- msgstr "Aquí podeu importar redireccions d'un fitxer .htaccess, un fitxer CSV (separat per comes), o un fitxer XML de Redirecció."
892
 
893
- #: c:/temp/redirection/view/admin/options.php:89
894
- msgid "Import into"
895
- msgstr "Importar a"
896
 
897
- #: c:/temp/redirection/view/admin/options.php:92
898
- msgid "Upload"
899
- msgstr "Pujar"
900
 
901
- #: c:/temp/redirection/view/admin/options.php:95
902
- msgid "Note that the group is ignored when uploading an XML file."
903
- msgstr "Denoteu que el grup es ignorat quant carrrega un fitxer XML."
904
 
905
- #: c:/temp/redirection/view/admin/options.php:99
906
- msgid "Delete Redirection"
907
- msgstr "Eliminar Redirecció"
908
 
909
- #: c:/temp/redirection/view/admin/options.php:100
910
- 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."
911
- msgstr "Seleccionant aquesta opció elimina totes les redireccions, tots els registres, i qualsevol opció associada amb l'entensió Redirecció. Assegureu-vos que voleu fer exactament això."
912
 
913
- #: c:/temp/redirection/view/admin/submenu.php:4
914
- msgid "Redirects"
915
- msgstr "Redireccions"
916
 
917
- #: c:/temp/redirection/view/admin/submenu.php:7
918
- msgid "Log"
919
- msgstr "Registres"
920
 
921
- #: c:/temp/redirection/view/admin/support.php:2
922
- msgid "Redirection Support"
923
- msgstr "Suport Tècnic de Redirecció"
 
 
 
 
 
 
 
 
 
 
 
 
924
 
925
- #: c:/temp/redirection/view/admin/support.php:4
926
- msgid "Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested."
927
- msgstr "Redirecció ha necessitat molt de temps i esforç per a desenvolupar-se. Si us ha resultat útil aleshores podeu ajudar al seu desenvolupament per mitjà d'una <strong>petita donació de $8</strong>. Aixó servirá d'incentiu per a que continui amb el desenvolupament, proporcionant hores incontables de suport, i incluint aquelles millores em suggeriu."
928
 
929
- #: c:/temp/redirection/view/admin/support.php:25
930
- msgid "Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>."
931
- msgstr "Como alternativa, si vosté parla diversos idiomes, considereu a traduir l'original a un altre idioma. Tots els fitxers de localització estan incluits i he escrit una <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guia completa per al procediment de traducció</a>."
 
932
 
933
- #: c:/temp/redirection/view/admin/support.php:27
934
- msgid "Other plugins"
935
- msgstr "Altres extensions"
 
936
 
937
- #: c:/temp/redirection/view/admin/support.php:29
938
- msgid "You may also be interested in some of my other plugins:"
939
- msgstr "Puedeu estar interesat en alguna altra d'aquests extensions:"
940
 
941
- #: c:/temp/redirection/view/admin/support.php:32
942
- msgid "HeadSpace"
943
- msgstr "HeadSpace"
 
944
 
945
- #: c:/temp/redirection/view/admin/support.php:32
946
- msgid "The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!"
947
- msgstr "L'administrador més complet per a metadades per a SEO i extensions de tot tipus per a WordPress. Remplaça cinc o sis extensions amb tan sols una super-extensió!"
948
 
949
- #: c:/temp/redirection/view/admin/support.php:33
950
- msgid "Search Unleashed"
951
- msgstr "Search Unleashed"
 
952
 
953
- #: c:/temp/redirection/view/admin/support.php:33
954
- msgid "Attractive searches that go beyond the default WordPress search and increase the usefulness of your site."
955
- msgstr "Cerques atractives que van més enllà de les originals de WordPress i augmenten la utilitat del vostre lloc."
956
 
957
- #: c:/temp/redirection/view/admin/support.php:34
958
- msgid "Sniplets"
959
- msgstr "Sniplets"
960
 
961
- #: c:/temp/redirection/view/admin/support.php:34
962
- msgid "very flexible and powerful text insertion that allows you to insert what you want, wherever you want it."
963
- msgstr "Inserció de text flexible i poderosa que us permet afegir el que volgueu, allí on vulgui."
964
 
965
- #: c:/temp/redirection/view/admin/support.php:37
966
- msgid "This notice will only be shown at periodic intervals."
967
- msgstr "Aquest avís solament es mostrarà en intèrvals periòdics"
968
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Catalan
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-06 21:35:14+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: ca\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
 
 
 
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
 
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
 
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
 
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
 
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
 
 
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
 
 
 
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
 
 
 
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
 
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
 
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
 
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
 
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Ajustos avançats"
 
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr ""
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Suport Tècnic de Redirecció"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Suport"
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s des de %s"
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Registres"
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Eliminar Redirecció"
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Pujar"
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importar"
 
 
 
 
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Actualitzar"
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Autogenerar URL"
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr ""
331
 
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Token de RSS"
 
 
335
 
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "No fer el seguiment"
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr ""
 
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "Registres 404"
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(temps que es mantindran els registres)"
 
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Registres de redireccions"
 
 
 
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Soc una bona persona i he ajudat a l'autor d'aquesta extensió"
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr ""
 
 
363
 
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Opcions"
 
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Dos mesos"
 
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Un mes"
 
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Uns setmana"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Un dia"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Sense registres"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Mòduls"
391
 
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr ""
 
395
 
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr ""
 
399
 
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Registre de redireccions"
 
403
 
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "opcional"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Descripció"
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ msgstr ""
415
+
416
+ #: redirection-strings.php:6
417
  msgid "Add Group"
418
  msgstr "Afegir grup"
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Cercar"
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Grups"
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Desar"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Afegir Redirecció"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Grup"
 
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Expresió regular"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Acció"
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Coincidència"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "S'ha afegit la vostra redirecció"
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Afegir una nova redirecció"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Cancel·lar"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr ""
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Ho sento, però la vostra redirecció no ha estat creada"
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "No s'ha pogut realitzar l'acció"
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "No s'han importat elements"
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redirecció importada correctament"
486
+ msgstr[1] "%d redireccions importades correctament"
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Les vostres opcions han estat actualitzades"
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirecció"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Configuració"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr ""
503
 
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr ""
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
 
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr ""
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr ""
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "URL canònica"
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr ""
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
 
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ""
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "No fer res"
539
 
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Error (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Pasar directe"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redirigir a entrada aleatoria"
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirigir a URL"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr ""
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr ""
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr ""
 
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr ""
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr ""
 
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr ""
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Mostra només aquesta IP"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL origen"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Data"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Afegeix redirecció"
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Tots els mòduls"
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr ""
 
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Mòdul"
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redireccions"
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nom"
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtre"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Sense filtre de grup"
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Reiniciar Hits"
634
 
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr ""
639
 
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Desactiva"
644
 
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Eliminar"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Edita"
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Últim accés"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
 
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Tipus"
671
 
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Entrades modificades"
675
 
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Redireccions"
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Agent d'usuari"
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
 
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
 
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
 
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
 
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
 
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
 
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
 
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL i agent d'usuari"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "URL destí"
731
 
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Solament URL"
735
 
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "No coincideix"
740
 
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Coincideix"
745
 
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."
749
 
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "Codi HTTP"
754
 
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Expresió regular"
758
 
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referent"
763
 
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL i referent"
767
 
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Desconnectat"
771
 
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Identificat"
775
 
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."
779
 
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "Estat de l'URL i connexió"
locale/redirection-de_DE.mo ADDED
Binary file
locale/redirection-de_DE.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in German
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-01-29 15:55:57+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: de\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
+
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
+
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
+
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
+
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
+
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
+
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
+
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
+
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
+
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
+
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
151
+
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
+
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
159
+
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
163
+
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
+
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
+
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
+
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
+
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
+
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
+
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
+
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
+
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
+
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
+
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
+
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
+
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
215
+
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
219
+
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
223
+
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
+
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
+
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
+
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
+
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
+
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
+
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
+
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
255
+
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Erweiterte Einstellungen"
259
+
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
+
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
+
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Verwalte alle 301-Umleitungen und 404-Fehler."
271
+
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
+
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
+
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Unleitung Support"
283
+
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Support"
287
+
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
+
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s von %s"
295
+
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
299
+
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Umleitung löschen"
303
+
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Hochladen"
307
+
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
+
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importieren"
315
+
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Aktualisieren"
319
+
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
+
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Selbsterstellte URL"
327
+
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"
331
+
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "RSS Token"
335
+
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Nicht kontrollieren"
339
+
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Änderungen an Beiträgen überwachen"
343
+
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "404-Logs"
347
+
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(Dauer, für die die Logs behalten werden)"
351
+
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Umleitungs-Logs"
355
+
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Ich bin eine nette Person und ich helfe dem Autor des Plugins"
359
+
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr ""
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Optionen"
367
+
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "zwei Monate"
371
+
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "ein Monat"
375
+
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "eine Woche"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "einen Tag"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Keine Logs"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Module"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr ""
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Alle löschen"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Umleitungs Log"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "optional"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Beschreibung"
411
+
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
+
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Gruppe hinzufügen"
419
+
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Suchen"
423
+
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Gruppen"
427
+
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Speichern"
431
+
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Umleitung hinzufügen"
435
+
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Gruppe"
439
+
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Reguläre Äußerung"
443
+
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Aktion"
447
+
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Passend"
451
+
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Deine Umleitung wurde hinzugefügt."
455
+
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Eine neue Umleitung hinzufügen"
459
+
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Abbrechen"
464
+
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Download"
468
+
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Endschuldigung, aber deine Umleitung wurde nicht erstellt"
472
+
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Die Operation kann nicht ausgeführt werden."
477
+
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Keine Elemente wurden importiert"
481
+
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d Umleitung wurde erfolgreich importiert."
486
+ msgstr[1] "%d Umleitungen wurden erfolgreich importiert."
487
+
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Deine Optionen wurden aktualisiert"
491
+
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
+
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Einstellungen"
499
+
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "Durch WordPress betriebene Umleitungen: Dies benötigt keine weitere Konfiguration, und Treffer werden aufgezeichnet."
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Für die Benutzung mit Nginx-Servern: Benötigt manuelle Konfiguration. Die Umleitung erfolgt, ohne WordPress zu laden, und ist viel schneller, die Treffer können jedoch nicht aufgezeichnet werden. Dies ist ein experimentelles Modul."
507
+
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Bei deiner Seite das www automatisch entfernen oder hinzufügen."
515
+
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Standard-Server"
519
+
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "Canonical URL"
523
+
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr ""
527
+
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess-Speicherort"
535
+
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Mache nichts"
539
+
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Fehler (404)"
543
+
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Durchreichen"
547
+
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Umleitung zu zufälligen Beitrag"
551
+
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Umleitung zur URL"
555
+
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Neue Umeitung kann nicht hinzugefügt werden. Entferne dieses Plugin und installiere es neu."
559
+
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "Ungültige Quell-URL für die Erstellung einer Umleitung des gegebenen Übereinstimmungstyps."
563
+
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Ungültige Gruppe für die Erstellung der Umleitung"
567
+
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Du kannst nur von einer relativen URL (<code>%s</code>) auf dieser Domain (<code>%s</code>) umleiten."
571
+
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Quell- und Ziel-URL müssen sich unterscheiden"
575
+
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Einstellen"
579
+
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Nur diese IP-Adresse anzeigen"
583
+
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
+
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL-Quelle"
592
+
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Zeitpunkt"
596
+
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr ""
600
+
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Alle Module"
604
+
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Weiterleitungen anschauen"
608
+
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Module"
613
+
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Umleitungen"
617
+
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Name"
622
+
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filter"
626
+
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Kein Gruppenfilter"
630
+
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Treffer zurücksetzen"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Aktivieren"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Deaktivieren"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Löschen"
651
+
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Bearbeiten"
655
+
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Letzter Zugriff"
659
+
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Treffer"
663
+
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
+
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Typ"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Geänderte Beiträge"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Umleitungen"
679
+
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "Der Besucher wird von der URL-Quelle umgeleitet, falls der User Agent passend ist. Du kannst eine <em>passende</em> Ziel-URL als Adresse spezifizieren, die die Besucher schicken, falls sie passend sind, und <em>nicht passend</em>, wenn sie nicht übereinstimmen. <strong>Alle Anpassungen treten als reguläre Äußerungen auf</strong>.\n"
683
+
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "User Agent"
687
+
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL und User-Agent"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Ziel-URL"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Nur URL"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Nicht passend"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "passend"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "Der Beuscher wird umgeleitet von der URL-Quelle, falls sich die Vermittler entsprechen. Du kannst eine <em>passende</em> Ziel-URL als Adresse spezifizieren, und <em>nicht passende</em>, wenn sie nicht übereinstimmen. Leerlassen einer URL ."
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP-Code"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Vermittler"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL und Vermittler"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Ausgeloggt"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Eingeloggt"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "Die Zieladresse wird von eine der folgenden URLs ausgewählt, abhängig davon, ob der User ein- oder ausgeloggt ist. Eine URL leer lassen bedeutet, dass der User nicht umgeleitet ist."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL- und Loginstatus"
locale/redirection-en_CA.mo ADDED
Binary file
locale/redirection-en_CA.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in English (Canada)
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-07-13 16:46:42+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: en_CA\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr "Something went wrong 🙁"
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr "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!"
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr "It didn't work when I tried again"
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr "Important details for the thing you just did"
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr "Please include these details in your report"
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr "Log entries (100 max)"
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr "Failed to load"
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr "Remove WWW"
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr "Add WWW"
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr "Search by IP"
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr "Select bulk action"
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr "Bulk Actions"
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr "Apply"
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr "First page"
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr "Prev page"
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr "Current Page"
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr "of %(page)s"
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr "Next page"
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr "Last page"
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] "%s item"
106
+ msgstr[1] "%s items"
107
+
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr "Select All"
111
+
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr "Sorry but something went wrong loading the data - please try again"
115
+
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr "No results"
119
+
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr "Delete the logs - are you sure?"
123
+
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
127
+
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr "Yes! Delete the logs"
131
+
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr "No! Don't delete the logs"
135
+
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr "Redirection 404"
139
+
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
143
+
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr "Newsletter"
147
+
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr "Want to keep up to date with changes to Redirection?"
151
+
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ 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."
155
+
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr "Your email address:"
159
+
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr "I deleted a redirection, why is it still redirecting?"
163
+
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
167
+
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr "Can I open a redirect in a new tab?"
171
+
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
175
+
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr "Something isn't working!"
179
+
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
183
+
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr "Frequently Asked Questions"
187
+
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr "Need some help? Maybe one of these questions will provide an answer"
191
+
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr "You've already supported this plugin - thank you!"
195
+
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr "I'd like to donate some more"
199
+
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr "You get some useful software and I get to carry on making it better."
203
+
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr "Please note I do not provide support and this is just a donation."
207
+
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr "Yes I'd like to donate"
211
+
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr "Thank you for making a donation!"
215
+
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr "Forever"
219
+
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr "Failed to save data"
223
+
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr "Failed to load data"
227
+
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr "CSV Format"
231
+
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
235
+
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr "Delete the plugin - are you sure?"
239
+
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ 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."
243
+
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
247
+
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr "Yes! Delete the plugin"
251
+
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr "No! Don't delete the plugin"
255
+
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Advanced Settings"
259
+
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
+
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
+
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Manage all your 301 redirects and monitor 404 errors."
271
+
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
+
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ 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}}."
279
+
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Redirection Support"
283
+
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Support"
287
+
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
+
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s from %s"
295
+
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
299
+
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Delete Redirection"
303
+
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Upload"
307
+
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
311
+
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Import"
315
+
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Update"
319
+
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
323
+
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Auto-generate URL"
327
+
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
331
+
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "RSS Token"
335
+
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Don't monitor"
339
+
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Monitor changes to posts"
343
+
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "404 Logs"
347
+
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(time to keep logs for)"
351
+
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Redirect Logs"
355
+
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "I'm a nice person and I have helped support the author of this plugin."
359
+
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Plugin support"
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Options"
367
+
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Two months"
371
+
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "A month"
375
+
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "A week"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "A day"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "No logs"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Modules"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "Export to CSV"
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Delete All"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Redirection Log"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "optional"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Description"
411
+
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
+
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Add Group"
419
+
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Search"
423
+
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Groups"
427
+
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Save"
431
+
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Add Redirection"
435
+
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Group"
439
+
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Regular expression"
443
+
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Action"
447
+
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Match"
451
+
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Your redirection has been added."
455
+
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Add new redirection"
459
+
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Cancel"
464
+
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Download"
468
+
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Sorry, but your redirection was not created."
472
+
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Unable to perform action"
477
+
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "No items were imported"
481
+
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redirection was successfully imported"
486
+ msgstr[1] "%d redirections were successfully imported"
487
+
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Your options were updated."
491
+
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
+
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Settings"
499
+
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "WordPress powered redirects. This requires no further configuration, and you can track hits."
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
507
+
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Automatically remove or add www to your site."
515
+
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Default server"
519
+
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "Canonical URL"
523
+
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress is installed in: {{code}}%s{{/code}}"
527
+
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess Location"
535
+
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Do nothing"
539
+
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Error (404)"
543
+
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Pass-through"
547
+
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redirect to random post"
551
+
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirect to URL"
555
+
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Unable to add new redirect - delete Redirection from the options page and re-install"
559
+
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "Invalid source URL when creating redirect for given match type"
563
+
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Invalid group when creating redirect"
567
+
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
571
+
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Source and target URL must be different."
575
+
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configure"
579
+
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Show only this IP"
583
+
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
+
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "Source URL"
592
+
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Date"
596
+
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Add Redirect"
600
+
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "All modules"
604
+
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "View Redirects"
608
+
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Module"
613
+
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redirects"
617
+
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Name"
622
+
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filter"
626
+
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "No group filter"
630
+
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Reset Hits"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Enable"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Disable"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Delete"
651
+
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Edit"
655
+
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Last Access"
659
+
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
+
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
+
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Type"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Modified Posts"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Redirections"
679
+
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
683
+
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "User Agent"
687
+
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL and user agent"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Target URL"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "URL only"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Not matched"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Matched"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP Code"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referrer"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL and referrer"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Logged Out"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Logged In"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL and login status"
locale/redirection-en_GB.mo ADDED
Binary file
locale/redirection-en_GB.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in English (UK)
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-07-09 21:29:26+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: en_GB\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
+
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
+
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
+
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
+
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
+
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
+
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
+
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
+
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
143
+
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr "Newsletter"
147
+
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr "Want to keep up to date with changes to Redirection?"
151
+
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ 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."
155
+
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr "Your email address:"
159
+
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr "I deleted a redirection, why is it still redirecting?"
163
+
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
167
+
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr "Can I open a redirect in a new tab?"
171
+
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
175
+
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr "Something isn't working!"
179
+
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
183
+
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr "Frequently Asked Questions"
187
+
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr "Need some help? Maybe one of these questions will provide an answer"
191
+
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr "You've already supported this plugin - thank you!"
195
+
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr "I'd like to donate some more"
199
+
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr "You get some useful software and I get to carry on making it better."
203
+
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr "Please note I do not provide support and this is just a donation."
207
+
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr "Yes I'd like to donate"
211
+
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr "Thank you for making a donation!"
215
+
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr "Forever"
219
+
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr "Failed to save data"
223
+
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr "Failed to load data"
227
+
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr "CSV Format"
231
+
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
235
+
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr "Delete the plugin - are you sure?"
239
+
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ 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."
243
+
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
247
+
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr "Yes! Delete the plugin"
251
+
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr "No! Don't delete the plugin"
255
+
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Advanced Settings"
259
+
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
+
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
+
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Manage all your 301 redirects and monitor 404 errors"
271
+
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
+
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ 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}}."
279
+
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Redirection Support"
283
+
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Support"
287
+
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
+
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s from %s"
295
+
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
299
+
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Delete Redirection"
303
+
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Upload"
307
+
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
311
+
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Import"
315
+
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Update"
319
+
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
323
+
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Auto-generate URL"
327
+
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
331
+
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "RSS Token"
335
+
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Don't monitor"
339
+
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Monitor changes to posts"
343
+
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "404 Logs"
347
+
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(time to keep logs for)"
351
+
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Redirect Logs"
355
+
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "I'm a nice person and I have helped support the author of this plugin"
359
+
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Plugin support"
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Options"
367
+
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Two months"
371
+
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "A month"
375
+
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "A week"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "A day"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "No logs"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Modules"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "Export to CSV"
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Delete All"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Redirection Log"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "optional"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Description"
411
+
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
+
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Add Group"
419
+
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Search"
423
+
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Groups"
427
+
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Save"
431
+
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Add Redirection"
435
+
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Group"
439
+
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Regular expression"
443
+
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Action"
447
+
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Match"
451
+
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Your redirection has been added."
455
+
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Add new redirection"
459
+
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Cancel"
464
+
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Download"
468
+
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Sorry, but your redirection was not created"
472
+
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Unable to perform action"
477
+
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "No items were imported"
481
+
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redirection was successfully imported"
486
+ msgstr[1] "%d redirections were successfully imported"
487
+
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Your options were updated"
491
+
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
+
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Settings"
499
+
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "WordPress-powered redirects. This requires no further configuration, and you can track hits."
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
507
+
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Automatically remove or add www to your site."
515
+
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Default server"
519
+
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "Canonical URL"
523
+
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress is installed in: {{code}}%s{{/code}}"
527
+
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file, then enter the full path and filename here. You can also download the file and update it manually."
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess Location"
535
+
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Do nothing"
539
+
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Error (404)"
543
+
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Pass-through"
547
+
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redirect to random post"
551
+
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirect to URL"
555
+
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Unable to add new redirect - delete Redirection from the options page and re-install"
559
+
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "Invalid source URL when creating redirect for given match type"
563
+
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Invalid group when creating redirect"
567
+
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
571
+
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Source and target URL must be different"
575
+
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configure"
579
+
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Show only this IP"
583
+
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
+
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "Source URL"
592
+
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Date"
596
+
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Add Redirect"
600
+
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "All modules"
604
+
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "View Redirects"
608
+
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Module"
613
+
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redirects"
617
+
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Name"
622
+
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filter"
626
+
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "No group filter"
630
+
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Reset Hits"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Enable"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Disable"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Delete"
651
+
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Edit"
655
+
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Last Access"
659
+
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
+
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
+
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Type"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Modified Posts"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Redirections"
679
+
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
683
+
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "User Agent"
687
+
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL and user agent"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Target URL"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "URL only"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Not matched"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Matched"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP Code"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referrer"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL and referrer"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Logged Out"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Logged In"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL and login status"
locale/redirection-es_ES.mo CHANGED
Binary file
locale/redirection-es_ES.po CHANGED
@@ -1,969 +1,782 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Redirect\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 20:25-0300\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Juan <j@j.com>\n"
8
- "Language-Team: Juan E. <juan@unahormiga.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Spanish\n"
13
- "X-Poedit-Country: SPAIN\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-Basepath: c:/temp/redirection/\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: c:/temp/redirection\n"
18
-
19
- #: c:/temp/redirection/ajax.php:51
20
- msgid "<p style=\"color: red\">You are not allowed access to this resource</p>"
21
- msgstr "<p style=\"color: red\">No esta autorizado para acceder a este recurso</p>"
22
-
23
- #: c:/temp/redirection/ajax.php:59
24
- msgid "<p style=\"color: red\">That function is not defined</p>"
25
- msgstr "<p style=\"color: red\">Esa función no está definida</p>"
26
-
27
- #: c:/temp/redirection/ajax.php:76
28
- msgid "Sorry, but your redirection was not created"
29
- msgstr "Lo siento, pero su redirección no fué creada"
30
-
31
- #: c:/temp/redirection/ajax.php:234
32
- #: c:/temp/redirection/ajax.php:243
33
- #: c:/temp/redirection/ajax.php:270
34
- #: c:/temp/redirection/ajax.php:317
35
- #: c:/temp/redirection/ajax.php:332
36
- #: c:/temp/redirection/ajax.php:356
37
- msgid "Failed to retrieve group data"
38
- msgstr "Error al obtener datos del grupo"
39
-
40
- #: c:/temp/redirection/ajax.php:307
41
- msgid "Failed to retrieve module data"
42
- msgstr "Error al obtener datos del módulo"
43
-
44
- #: c:/temp/redirection/plugin.php:648
45
- msgid "How many widgets would you like?"
46
- msgstr "Cuantos widgets desea"
47
-
48
- #: c:/temp/redirection/plugin.php:655
49
- msgid "Save"
50
- msgstr "Guardar"
51
 
52
- #: c:/temp/redirection/redirection.php:122
53
- msgid "Redirection Help"
54
- msgstr "Ayuda de Redirection"
55
 
56
- #: c:/temp/redirection/redirection.php:123
57
- msgid "Redirection Documentation"
58
- msgstr "Documentación de Redirection"
59
 
60
- #: c:/temp/redirection/redirection.php:124
61
- msgid "Redirection Support Forum"
62
- msgstr "Foro de soporte de Redirection"
63
 
64
- #: c:/temp/redirection/redirection.php:125
65
- msgid "Redirection Bug Tracker"
66
- msgstr "Seguimiento de errores de Redirection"
67
 
68
- #: c:/temp/redirection/redirection.php:126
69
- msgid "Redirection FAQ"
70
- msgstr "Preguntas frecuentes de Redirection"
71
 
72
- #: c:/temp/redirection/redirection.php:127
73
- msgid "Please read the documentation and FAQ, and check the bug tracker, before asking a question."
74
- msgstr "Por favor, lea la documentación, el FAQ, y verifique el registro de bugs, antés de realizar una pregunta."
75
 
76
- #: c:/temp/redirection/redirection.php:186
77
- msgid "Redirection"
78
- msgstr "Redirection"
79
 
80
- #: c:/temp/redirection/redirection.php:249
81
- msgid "Your module was successfully created"
82
- msgstr "Módulo creado con éxito"
83
 
84
- #: c:/temp/redirection/redirection.php:253
85
- msgid "Your module was not created - did you provide a name?"
86
- msgstr "Su modulo no se creó - ¿escribió un nombre?"
87
 
88
- #: c:/temp/redirection/redirection.php:317
89
- msgid "Your options were updated"
90
- msgstr "Sus opciones se actualizaron"
91
 
92
- #: c:/temp/redirection/redirection.php:326
93
- msgid "Redirection data has been deleted and the plugin disabled"
94
- msgstr "Los datos de redirección fueron eliminados y el plugin deshabilitado"
95
 
96
- #: c:/temp/redirection/redirection.php:339
97
- msgid "No items were imported"
98
- msgstr "No se importaron items"
99
 
100
- #: c:/temp/redirection/redirection.php:359
101
- msgid "Your logs have been deleted"
102
- msgstr "Se han borrado sus registros"
103
 
104
- #: c:/temp/redirection/redirection.php:385
105
- msgid "Your group was added successfully"
106
- msgstr "Su grupo ha sido agregado correctamente."
107
 
108
- #: c:/temp/redirection/redirection.php:389
109
- msgid "Please specify a group name"
110
- msgstr "Por favor especifique un nombre para el grupo"
111
 
112
- #: c:/temp/redirection/fileio/csv.php:21
113
- #, php-format
114
- msgid "module_%d.csv"
115
- msgstr "module_%d.csv"
116
 
117
- #: c:/temp/redirection/fileio/xml.php:32
118
- #, php-format
119
- msgid "module_%d.xml"
120
- msgstr "module_%d.xml"
121
 
122
- #: c:/temp/redirection/fileio/xml.php:105
123
- #, php-format
124
- msgid "%s imported on %s at %s"
125
- msgstr "%s importado el %s a %s"
126
 
127
- #: c:/temp/redirection/fileio/xml.php:168
128
- msgid "XML importing is only available with PHP5 - you have PHP4."
129
- msgstr "Importar por XML solo está disponible utilizando PHP5 - usted tiene PHP4."
130
 
131
- #: c:/temp/redirection/matches/login.php:25
132
- msgid "URL and login status"
133
- msgstr "Estado de URL y conexión"
134
 
135
- #: c:/temp/redirection/matches/login.php:32
136
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
137
- msgstr "La URL destino será elegida entre las URL que siguen, dependiendo si el usuario se encuentra validado o no. Si deja la URL vacía el usuario no serà redireccionado."
138
 
139
- #: c:/temp/redirection/matches/login.php:37
140
- #: c:/temp/redirection/matches/login.php:39
141
- msgid "Logged In"
142
- msgstr "Validado"
143
 
144
- #: c:/temp/redirection/matches/login.php:47
145
- #: c:/temp/redirection/matches/login.php:49
146
- msgid "Logged Out"
147
- msgstr "Sin validar"
 
148
 
149
- #: c:/temp/redirection/matches/referrer.php:28
150
- msgid "URL and referrer"
151
- msgstr "URL y referente"
152
 
153
- #: c:/temp/redirection/matches/referrer.php:40
154
- msgid "Referrer"
155
- msgstr "Referente"
156
 
157
- #: c:/temp/redirection/matches/referrer.php:43
158
- msgid "Regex"
159
- msgstr "Expresión regular"
160
 
161
- #: c:/temp/redirection/matches/referrer.php:47
162
- #: c:/temp/redirection/matches/url.php:40
163
- #: c:/temp/redirection/matches/user_agent.php:56
164
- msgid "HTTP Code"
165
- msgstr "Código HTTP"
166
 
167
- #: c:/temp/redirection/matches/referrer.php:57
168
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
169
- msgstr "El visitante será redireccionado de la URL origen si el referente concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado"
170
 
171
- #: c:/temp/redirection/matches/referrer.php:63
172
- #: c:/temp/redirection/matches/referrer.php:65
173
- #: c:/temp/redirection/matches/user_agent.php:74
174
- #: c:/temp/redirection/matches/user_agent.php:76
175
- msgid "Matched"
176
- msgstr "Concuerda"
177
 
178
- #: c:/temp/redirection/matches/referrer.php:73
179
- #: c:/temp/redirection/matches/referrer.php:75
180
- #: c:/temp/redirection/matches/user_agent.php:84
181
- #: c:/temp/redirection/matches/user_agent.php:86
182
- msgid "Not matched"
183
- msgstr "Sin coincidencia"
184
 
185
- #: c:/temp/redirection/matches/url.php:25
186
- msgid "URL only"
187
- msgstr "Sólo URL"
188
 
189
- #: c:/temp/redirection/matches/url.php:32
190
- msgid "Target URL"
191
- msgstr "URL destino"
192
 
193
- #: c:/temp/redirection/matches/user_agent.php:27
194
- msgid "URL and user agent"
195
- msgstr "URL y cliente de usuario (user agent)"
196
 
197
- #: c:/temp/redirection/matches/user_agent.php:33
198
- msgid "FeedBurner"
199
- msgstr "FeedBurner"
200
 
201
- #: c:/temp/redirection/matches/user_agent.php:34
202
- msgid "Internet Explorer"
203
- msgstr "Internet Explorer"
204
 
205
- #: c:/temp/redirection/matches/user_agent.php:35
206
- msgid "FireFox"
207
- msgstr "FireFox"
208
 
209
- #: c:/temp/redirection/matches/user_agent.php:36
210
- msgid "Opera"
211
- msgstr "Opera"
212
 
213
- #: c:/temp/redirection/matches/user_agent.php:37
214
- msgid "Safari"
215
- msgstr "Safari"
216
 
217
- #: c:/temp/redirection/matches/user_agent.php:38
218
- msgid "iPhone"
219
- msgstr "iPhone"
220
 
221
- #: c:/temp/redirection/matches/user_agent.php:39
222
- msgid "Nintendo Wii"
223
- msgstr "Nintendo Wii"
224
 
225
- #: c:/temp/redirection/matches/user_agent.php:44
226
- msgid "User Agent"
227
- msgstr "Agente usuario HTTP"
228
 
229
- #: c:/temp/redirection/matches/user_agent.php:67
230
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
231
- msgstr "El visitante será redireccionado de la URL origen si el agente de usuario concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado.\n"
232
 
233
- #: c:/temp/redirection/models/database.php:110
234
- #: c:/temp/redirection/models/module.php:168
235
- msgid "WordPress"
236
- msgstr "WordPress"
237
 
238
- #: c:/temp/redirection/models/database.php:111
239
- #: c:/temp/redirection/models/module.php:167
240
- msgid "Apache"
241
- msgstr "Apache"
242
 
243
- #: c:/temp/redirection/models/database.php:112
244
- #: c:/temp/redirection/models/module.php:169
245
- msgid "404 Errors"
246
- msgstr "Errores 404"
247
 
248
- #: c:/temp/redirection/models/database.php:118
249
- msgid "Redirections"
250
- msgstr "Redirecciones"
251
 
252
- #: c:/temp/redirection/models/database.php:119
253
- msgid "Modified posts"
254
- msgstr "Entradas modificadas"
255
 
256
- #: c:/temp/redirection/models/module.php:192
257
- msgid "Strip WWW"
258
- msgstr "Quitar WWW"
259
 
260
- #: c:/temp/redirection/models/module.php:192
261
- msgid "Force WWW"
262
- msgstr "Forzar WWW"
263
 
264
- #: c:/temp/redirection/models/module.php:198
265
- msgid "Strip index.php"
266
- msgstr "Quitar index.phpl"
267
 
268
- #: c:/temp/redirection/models/pager.php:402
269
- msgid "Previous"
270
- msgstr "Anterior"
271
 
272
- #: c:/temp/redirection/models/pager.php:403
273
- msgid "Next"
274
- msgstr "Siguiente"
275
 
276
- #: c:/temp/redirection/models/pager.php:461
277
- #, php-format
278
- msgid "%d per-page"
279
- msgstr "%d por página"
280
 
281
- #: c:/temp/redirection/models/pager.php:470
282
- #, php-format
283
- msgid "Displaying %s&#8211;%s of %s"
284
- msgstr "Mostrando %s&#8211;%s de %s"
285
 
286
- #: c:/temp/redirection/models/redirect.php:387
287
- msgid "Redirect to URL"
288
- msgstr "Redirigir a URL"
289
 
290
- #: c:/temp/redirection/models/redirect.php:388
291
- msgid "Redirect to random post"
292
- msgstr "Redirigir a entrada aleatoria"
293
 
294
- #: c:/temp/redirection/models/redirect.php:389
295
- msgid "Pass-through"
296
- msgstr "Pasar directo"
297
 
298
- #: c:/temp/redirection/models/redirect.php:390
299
- msgid "Error (404)"
300
- msgstr "Error (404)"
301
 
302
- #: c:/temp/redirection/models/redirect.php:391
303
- msgid "Do nothing"
304
- msgstr "No hacer nada"
305
 
306
- #: c:/temp/redirection/modules/404.php:37
307
- msgid "Log 404s"
308
- msgstr "Registrar 404s"
309
-
310
- #: c:/temp/redirection/modules/404.php:46
311
- #: c:/temp/redirection/modules/wordpress.php:223
312
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
313
- msgstr "<strong>Deshabilitado: Debe habilitar <a href=\"options-permalink.php\">permalinks</a> antés de usar esto</strong>"
314
-
315
- #: c:/temp/redirection/modules/404.php:57
316
- #: c:/temp/redirection/modules/wordpress.php:247
317
- msgid "<small>No options have been set</small>"
318
- msgstr "<small>No se configuró ninguna opción</small>"
319
-
320
- #: c:/temp/redirection/modules/apache.php:65
321
- msgid "Location"
322
- msgstr "Lugar"
323
-
324
- #: c:/temp/redirection/modules/apache.php:70
325
- #, php-format
326
- msgid "WordPress is installed in: <code>%s</code>"
327
- msgstr "WordPress está instalado en: <code>%s</code>"
328
-
329
- #: c:/temp/redirection/modules/apache.php:75
330
- #: c:/temp/redirection/modules/wordpress.php:184
331
- msgid "Canonical"
332
- msgstr "Canónico"
333
-
334
- #: c:/temp/redirection/modules/apache.php:78
335
- #: c:/temp/redirection/modules/apache.php:84
336
- #: c:/temp/redirection/modules/wordpress.php:187
337
- #: c:/temp/redirection/modules/wordpress.php:192
338
- msgid "Leave as is"
339
- msgstr "Dejar como está"
340
-
341
- #: c:/temp/redirection/modules/apache.php:78
342
- #: c:/temp/redirection/modules/wordpress.php:187
343
- #, php-format
344
- msgid "Strip WWW (%s)"
345
- msgstr "Quitar WWW (%s)"
346
-
347
- #: c:/temp/redirection/modules/apache.php:78
348
- #: c:/temp/redirection/modules/wordpress.php:187
349
- #, php-format
350
- msgid "Force WWW (www.%s)"
351
- msgstr "Forzar WWW (www.%s)"
352
-
353
- #: c:/temp/redirection/modules/apache.php:82
354
- msgid "Strip Index"
355
- msgstr "Quitar Index"
356
-
357
- #: c:/temp/redirection/modules/apache.php:84
358
- msgid "Strip index files (html,php)"
359
- msgstr "Recortar archivo index (html,php)"
360
-
361
- #: c:/temp/redirection/modules/apache.php:89
362
- msgid "Memory Limit"
363
- msgstr "Límite de memoria"
364
-
365
- #: c:/temp/redirection/modules/apache.php:92
366
- #: c:/temp/redirection/modules/apache.php:97
367
- #: c:/temp/redirection/modules/wordpress.php:200
368
- #: c:/temp/redirection/modules/wordpress.php:205
369
- msgid "Server default"
370
- msgstr "Predeterminado del servidor"
371
-
372
- #: c:/temp/redirection/modules/apache.php:95
373
- msgid "Error Level"
374
- msgstr "Nivel de error"
375
-
376
- #: c:/temp/redirection/modules/apache.php:97
377
- msgid "No errors"
378
- msgstr "Sin errores"
379
-
380
- #: c:/temp/redirection/modules/apache.php:97
381
- msgid "Show errors"
382
- msgstr "Mostrar errores"
383
-
384
- #: c:/temp/redirection/modules/apache.php:102
385
- msgid "Ban IPs"
386
- msgstr "Prohibir IPs"
387
-
388
- #: c:/temp/redirection/modules/apache.php:108
389
- msgid "Allow IPs"
390
- msgstr "Permitir IPs"
391
-
392
- #: c:/temp/redirection/modules/apache.php:114
393
- msgid "Raw .htaccess"
394
- msgstr ".htaccess crudo"
395
-
396
- #: c:/temp/redirection/modules/apache.php:120
397
- msgid "Site URL"
398
- msgstr "URL del sitio"
399
-
400
- #: c:/temp/redirection/modules/apache.php:123
401
- msgid "Advanced: For management of external sites"
402
- msgstr "Avanzado: Para administración de sitios externos"
403
-
404
- #: c:/temp/redirection/modules/apache.php:138
405
- msgid "<strong>Location is invalid - check that path exists</strong>"
406
- msgstr "<strong>Localización invalida - verifique que la ruta existe</strong>"
407
-
408
- #: c:/temp/redirection/modules/apache.php:144
409
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
410
- msgstr "<strong>No se puede escribir al archivo <code>.htaccess</code> configurado - verifique permisos</strong>"
411
-
412
- #: c:/temp/redirection/modules/apache.php:151
413
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
414
- msgstr "<strong>Desabilitado: ingrese la ubicación del archivo <code>.htaccess</code> para que esto sea valido</strong>"
415
-
416
- #: c:/temp/redirection/modules/apache.php:156
417
- msgid "strip WWW"
418
- msgstr "quitar WWW"
419
-
420
- #: c:/temp/redirection/modules/apache.php:156
421
- msgid "force WWW"
422
- msgstr "forzar www"
423
-
424
- #: c:/temp/redirection/modules/apache.php:159
425
- #: c:/temp/redirection/modules/wordpress.php:231
426
- msgid "strip index"
427
- msgstr "quitar index"
428
-
429
- #: c:/temp/redirection/modules/apache.php:162
430
- #, php-format
431
- msgid "memory limit at %dMB"
432
- msgstr "limite de memoria en: %dMB"
433
-
434
- #: c:/temp/redirection/modules/apache.php:165
435
- #: c:/temp/redirection/modules/wordpress.php:242
436
- msgid "no errors"
437
- msgstr "sin errores"
438
-
439
- #: c:/temp/redirection/modules/apache.php:165
440
- #: c:/temp/redirection/modules/wordpress.php:242
441
- msgid "show errors"
442
- msgstr "mostrar errores"
443
-
444
- #: c:/temp/redirection/modules/apache.php:168
445
- msgid "IPs are banned"
446
- msgstr "Se prohiben IPs"
447
-
448
- #: c:/temp/redirection/modules/apache.php:171
449
- msgid "IPs are allowed"
450
- msgstr "Se permiten IPs"
451
-
452
- #: c:/temp/redirection/modules/apache.php:179
453
- #, php-format
454
- msgid " for external site: <code>%s</code>"
455
- msgstr " para sitio externo: <code>%s</code>"
456
-
457
- #: c:/temp/redirection/modules/wordpress.php:192
458
- msgid "Strip index files (html,php,asp)"
459
- msgstr "Quitar archivos index (html,php,asp)"
460
-
461
- #: c:/temp/redirection/modules/wordpress.php:200
462
- msgid "30 seconds"
463
- msgstr "30 segundos"
464
-
465
- #: c:/temp/redirection/modules/wordpress.php:200
466
- msgid "1 minute"
467
- msgstr "1 minuto"
468
-
469
- #: c:/temp/redirection/modules/wordpress.php:200
470
- msgid "2 minutes"
471
- msgstr "2 minutos"
472
-
473
- #: c:/temp/redirection/modules/wordpress.php:200
474
- msgid "5 minutes"
475
- msgstr "5 minutos"
476
-
477
- #: c:/temp/redirection/modules/wordpress.php:200
478
- msgid "As long as possible"
479
- msgstr "Lo máximo posible"
480
-
481
- #: c:/temp/redirection/modules/wordpress.php:236
482
- msgid "time limit set as long as possible"
483
- msgstr "limite de tiempo configurado como lo máximo posible"
484
-
485
- #: c:/temp/redirection/modules/wordpress.php:238
486
- #, php-format
487
- msgid "time limit at %ss"
488
- msgstr "tiempo limite a %ss"
489
-
490
- #: c:/temp/redirection/view/admin/add.php:3
491
- msgid "Add new redirection"
492
- msgstr "Añadir nueva redirección"
493
 
494
- #: c:/temp/redirection/view/admin/add.php:6
495
- msgid "Your redirection has been added."
496
- msgstr "Se ha agregado su redirección"
497
 
498
- #: c:/temp/redirection/view/admin/add.php:12
499
- msgid "Source URL"
500
- msgstr "URL origen"
501
 
502
- #: c:/temp/redirection/view/admin/add.php:16
503
- msgid "Match"
504
- msgstr "Coincidencia"
505
 
506
- #: c:/temp/redirection/view/admin/add.php:22
507
- msgid "Action"
508
- msgstr "Acción"
509
 
510
- #: c:/temp/redirection/view/admin/add.php:27
511
- msgid "Regular expression"
512
- msgstr "Expresión regular"
513
 
514
- #: c:/temp/redirection/view/admin/add.php:36
515
- msgid "Group"
516
- msgstr "Grupo"
517
 
518
- #: c:/temp/redirection/view/admin/add.php:43
519
- msgid "Add Redirection"
520
- msgstr "Añadir Redirection"
521
 
522
- #: c:/temp/redirection/view/admin/group_edit.php:6
523
- #: c:/temp/redirection/view/admin/group_list.php:31
524
- #: c:/temp/redirection/view/admin/group_list.php:93
525
- #: c:/temp/redirection/view/admin/module_edit.php:17
526
- #: c:/temp/redirection/view/admin/module_list.php:37
527
- msgid "Name"
528
- msgstr "Nombre"
529
 
530
- #: c:/temp/redirection/view/admin/group_edit.php:10
531
- msgid "Tracked"
532
- msgstr "Tracked"
533
 
534
- #: c:/temp/redirection/view/admin/group_edit.php:11
535
- msgid "Whether to track 'hits' to items"
536
- msgstr "Si se cuenta la cantidad de \"hits\" a items"
537
 
538
- #: c:/temp/redirection/view/admin/group_edit.php:14
539
- msgid "Enabled"
540
- msgstr "Habilitado"
541
 
542
- #: c:/temp/redirection/view/admin/group_edit.php:15
543
- msgid "Disabling a group will disable all items contained within it"
544
- msgstr "Deshablitar un grupo deshabilita todos los elementos que se encuentran dentro del mismo"
545
 
546
- #: c:/temp/redirection/view/admin/group_edit.php:21
547
- #: c:/temp/redirection/view/admin/item_edit.php:28
548
- #: c:/temp/redirection/view/admin/module_edit.php:27
549
- msgid "Cancel"
550
- msgstr "Cancelar"
551
 
552
- #: c:/temp/redirection/view/admin/group_item.php:4
553
- msgid "edit group"
554
- msgstr "editar grupo"
555
 
556
- #: c:/temp/redirection/view/admin/group_item.php:20
557
- #: c:/temp/redirection/view/admin/item.php:27
558
- msgid "disabled"
559
- msgstr "desactivado"
560
 
561
- #: c:/temp/redirection/view/admin/group_list.php:2
562
- msgid "Groups for module"
563
- msgstr "Grupos para módulo"
564
 
565
- #: c:/temp/redirection/view/admin/group_list.php:10
566
- #: c:/temp/redirection/view/admin/log.php:34
567
- msgid "Module"
568
- msgstr "Módulo"
569
 
570
- #: c:/temp/redirection/view/admin/group_list.php:15
571
- #: c:/temp/redirection/view/admin/item_list.php:18
572
- #: c:/temp/redirection/view/admin/log.php:12
573
- #: c:/temp/redirection/view/admin/log.php:19
574
- msgid "Search"
575
- msgstr "Buscar"
576
 
577
- #: c:/temp/redirection/view/admin/group_list.php:20
578
- msgid "go"
579
- msgstr "comenzar"
580
 
581
- #: c:/temp/redirection/view/admin/group_list.php:30
582
- #: c:/temp/redirection/view/admin/item_list.php:31
583
- #: c:/temp/redirection/view/admin/module_list.php:12
584
- msgid "Hits"
585
- msgstr "Hits"
586
 
587
- #: c:/temp/redirection/view/admin/group_list.php:53
588
- #: c:/temp/redirection/view/admin/item_list.php:56
589
- msgid "Select All"
590
- msgstr "Seleccionar todo"
591
 
592
- #: c:/temp/redirection/view/admin/group_list.php:54
593
- #: c:/temp/redirection/view/admin/item_list.php:57
594
- msgid "Toggle"
595
- msgstr "Desactivar/Activar"
596
 
597
- #: c:/temp/redirection/view/admin/group_list.php:55
598
- #: c:/temp/redirection/view/admin/item_list.php:58
599
- msgid "Reset Hits"
600
- msgstr "Reiniciar cuenta"
601
 
602
- #: c:/temp/redirection/view/admin/group_list.php:56
603
- #: c:/temp/redirection/view/admin/item_list.php:59
604
- #: c:/temp/redirection/view/admin/log.php:26
605
- #: c:/temp/redirection/view/admin/options.php:105
606
- msgid "Delete"
607
- msgstr "Eliminar"
608
 
609
- #: c:/temp/redirection/view/admin/group_list.php:58
610
- #: c:/temp/redirection/view/admin/item_list.php:61
611
- msgid "Move To"
612
- msgstr "Mover a"
613
 
614
- #: c:/temp/redirection/view/admin/group_list.php:68
615
- #: c:/temp/redirection/view/admin/item_list.php:72
616
- msgid "re-order"
617
- msgstr "re-ordenar"
618
 
619
- #: c:/temp/redirection/view/admin/group_list.php:69
620
- #: c:/temp/redirection/view/admin/item_list.php:73
621
- msgid "save order"
622
- msgstr "grabar orden"
623
 
624
- #: c:/temp/redirection/view/admin/group_list.php:82
625
- msgid "You have no groups in this module."
626
- msgstr "Usted no tiene grupos en este módulo."
627
 
628
- #: c:/temp/redirection/view/admin/group_list.php:87
629
- msgid "Add Group"
630
- msgstr "Añadir grupo"
631
 
632
- #: c:/temp/redirection/view/admin/group_list.php:98
633
- msgid "Add"
634
- msgstr "Añadir"
635
 
636
- #: c:/temp/redirection/view/admin/head.php:4
637
- msgid "Please wait..."
638
- msgstr "Por favor, espere..."
639
 
640
- #: c:/temp/redirection/view/admin/head.php:7
641
- msgid "Are you sure?"
642
- msgstr "Está seguro?"
643
 
644
- #: c:/temp/redirection/view/admin/head.php:8
645
- msgid "No items have been selected"
646
- msgstr "No se seleccionaron objetos"
647
 
648
- #: c:/temp/redirection/view/admin/item_edit.php:3
649
- #, php-format
650
- msgid "%s by matching %s"
651
- msgstr "%s por coincidencia de %s"
 
 
 
652
 
653
- #: c:/temp/redirection/view/admin/item_edit.php:7
654
- msgid "Title"
655
- msgstr "Título"
656
 
657
- #: c:/temp/redirection/view/admin/item_edit.php:10
 
 
 
 
658
  msgid "optional"
659
  msgstr "opcional"
660
 
661
- #: c:/temp/redirection/view/admin/item_list.php:3
662
- msgid "Redirections for group"
663
- msgstr "Redirecciones para el grupo"
664
 
665
- #: c:/temp/redirection/view/admin/item_list.php:23
666
- msgid "Go"
667
- msgstr "Comenzar"
668
 
669
- #: c:/temp/redirection/view/admin/item_list.php:30
670
- msgid "Last Access"
671
- msgstr "Último acceso"
672
 
673
- #: c:/temp/redirection/view/admin/item_list.php:32
674
- #: c:/temp/redirection/view/admin/module_list.php:41
675
- msgid "Type"
676
- msgstr "Tipo"
677
 
678
- #: c:/temp/redirection/view/admin/item_list.php:33
679
- msgid "URL"
680
- msgstr "URL"
681
 
682
- #: c:/temp/redirection/view/admin/item_list.php:33
683
- msgid "Position"
684
- msgstr "Posición"
685
 
686
- #: c:/temp/redirection/view/admin/item_list.php:77
687
- msgid "You have no redirections."
688
- msgstr "No tienes redirecciones"
689
 
690
- #: c:/temp/redirection/view/admin/log.php:2
691
- msgid "Redirection Log"
692
- msgstr "Registro de redirecciones"
693
 
694
- #: c:/temp/redirection/view/admin/log.php:25
695
- msgid "Bulk Actions"
696
- msgstr "Acciónes en bloque"
697
 
698
- #: c:/temp/redirection/view/admin/log.php:29
699
- msgid "Apply"
700
- msgstr "Aplicar"
701
 
702
- #: c:/temp/redirection/view/admin/log.php:45
703
- msgid "Filter"
704
- msgstr "Filtro"
705
 
706
- #: c:/temp/redirection/view/admin/log.php:63
707
- msgid "Date"
708
- msgstr "Fecha"
709
 
710
- #: c:/temp/redirection/view/admin/log.php:66
711
- msgid "IP"
712
- msgstr "IP"
713
 
714
- #: c:/temp/redirection/view/admin/log.php:79
715
- msgid "There are no logs to display!"
716
- msgstr "No hay registros para mostrar!"
 
717
 
718
- #: c:/temp/redirection/view/admin/log.php:88
719
- msgid "Process Current Logs"
720
- msgstr "Procesar registros actuales"
721
 
722
- #: c:/temp/redirection/view/admin/log.php:89
723
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
724
- msgstr "Esta acción afectara todos los registros disponibles (su frase de busqueda restringe los elementos registrados)."
725
 
726
- #: c:/temp/redirection/view/admin/log.php:94
727
- msgid "Delete Logs"
728
- msgstr "Borrar registros"
 
729
 
730
- #: c:/temp/redirection/view/admin/log.php:95
731
- msgid "Export to CSV"
732
- msgstr "Exportar a CSV"
733
 
734
- #: c:/temp/redirection/view/admin/log_item_details.php:9
735
- msgid "Redirect to"
736
- msgstr "Redirigir a"
 
 
737
 
738
- #: c:/temp/redirection/view/admin/log_item_details.php:15
739
- msgid "Redirected by"
740
- msgstr "Redirigido por"
741
 
742
- #: c:/temp/redirection/view/admin/log_item_details.php:16
743
- msgid "for"
744
- msgstr "para"
745
 
746
- #: c:/temp/redirection/view/admin/module_item.php:23
747
- msgid "View as"
748
- msgstr "Ver como"
749
 
750
- #: c:/temp/redirection/view/admin/module_item.php:25
751
- msgid "CSV"
752
- msgstr "CSV"
753
 
754
- #: c:/temp/redirection/view/admin/module_item.php:26
755
- msgid "XML"
756
- msgstr "XML"
757
 
758
- #: c:/temp/redirection/view/admin/module_item.php:28
759
- msgid "RSS"
760
- msgstr "RSS"
761
 
762
- #: c:/temp/redirection/view/admin/module_item.php:41
763
- msgid "edit"
764
- msgstr "editar"
765
 
766
- #: c:/temp/redirection/view/admin/module_item.php:44
767
- msgid "delete"
768
- msgstr "borrar"
769
 
770
- #: c:/temp/redirection/view/admin/module_item.php:47
771
- msgid "reset"
772
- msgstr "anular"
773
 
774
- #: c:/temp/redirection/view/admin/module_list.php:2
775
- #: c:/temp/redirection/view/admin/submenu.php:6
776
- msgid "Modules"
777
- msgstr "Módulos"
778
 
779
- #: c:/temp/redirection/view/admin/module_list.php:9
780
- msgid "Details"
781
- msgstr "Detalles"
782
 
783
- #: c:/temp/redirection/view/admin/module_list.php:10
784
- #: c:/temp/redirection/view/admin/submenu.php:5
785
- msgid "Groups"
786
- msgstr "Grupos"
787
 
788
- #: c:/temp/redirection/view/admin/module_list.php:11
789
- msgid "Items"
790
- msgstr "Items"
791
 
792
- #: c:/temp/redirection/view/admin/module_list.php:13
793
- msgid "Operations"
794
- msgstr "Operaciones"
795
 
796
- #: c:/temp/redirection/view/admin/module_list.php:22
797
- msgid "Note: Hits are dependant on log entries"
798
- msgstr "Nota: Los Hits depden de las entradas de su registro"
799
 
800
- #: c:/temp/redirection/view/admin/module_list.php:24
801
- msgid "You have no modules defined yet"
802
- msgstr "Usted no tiene ningún módulo definido aún"
803
 
804
- #: c:/temp/redirection/view/admin/module_list.php:29
805
- msgid "Add Module"
806
- msgstr "Agregar módulo"
807
 
808
- #: c:/temp/redirection/view/admin/module_list.php:30
809
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
810
- msgstr "Un módulo es un elemento de control que determina como se manejan las redirecciones. Los elementos en un módulo WordPress son manejados por WordPress, los elementos en un módulo Apache son manejados por <code>.htaccess</code>, y los elementos en un módulo 404 afectan como se registran los errores 404."
811
 
812
- #: c:/temp/redirection/view/admin/module_list.php:50
813
- msgid "Create"
814
- msgstr "Crear"
815
 
816
- #: c:/temp/redirection/view/admin/options.php:2
817
- #: c:/temp/redirection/view/admin/submenu.php:8
818
- msgid "Options"
819
- msgstr "Opciones"
820
 
821
- #: c:/temp/redirection/view/admin/options.php:11
822
- msgid "Auto-generate URL"
823
- msgstr "Auto generar URL"
824
 
825
- #: c:/temp/redirection/view/admin/options.php:15
826
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
827
- msgstr "Esto se utilizara para auto-generar un URL si no se da ningún URL. Puede usar las etiquetas especiales $dec$ o $hex$ para que se inserte un ID único (decimal o hex, uno de los dos)"
828
 
829
- #: c:/temp/redirection/view/admin/options.php:20
830
- msgid "IP Lookup Service"
831
- msgstr "Servicio de busqueda de IP"
832
 
833
- #: c:/temp/redirection/view/admin/options.php:26
834
- msgid "Plugin Support"
835
- msgstr "Soporte de Plugin"
836
 
837
- #: c:/temp/redirection/view/admin/options.php:29
838
- msgid "I'm a nice person and I have helped support the author of this plugin"
839
- msgstr "Soy una buena persona y ayude al autor de este plugin"
840
 
841
- #: c:/temp/redirection/view/admin/options.php:33
842
- msgid "Expire Logs"
843
- msgstr "Registro de expirados"
 
844
 
845
- #: c:/temp/redirection/view/admin/options.php:36
846
- msgid "days (enter 0 for no expiry)"
847
- msgstr "días (ingresar 0 para que no expire)"
848
 
849
- #: c:/temp/redirection/view/admin/options.php:40
850
- msgid "RSS Token"
851
- msgstr "Token RSS"
852
 
853
- #: c:/temp/redirection/view/admin/options.php:43
854
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
855
- msgstr "Un identificador único que permite a los lectores RSS acceder a Redirection (dejar en blanco para auto-generarlo)"
856
 
857
- #: c:/temp/redirection/view/admin/options.php:48
858
- msgid "URL Monitoring"
859
- msgstr "Monitoreo de URL"
860
 
861
- #: c:/temp/redirection/view/admin/options.php:49
862
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
863
- msgstr "Puede hacer que Redirection detecte cambios en las URL y tener una redirección automáticamente creada dentro de un grupo especifico."
 
864
 
865
- #: c:/temp/redirection/view/admin/options.php:53
866
- msgid "Post &amp; Page URLs"
867
- msgstr "URLs de Entradas &amp; Páginas"
868
 
869
- #: c:/temp/redirection/view/admin/options.php:56
870
- #: c:/temp/redirection/view/admin/options.php:67
871
- msgid "Don't monitor"
872
- msgstr "No detectar"
873
 
874
- #: c:/temp/redirection/view/admin/options.php:60
875
- msgid "Monitor new posts"
876
- msgstr "Detectar nuevos artìculos"
877
 
878
- #: c:/temp/redirection/view/admin/options.php:64
879
- msgid "Category URLs"
880
- msgstr "URLs de categorías"
881
 
882
- #: c:/temp/redirection/view/admin/options.php:74
883
- msgid "Update"
884
- msgstr "Actualizar"
885
 
886
- #: c:/temp/redirection/view/admin/options.php:80
887
- msgid "Import"
888
- msgstr "Importar"
 
889
 
890
- #: c:/temp/redirection/view/admin/options.php:82
891
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
892
- msgstr "Aquí puede importar redirecciones de un archivo .htaccess, un archivo CSV (separado por comas), o un archivo XML de Redirection."
 
893
 
894
- #: c:/temp/redirection/view/admin/options.php:89
895
- msgid "Import into"
896
- msgstr "Importar a"
 
 
 
897
 
898
- #: c:/temp/redirection/view/admin/options.php:92
899
- msgid "Upload"
900
- msgstr "Subir"
901
 
902
- #: c:/temp/redirection/view/admin/options.php:95
903
- msgid "Note that the group is ignored when uploading an XML file."
904
- msgstr "Note que el grupo es ignorado cuando carga un archivo XML."
905
 
906
- #: c:/temp/redirection/view/admin/options.php:99
907
- msgid "Delete Redirection"
908
- msgstr "Borrar Redirection"
909
 
910
- #: c:/temp/redirection/view/admin/options.php:100
911
- 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."
912
- 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."
913
 
914
- #: c:/temp/redirection/view/admin/submenu.php:4
915
- msgid "Redirects"
 
 
 
 
 
 
 
 
916
  msgstr "Redirecciones"
917
 
918
- #: c:/temp/redirection/view/admin/submenu.php:7
919
- msgid "Log"
920
- msgstr "Log"
921
 
922
- #: c:/temp/redirection/view/admin/support.php:2
923
- msgid "Redirection Support"
924
- msgstr "Soporte Técnico de Redirection"
925
 
926
- #: c:/temp/redirection/view/admin/support.php:4
927
- msgid "Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested."
928
- msgstr "Redirection ha llevado mucho tiempo y esfuerzo para desarrollar. Si le resultó útil entonces puede ayudar a su desarrollo por medio de una <strong>pequeña donación de $8</strong>. Esto servirá de incentivo para que continue con el desarrollo, proveyendo incontables horas de soporte, e incluyendo las mejoras que son sugeridas."
929
 
930
- #: c:/temp/redirection/view/admin/support.php:25
931
- msgid "Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>."
932
- msgstr "Como alternativa, si usted es multi-lingüe, considere traducir el original a otro idioma. Todos los archivos de localisación están incluidos y he escrito una <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guia completa al procedimiento de traducción</a>."
933
 
934
- #: c:/temp/redirection/view/admin/support.php:27
935
- msgid "Other plugins"
936
- msgstr "Otros plugins"
937
 
938
- #: c:/temp/redirection/view/admin/support.php:29
939
- msgid "You may also be interested in some of my other plugins:"
940
- msgstr "Usted puede estar interesado en alguno de estos otros plugins:"
941
 
942
- #: c:/temp/redirection/view/admin/support.php:32
943
- msgid "HeadSpace"
944
- msgstr "HeadSpace"
945
 
946
- #: c:/temp/redirection/view/admin/support.php:32
947
- msgid "The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!"
948
- msgstr "El más completo administrador de meta-datos para SEO y plugins de todo tipo para WordPress. Sustituya cinco o seis plugins con un solo super-plugin!"
949
 
950
- #: c:/temp/redirection/view/admin/support.php:33
951
- msgid "Search Unleashed"
952
- msgstr "Search Unleashed"
953
 
954
- #: c:/temp/redirection/view/admin/support.php:33
955
- msgid "Attractive searches that go beyond the default WordPress search and increase the usefulness of your site."
956
- msgstr "Busquedas atractivas que van más alla de las originales de WordPress y aumentan la utilidad de su sitio."
957
 
958
- #: c:/temp/redirection/view/admin/support.php:34
959
- msgid "Sniplets"
960
- msgstr "Sniplets"
961
 
962
- #: c:/temp/redirection/view/admin/support.php:34
963
- msgid "very flexible and powerful text insertion that allows you to insert what you want, wherever you want it."
964
- msgstr "flexible y poderosa inserción de texto que le permite agregar lo que desee, donde lo desee."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
 
966
- #: c:/temp/redirection/view/admin/support.php:37
967
- msgid "This notice will only be shown at periodic intervals."
968
- msgstr "Este aviso solo se mostrar a intervalos periódicos"
 
 
 
 
969
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Spanish (Spain)
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-09 16:23:30+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: es\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr "Algo fue mal 🙁"
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ 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! "
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr "No funcionó al intentarlo de nuevo"
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr "Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr "Si el problema no se conoce al tratar de desactivar otros plugins - es fácil hacerlo, y puedes volver a activarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos, y conocer esto pronto ayudará mucho."
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr "Si es un problema nuevo entonces, por favor, crea un nuevo aviso de problemas o envíalo directamente a john@urbangiraffe.com. Incluye una descripción de lo que estabas tratando de hacer y los detalles importantes detallados abajo. Si puedes incluir un captura entonces incluso mejor."
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr "Detalles importantes de lo que fuese que hayas hecho"
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr "Por favor, incluye estos detalles en tu informe"
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr "Entradas del registro (máximo 100)"
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr "Fallo al cargar"
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr "Quitar WWW"
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr "Añadir WWW"
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr "Buscar por IP"
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr "Elegir acción en lote"
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr "Acciones en lote"
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr "Aplicar"
 
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr "Primera página"
 
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr "Página anterior"
 
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr "Página actual"
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr "de %(página)s"
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr "Página siguiente"
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr "Última página"
 
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] "%s elemento"
106
+ msgstr[1] "%s elementos"
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr "Elegir todos"
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr "Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr "No hay resultados"
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr "Borrar los registros - ¿estás seguro?"
 
 
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ 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."
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr "¡Sí! Borra los registros"
 
 
 
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr "¡No! No borres los registros"
 
 
 
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr "Redirección 404"
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr "¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr "Boletín"
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr "¿Quieres estar al día de los cambios en Redirection?"
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ 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."
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr "Tu dirección de correo electrónico:"
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr "He borrado una redirección, ¿por qué aún sigue redirigiendo?"
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr "Tu navegador cachea las redirecciones. Si has borrado una redirección y tu navegaor aún hace la redirección entonces {{a}}vacía la caché de tu navegador{{/a}}."
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr "¿Puedo abrir una redirección en una nueva pestaña?"
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr "No es posible hacer esto en el servidor. Tendrás que añadir {{code}}target=\"blank\"{{/code}} a tu enlace."
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr "¡Algo no funciona!"
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr "Por favor, desactiva todos los demás plugins y comprueba si persiste el problema. Si así fuera infórmalo {{a}}aquí{{/a}} con todos los detalles del problema y un modo de reproducirlo."
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr "Preguntas frecuentes"
 
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr "¿Necesitas ayuda? Puede que una de estas preguntas te ofrezca una respuesta"
 
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr "Ya has apoyado a este plugin - ¡gracias!"
 
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr "Me gustaría donar algo más"
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr "Tienes un software útil y yo seguiré haciéndolo mejor."
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr "Por favor, se consciente de que no ofrezco soporte, y que esto es solo un donativo."
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr "Sí, me gustaría donar"
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr "¡Gracias por hacer un donativo!"
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr "Siempre"
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr "Fallo al guardar los datos"
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr "Fallo al cargar los datos"
 
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr "Formato CSV"
 
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr "URL de origen, URL de destino, [Regex 0=false, 1=true], [HTTP Code]"
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr "Borrar el plugin - ¿estás seguro?"
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ 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. "
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ 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."
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr "¡Sí! Borrar el plugin"
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr "¡No! No borrar el plugin"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Ajustes avanzados"
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ 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}}. "
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Soporte de Redirection"
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Soporte"
 
 
 
 
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s desde %s"
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Borrar Redirection"
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Subir"
 
 
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr "Aquí puedes importar tus redirecciones desde un archivo {{code}}.htaccess{{/code}} existente, o un archivo CSV."
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importar"
 
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Actualizar"
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr "Esto será usado para generar automáticamente una URL si no ha sido dada previamente. Puedes usar las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para tener una ID única insertada (tanto decimal como hexadecimal)"
 
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Auto generar URL"
 
 
 
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ 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)"
331
 
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Token RSS"
 
 
335
 
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "No detectar"
 
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Monitorizar cambios en entradas"
 
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "Registros 404"
 
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(tiempo que se mantendrán los registros)"
 
 
 
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Registros de redirecciones"
 
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Soy una buena persona y ayude al autor de este plugin"
 
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Soporte del plugin"
 
363
 
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Opciones"
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Dos meses"
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Un mes"
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Una semana"
379
 
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Un dia"
383
 
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "No hay logs"
387
 
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Módulos"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "Exportar a CSV"
395
 
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Borrar todo"
399
 
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Registro de redirecciones"
403
+
404
+ #: view/item-edit.php:14
405
  msgid "optional"
406
  msgstr "opcional"
407
 
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Copias de seguridad de bases de datos"
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
 
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Añadir grupo"
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Buscar"
 
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Grupos"
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Guardar"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Añadir redirección"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Grupo"
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Expresión regular"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Acción"
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Coincidencia"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Se ha agregado tu redirección"
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Añadir nueva redirección"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Cancelar"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Descargar"
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Lo siento, pero tu redirección no fue creada"
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "No se pudo realizar la acción"
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Ningún elemento importado"
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redirección importada correctamente"
486
+ msgstr[1] "%d redirecciones importadas correctamente"
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Tus ajustes se actualizaron"
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Ajustes"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "Redirecciones gestionadas por WordPress. No requiere configuración adicional y puedes registrar los accesos"
503
 
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Para utilizar en servidores Nginx. Requiere configuración manual. La redirección sucede sin cargar WordPress. No hay registro de accesos. Es un módulo experimental."
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr "Utiliza archivos {{code}}.htaccess{{/code}} de Apache. Requiere configuración adicional. La redirección se realiza sin cargar WordPress. No se realiza un registro de accesos."
511
 
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Eliminar o añadir automáticamente www a tu sitio."
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Servidor por defecto"
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "URL canónica"
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress está instalado en: {{code}}%s{{/code}}"
 
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr "Si quieres que Redirection automáticamente actualice tu archivo {{code}}.htaccess{{/code}} introduce la ruta completa y nombre de archivo aquí. También puedes descargar el archivo y actualizarlo manualmente."
531
 
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr "Ubicación de .htaccess"
 
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "No hacer nada"
539
 
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Error (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Pasar directo"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redirigir a entrada aleatoria"
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirigir a URL"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Imposible añadir una nueva redirección - elimina Redirection desde la página de opciones y reinstala"
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "URL de origen no válida a la hora de crear una redirección desde un tipo de conexión previo"
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Grupo no válido a la hora de crear la redirección"
 
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Solo puedes redireccionar de una URL relativa (<code>%s</code>) en este dominio (<code>%s</code>)."
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "La URL de origen y destino deben ser diferentes"
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configurar"
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Mostrar sólo esta IP"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL origen"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Fecha"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Añadir redirección"
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Todos los módulos"
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Ver redirecciones"
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Módulo"
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redirecciones"
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nombre"
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtro"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Sin filtro de grupo"
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Reiniciar cuenta"
634
 
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Habilitar"
639
 
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Desactivar"
644
 
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Eliminar"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Editar"
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Último acceso"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Tipo"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Entradas modificadas"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
  msgstr "Redirecciones"
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "El visitante será redireccionado de la URL origen si el agente de usuario concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado.\n"
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Agente usuario HTTP"
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
 
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
 
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
 
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
 
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
 
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
 
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
 
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
 
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
 
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL y cliente de usuario (user agent)"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "URL destino"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Sólo URL"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Sin coincidencia"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Concuerda"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "El visitante será redireccionado de la URL origen si el referente concuerda. Puede especificar una URL destino si <em>concuerda</em> como la dirección a donde enviar los visitantes en caso de concordancia, y <em>no concuerda</em> en caso de que no lo haga. Si deja la URL vacía el visitante no será redireccionado"
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "Código HTTP"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Expresión regular"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referente"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL y referente"
767
 
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Desconectado"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Conectado"
775
 
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "La URL destino será elegida entre las URL que siguen, dependiendo si el usuario se encuentra validado o no. Si deja la URL vacía el usuario no serà redireccionado."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "Estado de URL y conexión"
locale/redirection-fi.mo ADDED
Binary file
locale/redirection-fi.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Finnish
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-04-13 10:15:22+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: fi\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
+
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
+
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
+
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
+
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
+
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
+
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
+
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
+
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
+
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
+
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
151
+
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
+
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
159
+
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
163
+
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
+
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
+
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
+
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
+
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
+
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
+
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
+
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
+
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
+
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
+
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
+
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
+
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
215
+
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
219
+
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
223
+
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
+
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
+
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
+
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
+
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
+
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
+
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
+
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
255
+
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Edistyneet asetukset"
259
+
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
+
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
+
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Hallitse 301-uudelleenohjauksia ja seuraa 404-virheitä"
271
+
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
+
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
+
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Redirection-tuki"
283
+
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Tuki"
287
+
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404:t"
291
+
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404:t osoitteesta %s"
295
+
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Loki"
299
+
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Poista Redirection-lisäosa"
303
+
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Siirrä palvelimelle"
307
+
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
+
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Tuonti"
315
+
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Päivitä"
319
+
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
+
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Luo URL automaattisesti"
327
+
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "Uniikki merkkijono (token), jonka avulla RSS-lukijat pääsevät Redirection-lokiin (jätä tyhjäksi, jos haluat että se luodaan automaattisesti)"
331
+
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "RSS Token"
335
+
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Älä monitoroi"
339
+
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Seuraa muutoksia sisällön osoitteissa"
343
+
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "404-lokit"
347
+
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(aika lokien säilyttämiseen)"
351
+
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Uudelleenohjausloki"
355
+
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Olen kiva typpi ja olen auttanut tukemalla lisäosan kehittäjää"
359
+
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr ""
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Asetukset"
367
+
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Kaksi kuukautta"
371
+
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Kuukausi"
375
+
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Viikko"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Päivä"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Ei lokeja"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Moduulit"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr ""
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Poista kaikki"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Uudelleenohjausloki"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "valinnainen"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Kuvaus"
411
+
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ msgstr "Käytä ryhmiä uudelleenohjauksiesi organisoimiseen. Ryhmät on asetettu moduuleille, mikä vaikuttaa kuinka sen ryhmän uudelleenohjaukset toimivat. Jos olet epävarma, pysyttele WordPress-moduulissa."
415
+
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Lisää Ryhmä"
419
+
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Haku"
423
+
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Ryhmät"
427
+
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Tallenna"
431
+
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Lisää uudelleenohjaus"
435
+
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Ryhmä"
439
+
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Säännöllinen lauseke (regex)"
443
+
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Toiminto"
447
+
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Vertaa"
451
+
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Uudelleenohjaus lisätty."
455
+
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Lisää uusi uudelleenohjaus"
459
+
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Peruuta"
464
+
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Lataa"
468
+
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Pahoittelut. Uudelleenohjausta ei luotu"
472
+
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Toimintoa ei voida suorittaa"
477
+
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Yhtään merkintää ei tuotu"
481
+
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d uudelleenohjaus tuotiin onnistuneesti"
486
+ msgstr[1] "%d uudelleenohjausta tuotiin onnistuneesti"
487
+
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Asetukset päivitetty"
491
+
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Uudelleenohjaus"
495
+
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Asetukset"
499
+
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "WordPressin tekemät uudelleenohjaukset. Tämä ei vaadi enempää konfigurointia ja voit tutkia käyttömääriä."
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Käytettäväksi Nginx-palvelimille. Vaatii manuaalisen asennuksen. Uudelleenohjaus tapahtuu lataamatta WordPressiä. Käyttömääriä ei seurata. Tämä on kokeellinen moduuli."
507
+
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Lisää tai poista www automaattisesti sivustollesi."
515
+
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Oletuspalvelin"
519
+
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "Kanoninen URL"
523
+
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr ""
527
+
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess-tiedoston sijainti"
535
+
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Älä tee mitään"
539
+
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Virhe (404)"
543
+
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Läpikulku"
547
+
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Uudelleenohjaus satunnaiseen artikkeliin"
551
+
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Uudelleenohjaa osoitteeseen"
555
+
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Uutta uudelleenohjausta ei voitu tehdä - poista Redirection asetuksista ja asenna uudestaan"
559
+
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "Lähdeosoite ei kelpaa tälle vertailutyypille"
563
+
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Epäkelpo ryhmä uudelleenohjausta luotaessa"
567
+
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Voit tehdä uudelleenohjauksia ainoastaan relatiivisista URL-osoittesta (<code>%s</code>) tällä domainilla (<code>%s</code>)."
571
+
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Lähde- ja kohdeosoitteiden tulee erota toisistaan"
575
+
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Konfiguroi"
579
+
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Näytä vain Tämä IP"
583
+
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
+
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "Lähde-URL"
592
+
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Päiväys"
596
+
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr ""
600
+
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Kaikki moduulit"
604
+
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Näytä uudelleenohjaukset"
608
+
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Moduuli"
613
+
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Uudelleenohjaukset"
617
+
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nimi"
622
+
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Suodata"
626
+
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Ei ryhmäsuodatinta"
630
+
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Nollaa osumat"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Käytä"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Poista käytöstä"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Poista"
651
+
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Muokkaa"
655
+
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Käytetty viimeksi"
659
+
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Osumat"
663
+
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
+
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Laji"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Muokatut artikkelit"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Uudelleenohjaukset"
679
+
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "Kävijä ohjataan lähtöosoitteesta jos user agent täsmää. Voit syöttää <em>verrattavan</em> kohdeosoitteen paikaksi, jonne halutut kävijät uudelleenohjataan sekä niille, joiden osoite <em>ei täsmää</em>. Jos jätät URL-osoitteen tyhjäksi, kävijää ei ohjata. <strong>Kaikki vertailu tehdään säännönmukaisilla lauseilla (regex)</strong>.\n"
683
+
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Selain"
687
+
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL ja user agent"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Kohde-URL"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Vain URL"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Ei-täsmäävät"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Täsmäävät"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "Kävijä uudelleenohjataan lähtöosoitteesta jos referrer-tieto täsmää. Voit syöttää <em>täsmääville</em> kohdeosoitteen ja <em>muille</em> oman osoitteen. Jos jätät URL-osoitteen tyhjäksi, kävijää ei uudelleenohjata."
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP-koodi"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referrer"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL ja referrer"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Kirjautumaton"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Kirjautunut"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "Kohdeosoite valitaan seuraavista osoitteista riippuen onko käyttäjä kirjautunut sisään. Jos jätät URL-osoitteen tyhjäksi, käyttäjää ei uudelleenohjata."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL ja kirjautumistila"
locale/redirection-fr_FR.mo CHANGED
Binary file
locale/redirection-fr_FR.po CHANGED
@@ -1,1023 +1,782 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: Redirection 1.7.26\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2009-06-16 10:53+0100\n"
11
- "PO-Revision-Date: 2009-06-16 11:05+0100\n"
12
- "Last-Translator: serge rauber <http://wp.kalyxstudio.com/contact>\n"
13
- "Language-Team: Thomas Parisot aka Oncle Tom <thomas@oncle-tom.net>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: French\n"
18
- "X-Poedit-Country: FRANCE\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
20
- "X-Poedit-KeywordsList: __;_e;__ ;_e\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Poedit-SearchPath-0: ..\n"
23
- "X-Poedit-SearchPath-1: .\n"
24
-
25
- #: ../ajax.php:368
26
- msgid "Sorry, but your redirection was not created"
27
- msgstr "Désolé, mais votre redirection n'a pas été créée"
28
 
29
- #: ../redirection.php:104
30
- msgid "Settings"
31
- msgstr "Réglages"
32
 
33
- #: ../redirection.php:111
34
- msgid "Redirection Help"
35
- msgstr "Redirection - Aide"
36
 
37
- #: ../redirection.php:112
38
- msgid "Redirection Documentation"
39
- msgstr "Redirection - Documentation"
40
 
41
- #: ../redirection.php:113
42
- msgid "Redirection Support Forum"
43
- msgstr "Redirection - Forum d'entraide "
44
 
45
- #: ../redirection.php:114
46
- msgid "Redirection Bug Tracker"
47
- msgstr "Redirection - Rapport de bug "
48
 
49
- #: ../redirection.php:115
50
- msgid "Redirection FAQ"
51
- msgstr "Redirection - FAQ "
52
 
53
- #: ../redirection.php:116
54
- msgid "Please read the documentation and FAQ, and check the bug tracker, before asking a question."
55
- msgstr "Veuillez lire la documentation et la FAQ, et consulter le rapport de bug avant de poser des questions."
56
 
57
- #: ../redirection.php:178
58
- msgid "Redirection"
59
- msgstr "Redirection"
60
 
61
- #: ../redirection.php:221
62
- msgid "Your module was successfully created"
63
- msgstr "Votre module a bien été créé"
64
 
65
- #: ../redirection.php:225
66
- msgid "Your module was not created - did you provide a name?"
67
- msgstr "Votre module n'a pas été créé - avez-vous fourni un nom?"
68
 
69
- #: ../redirection.php:287
70
- msgid "Your options were updated"
71
- msgstr "Vos options ont été mises à jour"
72
 
73
- #: ../redirection.php:295
74
- msgid "Redirection data has been deleted and the plugin disabled"
75
- msgstr "Les données de Redirection ont été supprimées et l'extension désactivée"
76
 
77
- #: ../redirection.php:307
78
- msgid "No items were imported"
79
- msgstr "Aucun item n'a été importé"
80
 
81
- #: ../redirection.php:325
82
- msgid "Your logs have been deleted"
83
- msgstr "Votre archivage a été effacé"
84
 
85
- #: ../redirection.php:348
86
- msgid "Your group was added successfully"
87
- msgstr "Votre groupe a bien été ajouté"
88
 
89
- #: ../redirection.php:352
90
- msgid "Please specify a group name"
91
- msgstr "Veuillez spécifier un nom de groupe"
92
 
93
- #: ../fileio/csv.php:21
94
- #, php-format
95
- msgid "module_%d.csv"
96
- msgstr "module_%d.csv"
97
 
98
- #: ../fileio/xml.php:32
99
- #, php-format
100
- msgid "module_%d.xml"
101
- msgstr "module_%d.xml"
102
 
103
- #: ../fileio/xml.php:105
104
- #, php-format
105
- msgid "%s imported on %s at %s"
106
- msgstr "%s importé sur %s à %s"
107
 
108
- #: ../fileio/xml.php:168
109
- msgid "XML importing is only available with PHP5 - you have PHP4."
110
- msgstr "L'importation XML est seulement disponible avec PHP5 - vous avez PHP4"
111
 
112
- #: ../matches/login.php:25
113
- msgid "URL and login status"
114
- msgstr "URL et statut de connexion"
115
 
116
- #: ../matches/login.php:32
117
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
118
- msgstr "L'URL cible sera choisie à partir d'une des adresses suivantes, selon que l'utilisateur est connecté ou non. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé."
119
 
120
- #: ../matches/login.php:37
121
- #: ../matches/login.php:39
122
- msgid "Logged In"
123
- msgstr "Connecté"
 
124
 
125
- #: ../matches/login.php:47
126
- #: ../matches/login.php:49
127
- msgid "Logged Out"
128
- msgstr "Déconnecté"
129
 
130
- #: ../matches/referrer.php:28
131
- msgid "URL and referrer"
132
- msgstr "URL et site référant"
133
 
134
- #: ../matches/referrer.php:40
135
- msgid "Referrer"
136
- msgstr "Référant"
137
 
138
- #: ../matches/referrer.php:43
139
- msgid "Regex"
140
- msgstr "Motif"
141
 
142
- #: ../matches/referrer.php:47
143
- #: ../matches/url.php:40
144
- #: ../matches/user_agent.php:56
145
- msgid "HTTP Code"
146
- msgstr "Code HTTP"
147
 
148
- #: ../matches/referrer.php:57
149
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
150
- msgstr "Le visiteur sera redirigé si le site référent correspond. Vous pouvez spécifier une URL cible pour les visiteurs venant d'un site, ou ne venant pas d'un site. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé."
151
 
152
- #: ../matches/referrer.php:63
153
- #: ../matches/referrer.php:65
154
- #: ../matches/user_agent.php:74
155
- #: ../matches/user_agent.php:76
156
- msgid "Matched"
157
- msgstr "Correspond "
158
 
159
- #: ../matches/referrer.php:73
160
- #: ../matches/referrer.php:75
161
- #: ../matches/user_agent.php:84
162
- #: ../matches/user_agent.php:86
163
- msgid "Not matched"
164
- msgstr "Ne correspond pas à"
165
 
166
- #: ../matches/url.php:25
167
- msgid "URL only"
168
- msgstr "une URL"
169
 
170
- #: ../matches/url.php:32
171
- msgid "Target URL"
172
- msgstr "URL cible"
173
 
174
- #: ../matches/user_agent.php:27
175
- msgid "URL and user agent"
176
- msgstr "URL et User-Agent"
177
 
178
- #: ../matches/user_agent.php:33
179
- msgid "FeedBurner"
180
- msgstr "FeedBurner"
181
 
182
- #: ../matches/user_agent.php:34
183
- msgid "Internet Explorer"
184
- msgstr "Internet Explorer"
185
 
186
- #: ../matches/user_agent.php:35
187
- msgid "FireFox"
188
- msgstr "FireFox"
189
 
190
- #: ../matches/user_agent.php:36
191
- msgid "Opera"
192
- msgstr "Opera"
193
 
194
- #: ../matches/user_agent.php:37
195
- msgid "Safari"
196
- msgstr "Safari"
197
 
198
- #: ../matches/user_agent.php:38
199
- msgid "iPhone"
200
- msgstr "iPhone"
201
 
202
- #: ../matches/user_agent.php:39
203
- msgid "Nintendo Wii"
204
- msgstr "Nintendo Wii"
205
 
206
- #: ../matches/user_agent.php:44
207
- msgid "User Agent"
208
- msgstr "Agent utilisateur"
209
 
210
- #: ../matches/user_agent.php:67
211
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
212
- msgstr "Le visiteur sera rediriger selon l'<em>User-Agent</em>. Vous pouvez spécifier une URL si l'<em>user agent</em> correspond, et s'il ne correspond pas. Laisser l'URL vide signifie que l'utilisateur n'est pas redirigé. <strong>Les correspondances sont faites avec des expressions régulières</strong>.\n"
213
 
214
- #: ../models/database.php:110
215
- #: ../models/module.php:168
216
- msgid "WordPress"
217
- msgstr "WordPress"
218
 
219
- #: ../models/database.php:111
220
- #: ../models/module.php:167
221
- msgid "Apache"
222
- msgstr "Apache"
223
 
224
- #: ../models/database.php:112
225
- #: ../models/module.php:169
226
- msgid "404 Errors"
227
- msgstr "Erreurs 404"
228
 
229
- #: ../models/database.php:118
230
- msgid "Redirections"
231
- msgstr "Redirections"
232
 
233
- #: ../models/database.php:119
234
- msgid "Modified posts"
235
- msgstr "Articles modifiés"
236
 
237
- #: ../models/module.php:192
238
- msgid "Strip WWW"
239
- msgstr "Strip WWW"
240
 
241
- #: ../models/module.php:192
242
- msgid "Force WWW"
243
- msgstr "Forcer WWW"
244
 
245
- #: ../models/module.php:198
246
- msgid "Strip index.php"
247
- msgstr "Enlever index.php"
248
 
249
- #: ../models/pager.php:404
250
- msgid "Previous"
251
- msgstr "Précédent"
252
 
253
- #: ../models/pager.php:405
254
- msgid "Next"
255
- msgstr "Suivant"
256
 
257
- #: ../models/pager.php:463
258
- #, php-format
259
- msgid "%d per-page"
260
- msgstr "%d par page"
261
 
262
- #: ../models/pager.php:472
263
- #, php-format
264
- msgid "Displaying %s&#8211;%s of %s"
265
- msgstr "Affichage %s&#8211;%s sur %s"
266
 
267
- #: ../models/redirect.php:403
268
- msgid "Redirect to URL"
269
- msgstr "Rediriger vers une URL"
270
 
271
- #: ../models/redirect.php:404
272
- msgid "Redirect to random post"
273
- msgstr "Rediriger vers un article aléatoire"
274
 
275
- #: ../models/redirect.php:405
276
- msgid "Pass-through"
277
- msgstr "Transiter par"
278
 
279
- #: ../models/redirect.php:406
280
- msgid "Error (404)"
281
- msgstr "N'existe plus (erreur 404)"
282
 
283
- #: ../models/redirect.php:407
284
- msgid "Do nothing"
285
- msgstr "Ne rien faire"
286
 
287
- #: ../modules/404.php:37
288
- msgid "Log 404s"
289
- msgstr "Journaux des erreurs 404"
290
-
291
- #: ../modules/404.php:46
292
- #: ../modules/wordpress.php:228
293
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
294
- msgstr "<strong>Désactivé: vous devez activer <a href=\"options-permalink.php\">les permaliens</a> avant de l'utiliser</strong>"
295
-
296
- #: ../modules/404.php:57
297
- #: ../modules/wordpress.php:252
298
- msgid "<small>No options have been set</small>"
299
- msgstr "<small>Aucune option n'a été choisie</small>"
300
-
301
- #: ../modules/apache.php:65
302
- msgid "Location"
303
- msgstr "Emplacement"
304
-
305
- #: ../modules/apache.php:70
306
- #, php-format
307
- msgid "WordPress is installed in: <code>%s</code>"
308
- msgstr "WordPress est installé dans: <code>%s</code>"
309
-
310
- #: ../modules/apache.php:75
311
- #: ../modules/wordpress.php:189
312
- msgid "Canonical"
313
- msgstr "canonique"
314
-
315
- #: ../modules/apache.php:78
316
- #: ../modules/apache.php:84
317
- #: ../modules/wordpress.php:192
318
- #: ../modules/wordpress.php:197
319
- msgid "Leave as is"
320
- msgstr "Laisser comme ça"
321
-
322
- #: ../modules/apache.php:78
323
- #: ../modules/wordpress.php:192
324
- #, php-format
325
- msgid "Strip WWW (%s)"
326
- msgstr "Enlever Www (%s)"
327
-
328
- #: ../modules/apache.php:78
329
- #: ../modules/wordpress.php:192
330
- #, php-format
331
- msgid "Force WWW (www.%s)"
332
- msgstr "forcer WWW (www.%s)"
333
-
334
- #: ../modules/apache.php:82
335
- #: ../modules/wordpress.php:195
336
- msgid "Strip Index"
337
- msgstr "Enlever l'index"
338
-
339
- #: ../modules/apache.php:84
340
- msgid "Strip index files (html,php)"
341
- msgstr "Enlever les fichiers index (html,php)"
342
-
343
- #: ../modules/apache.php:89
344
- msgid "Memory Limit"
345
- msgstr "Limite Mémoire"
346
-
347
- #: ../modules/apache.php:92
348
- #: ../modules/apache.php:97
349
- #: ../modules/wordpress.php:205
350
- #: ../modules/wordpress.php:210
351
- msgid "Server default"
352
- msgstr "valeur serveur"
353
-
354
- #: ../modules/apache.php:95
355
- #: ../modules/wordpress.php:208
356
- msgid "Error Level"
357
- msgstr "Niveau d'erreur"
358
-
359
- #: ../modules/apache.php:97
360
- msgid "No errors"
361
- msgstr "Pas d'erreur"
362
-
363
- #: ../modules/apache.php:97
364
- msgid "Show errors"
365
- msgstr "Afficher les erreurs"
366
-
367
- #: ../modules/apache.php:102
368
- msgid "Ban IPs"
369
- msgstr "Bannir des IP"
370
-
371
- #: ../modules/apache.php:108
372
- msgid "Allow IPs"
373
- msgstr "Autoriser des IP"
374
-
375
- #: ../modules/apache.php:114
376
- msgid "Raw .htaccess"
377
- msgstr ".htacess brut"
378
-
379
- #: ../modules/apache.php:120
380
- msgid "Site URL"
381
- msgstr "URL source"
382
 
383
- #: ../modules/apache.php:123
384
- msgid "Advanced: For management of external sites"
385
- msgstr "Avancé: pour la gestion de sites externes"
386
-
387
- #: ../modules/apache.php:138
388
- msgid "<strong>Location is invalid - check that path exists</strong>"
389
- msgstr "<strong>Emplacement invalide - vérifier que l'adresse existe</strong<"
390
-
391
- #: ../modules/apache.php:144
392
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
393
- msgstr "<strong>Impossible d'écrire sur le fichier <code>.htaccess</code> - vérifiez les permissions du fichier</strong>"
394
-
395
- #: ../modules/apache.php:151
396
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
397
- msgstr "<strong>Désactivé: entrez l'emplacement du fichier <code>.htaccess</code></strong>"
398
-
399
- #: ../modules/apache.php:156
400
- msgid "strip WWW"
401
- msgstr "enlever WWW"
402
-
403
- #: ../modules/apache.php:156
404
- msgid "force WWW"
405
- msgstr "forcer WWW"
406
-
407
- #: ../modules/apache.php:159
408
- #: ../modules/wordpress.php:236
409
- msgid "strip index"
410
- msgstr "enlever index"
411
-
412
- #: ../modules/apache.php:162
413
- #, php-format
414
- msgid "memory limit at %dMB"
415
- msgstr "mémoire limitée à %dMB"
416
-
417
- #: ../modules/apache.php:165
418
- #: ../modules/wordpress.php:247
419
- msgid "no errors"
420
- msgstr "Pas d'erreur"
421
-
422
- #: ../modules/apache.php:165
423
- #: ../modules/wordpress.php:247
424
- msgid "show errors"
425
- msgstr "Afficher les erreurs"
426
-
427
- #: ../modules/apache.php:168
428
- msgid "IPs are banned"
429
- msgstr "Les IP sont bannis"
430
-
431
- #: ../modules/apache.php:171
432
- msgid "IPs are allowed"
433
- msgstr "Les IP sont autorisés"
434
-
435
- #: ../modules/apache.php:179
436
- #, php-format
437
- msgid " for external site: <code>%s</code>"
438
- msgstr "pour le site externe: <code>%s</code>"
439
-
440
- #: ../modules/wordpress.php:197
441
- msgid "Strip index files (html,php,asp)"
442
- msgstr "Enlever les fichiers index (html,asp,php)"
443
-
444
- #: ../modules/wordpress.php:202
445
- msgid "Time Limit"
446
- msgstr "Limite de temps"
447
-
448
- #: ../modules/wordpress.php:205
449
- msgid "30 seconds"
450
- msgstr "30 secondes"
451
-
452
- #: ../modules/wordpress.php:205
453
- msgid "1 minute"
454
- msgstr "1 minute"
455
-
456
- #: ../modules/wordpress.php:205
457
- msgid "2 minutes"
458
- msgstr "2 minutes"
459
-
460
- #: ../modules/wordpress.php:205
461
- msgid "5 minutes"
462
- msgstr "5 minutes"
463
-
464
- #: ../modules/wordpress.php:205
465
- msgid "As long as possible"
466
- msgstr "Aussi long que possible"
467
-
468
- #: ../modules/wordpress.php:241
469
- msgid "time limit set as long as possible"
470
- msgstr "durée aussi longue que possible"
471
-
472
- #: ../modules/wordpress.php:243
473
- #, php-format
474
- msgid "time limit at %ss"
475
- msgstr "durée limitée à %ss"
476
-
477
- #: ../view/admin/add.php:3
478
- msgid "Add new redirection"
479
- msgstr "Ajouter une nouvelle redirection"
480
 
481
- #: ../view/admin/add.php:6
482
- msgid "Your redirection has been added."
483
- msgstr "Votre redirection a été ajouté."
484
 
485
- #: ../view/admin/add.php:12
486
- msgid "Source URL"
487
- msgstr "URL source"
488
 
489
- #: ../view/admin/add.php:16
490
- msgid "Match"
491
- msgstr "Correspond à"
492
 
493
- #: ../view/admin/add.php:22
494
- msgid "Action"
495
- msgstr "Action"
496
 
497
- #: ../view/admin/add.php:27
498
- msgid "Regular expression"
499
- msgstr "Expression régulière"
500
 
501
- #: ../view/admin/add.php:36
502
- msgid "Group"
503
- msgstr "Groupe"
504
 
505
- #: ../view/admin/add.php:43
506
- msgid "Add Redirection"
507
- msgstr "Ajouter la redirection"
508
 
509
- #: ../view/admin/group_edit.php:6
510
- #: ../view/admin/group_list.php:36
511
- #: ../view/admin/group_list.php:99
512
- #: ../view/admin/module_edit.php:18
513
- #: ../view/admin/module_list.php:41
514
- msgid "Name"
515
- msgstr "Nom"
516
 
517
- #: ../view/admin/group_edit.php:10
518
- msgid "Tracked"
519
- msgstr "Suivi"
520
 
521
- #: ../view/admin/group_edit.php:11
522
- msgid "Whether to track 'hits' to items"
523
- msgstr "Comptage des hits par item"
524
 
525
- #: ../view/admin/group_edit.php:14
526
- msgid "Enabled"
527
- msgstr "Activé"
528
 
529
- #: ../view/admin/group_edit.php:15
530
- msgid "Disabling a group will disable all items contained within it"
531
- msgstr "Désactivé un groupe, désactive tous les items qu'il contient"
532
 
533
- #: ../view/admin/group_edit.php:20
534
- #: ../view/admin/item_edit.php:27
535
- #: ../view/admin/module_edit.php:27
536
- msgid "Save"
537
- msgstr "Sauvegarder"
538
 
539
- #: ../view/admin/group_edit.php:21
540
- #: ../view/admin/item_edit.php:28
541
- #: ../view/admin/module_edit.php:28
542
- msgid "Cancel"
543
- msgstr "Annuler"
544
 
545
- #: ../view/admin/group_item.php:4
546
- msgid "edit group"
547
- msgstr "modifier le groupe"
548
 
549
- #: ../view/admin/group_item.php:20
550
- #: ../view/admin/item.php:27
551
- msgid "disabled"
552
- msgstr "désactivé"
553
 
554
- #: ../view/admin/group_list.php:6
555
- msgid "Groups for module"
556
- msgstr "Groupes du module"
557
 
558
- #: ../view/admin/group_list.php:15
559
- #: ../view/admin/log.php:38
560
- msgid "Module"
561
- msgstr "Module"
562
 
563
- #: ../view/admin/group_list.php:20
564
- #: ../view/admin/item_list.php:21
565
- #: ../view/admin/log.php:16
566
- #: ../view/admin/log.php:23
567
- msgid "Search"
568
- msgstr "Chercher"
569
 
570
- #: ../view/admin/group_list.php:25
571
- msgid "go"
572
- msgstr "go"
573
 
574
- #: ../view/admin/group_list.php:35
575
- #: ../view/admin/item_list.php:34
576
- #: ../view/admin/module_list.php:16
577
- msgid "Hits"
578
- msgstr "Hits"
579
 
580
- #: ../view/admin/group_list.php:58
581
- #: ../view/admin/item_list.php:59
582
- msgid "Select All"
583
- msgstr "Sélectionner tout"
584
 
585
- #: ../view/admin/group_list.php:59
586
- #: ../view/admin/item_list.php:60
587
- msgid "Toggle"
588
- msgstr "Permuter"
589
 
590
- #: ../view/admin/group_list.php:60
591
- #: ../view/admin/item_list.php:61
592
- msgid "Reset Hits"
593
- msgstr "Initialiser les accès"
594
 
595
- #: ../view/admin/group_list.php:61
596
- #: ../view/admin/item_list.php:62
597
- #: ../view/admin/log.php:30
598
- #: ../view/admin/options.php:110
599
- msgid "Delete"
600
- msgstr "Supprimer"
 
601
 
602
- #: ../view/admin/group_list.php:63
603
- #: ../view/admin/item_list.php:64
604
- msgid "Move To"
605
- msgstr "Déplacer vers"
606
 
607
- #: ../view/admin/group_list.php:68
608
- #: ../view/admin/item_list.php:26
609
- #: ../view/admin/item_list.php:69
610
- msgid "Go"
611
- msgstr "ok"
612
 
613
- #: ../view/admin/group_list.php:74
614
- #: ../view/admin/item_list.php:75
615
- msgid "re-order"
616
- msgstr "réordonner"
617
 
618
- #: ../view/admin/group_list.php:75
619
- #: ../view/admin/item_list.php:76
620
- msgid "save order"
621
- msgstr "enregistrer l'ordre"
622
 
623
- #: ../view/admin/group_list.php:88
624
- msgid "You have no groups in this module."
625
- msgstr "Vous n'avez aucun groupe dans ce module."
626
 
627
- #: ../view/admin/group_list.php:93
628
- msgid "Add Group"
629
- msgstr "ajouter un groupe"
630
-
631
- #: ../view/admin/group_list.php:104
632
- msgid "Add"
633
- msgstr "Ajouter"
634
-
635
- #: ../view/admin/group_list.php:116
636
- #: ../view/admin/head.php:7
637
- #: ../view/admin/item_list.php:104
638
- #: ../view/admin/log.php:111
639
- msgid "No items have been selected"
640
- msgstr "Aucun item n'a été sélectionné"
641
-
642
- #: ../view/admin/group_list.php:117
643
- #: ../view/admin/head.php:6
644
- #: ../view/admin/item_list.php:105
645
- #: ../view/admin/log.php:112
646
- msgid "Are you sure?"
647
- msgstr "Êtes-vous sûr(e) ?"
648
-
649
- #: ../view/admin/head.php:3
650
- msgid "Please wait..."
651
- msgstr "Veuillez patienter ..."
652
-
653
- #: ../view/admin/item_edit.php:3
654
- #, php-format
655
- msgid "%s by matching %s"
656
- msgstr "%s qui correspondent à %s"
657
-
658
- #: ../view/admin/item_edit.php:7
659
- msgid "Title"
660
- msgstr "Titre"
661
-
662
- #: ../view/admin/item_edit.php:10
663
  msgid "optional"
664
- msgstr "optionnel"
665
 
666
- #: ../view/admin/item_list.php:6
667
- msgid "Redirections for group"
668
- msgstr "Redirections par groupe"
669
 
670
- #: ../view/admin/item_list.php:33
671
- msgid "Last Access"
672
- msgstr "Dernier accès"
673
 
674
- #: ../view/admin/item_list.php:35
675
- #: ../view/admin/module_list.php:45
676
- msgid "Type"
677
- msgstr "Type"
678
 
679
- #: ../view/admin/item_list.php:36
680
- msgid "URL"
681
- msgstr "URL"
682
 
683
- #: ../view/admin/item_list.php:36
684
- msgid "Position"
685
- msgstr "Position"
686
 
687
- #: ../view/admin/item_list.php:80
688
- msgid "You have no redirections."
689
- msgstr "Vous n'avez pas de redirection."
690
 
691
- #: ../view/admin/log.php:6
692
- msgid "Redirection Log"
693
- msgstr "Journaux des redirections"
694
 
695
- #: ../view/admin/log.php:29
696
- msgid "Bulk Actions"
697
- msgstr "Actions en vrac"
698
 
699
- #: ../view/admin/log.php:33
700
- msgid "Apply"
701
- msgstr "Appliquer"
702
 
703
- #: ../view/admin/log.php:49
704
- msgid "Filter"
705
- msgstr "Filtre"
706
 
707
- #: ../view/admin/log.php:67
708
- msgid "Date"
709
- msgstr "Date"
710
 
711
- #: ../view/admin/log.php:70
712
- msgid "IP"
713
- msgstr "IP"
714
 
715
- #: ../view/admin/log.php:85
716
- msgid "There are no logs to display!"
717
- msgstr "Pas de journaux à afficher!"
718
 
719
- #: ../view/admin/log.php:94
720
- msgid "Process Current Logs"
721
- msgstr "Actions sur les logs"
 
722
 
723
- #: ../view/admin/log.php:95
724
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
725
- msgstr "Ces actions s'appliquent aux items actuellement consultés (résultats de votre recherche ou sélection)"
726
 
727
- #: ../view/admin/log.php:100
728
- msgid "Delete Logs"
729
- msgstr "Supprimer les journaux"
730
 
731
- #: ../view/admin/log.php:101
732
- msgid "Export to CSV"
733
- msgstr "Export en CSV"
 
734
 
735
- #: ../view/admin/log_item_details.php:9
736
- msgid "Redirect to"
737
- msgstr "Redirige vers"
738
 
739
- #: ../view/admin/log_item_details.php:15
740
- msgid "Redirected by"
741
- msgstr "Redirigé par"
 
 
742
 
743
- #: ../view/admin/log_item_details.php:16
744
- msgid "for"
745
- msgstr "pour"
746
 
747
- #: ../view/admin/module_item.php:24
748
- msgid "View as"
749
- msgstr "Export"
750
 
751
- #: ../view/admin/module_item.php:26
752
- msgid "CSV"
753
- msgstr "CSV"
754
 
755
- #: ../view/admin/module_item.php:27
756
- msgid "XML"
757
- msgstr "XML"
758
 
759
- #: ../view/admin/module_item.php:29
760
- msgid "RSS"
761
- msgstr "RSS"
762
 
763
- #: ../view/admin/module_item.php:42
764
- msgid "edit"
765
- msgstr "modifier"
766
 
767
- #: ../view/admin/module_item.php:45
768
- msgid "delete"
769
- msgstr "Supprimer"
770
 
771
- #: ../view/admin/module_item.php:48
772
- msgid "reset"
773
- msgstr "Initialiser"
774
 
775
- #: ../view/admin/module_list.php:6
776
- #: ../view/admin/submenu.php:6
777
- msgid "Modules"
778
- msgstr "Modules"
779
 
780
- #: ../view/admin/module_list.php:13
781
- msgid "Details"
782
- msgstr "Détails"
783
 
784
- #: ../view/admin/module_list.php:14
785
- #: ../view/admin/submenu.php:5
786
- msgid "Groups"
787
- msgstr "Groupes"
788
 
789
- #: ../view/admin/module_list.php:15
790
- msgid "Items"
791
- msgstr "Items"
792
 
793
- #: ../view/admin/module_list.php:17
794
- msgid "Operations"
795
- msgstr "Actions"
796
 
797
- #: ../view/admin/module_list.php:26
798
- msgid "Note: Hits are dependant on log entries"
799
- msgstr "Note: les hits dépendent des items des journaux"
800
 
801
- #: ../view/admin/module_list.php:28
802
- msgid "You have no modules defined yet"
803
- msgstr "Vous n'avez aucun modules définis pour l'instant"
804
 
805
- #: ../view/admin/module_list.php:33
806
- msgid "Add Module"
807
- msgstr "Ajouter un module"
808
 
809
- #: ../view/admin/module_list.php:34
810
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
811
- msgstr "Un module est un élément de contrôle qui détermine la façon dont sont traitées les redirections. Les éléments d'un module WordPress sont traités par WordPress, les éléments d'un module Apache sont traités par <code>.htaccess </ code>, et les éléments du module 404 affecte la façon dont les erreurs sont enregistrées."
812
 
813
- #: ../view/admin/module_list.php:54
814
- msgid "Create"
815
- msgstr "Créer"
816
 
817
- #: ../view/admin/options.php:6
818
- #: ../view/admin/submenu.php:8
819
- msgid "Options"
820
- msgstr "Options"
821
 
822
- #: ../view/admin/options.php:15
823
- msgid "Auto-generate URL"
824
- msgstr "URL auto-générée"
825
 
826
- #: ../view/admin/options.php:19
827
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
828
- msgstr "Sera utilisée pour générer automatiquement une URL si aucune URL n'est donnée. Vous pouvez utiliser les tags spéciaux $dec$ ou $hex$ pour insérer un ID unique (soit décimal soit hexadécimal)"
829
 
830
- #: ../view/admin/options.php:24
831
- msgid "IP Lookup Service"
832
- msgstr "Service IP Lookup"
833
 
834
- #: ../view/admin/options.php:30
835
- msgid "Plugin Support"
836
- msgstr "Supporter cette extension"
837
 
838
- #: ../view/admin/options.php:33
839
- msgid "I'm a nice person and I have helped support the author of this plugin"
840
- msgstr "Je suis un type bien et j'ai aidé l'auteur de cette extension"
841
 
842
- #: ../view/admin/options.php:37
843
- msgid "Expire Logs"
844
- msgstr "Expiration des journaux"
845
 
846
- #: ../view/admin/options.php:40
847
- msgid "days (enter 0 for no expiry)"
848
- msgstr "jours (0: pas d'expiration)"
 
849
 
850
- #: ../view/admin/options.php:44
851
- msgid "RSS Token"
852
- msgstr "Coadge RSS"
853
 
854
- #: ../view/admin/options.php:47
855
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
856
- msgstr "Un code unique permettant aux lecteurs d'un flux d'accéder au RSS de Redirection (laisser vide pour le générer automatiquement)"
857
 
858
- #: ../view/admin/options.php:52
859
- msgid "URL Monitoring"
860
- msgstr "Surveillance des URL"
861
 
862
- #: ../view/admin/options.php:53
863
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
864
- msgstr "Redirection peut détecter les changements d'URL et générer une redirection automatiquement dans un groupe spécifique."
865
 
866
- #: ../view/admin/options.php:57
867
- msgid "Post &amp; Page URLs"
868
- msgstr "URL d'articles et de pages"
 
869
 
870
- #: ../view/admin/options.php:60
871
- #: ../view/admin/options.php:72
872
- msgid "Don't monitor"
873
- msgstr "Ne pas surveiller"
874
 
875
- #: ../view/admin/options.php:64
876
- msgid "Monitor new posts"
877
- msgstr "Surveiller les nouveaux articles"
 
878
 
879
- #: ../view/admin/options.php:69
880
- msgid "Category URLs"
881
- msgstr "URL de catégorie"
882
 
883
- #: ../view/admin/options.php:79
884
- msgid "Update"
885
- msgstr "Enregistrer"
886
 
887
- #: ../view/admin/options.php:85
888
- msgid "Import"
889
- msgstr "Importer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
890
 
891
- #: ../view/admin/options.php:87
892
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
893
- msgstr "Vous pouvez importer des redirections depuis un fichier .htaccess, CSV ou XML."
894
 
895
- #: ../view/admin/options.php:94
896
- msgid "Import into"
897
- msgstr "Importer dans"
898
 
899
- #: ../view/admin/options.php:97
900
- msgid "Upload"
901
- msgstr "Envoyer"
902
 
903
- #: ../view/admin/options.php:100
904
- msgid "Note that the group is ignored when uploading an XML file."
905
- msgstr "Notez que le groupe est ignoré lors de l'import d'un fichier XML"
906
 
907
- #: ../view/admin/options.php:104
908
- msgid "Delete Redirection"
909
- msgstr "Supprimer Redirection"
910
 
911
- #: ../view/admin/options.php:105
912
- 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."
913
- msgstr "Sélectionner cette option supprimera toutes les redirections, les journaux et toutes les options associées à l'extension Redirection. Soyez sur que c'est ce que vous voulez!"
914
 
915
- #: ../view/admin/submenu.php:4
916
- msgid "Redirects"
917
  msgstr "Redirections"
918
 
919
- #: ../view/admin/submenu.php:7
920
- msgid "Log"
921
- msgstr "Journaux"
922
 
923
- #: ../view/admin/submenu.php:9
924
- msgid "Support"
925
- msgstr "Aide"
926
 
927
- #: ../view/admin/support.php:5
928
- msgid "Redirection Support"
929
- msgstr "Aide de Redirection"
930
-
931
- #: ../view/admin/support.php:9
932
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
933
- msgstr "Redirection est utilisable gratuitement - la vie est belle! Cependant, il a nécessité un grand nombre d'heure et beaucoup d'effort pour être developpé. Donc si vous trouvez cette extension utile, vous pouvez contribuer à son développement en <strong>faisant un petit don</strong>."
934
-
935
- #: ../view/admin/support.php:10
936
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
937
- msgstr "Cela m'encourage pour continuer son développement, en fournissant d'innombrables heures de soutien, et notamment de nouvelles fonctionnalités et suggestions. Vous obtenez ainsi des logiciels utiles et je peux continuer à en faire. Tout le monde y gagne."
938
-
939
- #: ../view/admin/support.php:13
940
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
941
- msgstr "Si vous utilisez cette extension pour un site commercial, ou trouvez qu'il est particulièrement utile, vous pouvez songer à un <strong>don commercial</strong>."
942
-
943
- #: ../view/admin/support.php:36
944
- msgid "Individual<br/>Donation"
945
- msgstr "Don<br />Individuel"
946
-
947
- #: ../view/admin/support.php:56
948
- msgid "Commercial<br/>Donation"
949
- msgstr "Don<br/>Commercial"
950
-
951
- #: ../view/admin/support.php:60
952
- msgid "Translations"
953
- msgstr "Traductions"
954
-
955
- #: ../view/admin/support.php:62
956
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
957
- msgstr "Si vous parlez plusieurs langue, vous pouvez aider en faisant une traductiob:"
958
-
959
- #: ../view/admin/support.php:70
960
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter."
961
- msgstr "Tous les traducteurs ont un lien vers leur site sur la page de l'extension sur <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> et <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>."
962
-
963
- #: ../view/admin/support.php:71
964
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
965
- msgstr "Tous les détails pour faire la traduction d'un plugin sont dans ce <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide</a>."
966
-
967
- #~ msgid "How many widgets would you like?"
968
- #~ msgstr "Combien de widgets voulez-vous ?"
969
- #~ msgid "404 Report for: "
970
- #~ msgstr "Rapport d'erreurs 404 pour :"
971
- #~ msgid ""
972
- #~ "An empty URL means the source URL is not redirected when the user is "
973
- #~ "logged in/logged out."
974
- #~ msgstr ""
975
- #~ "Une URL vide signifie que l'URL source n'est pas redirigée lorsque "
976
- #~ "l'utilisateur se connecte/déconnecte."
977
- #~ msgid "Redirect to one of several URLs"
978
- #~ msgstr "Redirection vers une URL parmi d'autres"
979
- #~ msgid "Redirect based on referrer"
980
- #~ msgstr "Redirection basée sur le référant"
981
- #~ msgid "Referrer Regex"
982
- #~ msgstr "Motif de référant"
983
- #~ msgid "Not from referrer"
984
- #~ msgstr "N'est pas depuis un référant"
985
- #~ msgid "An empty URL means the source URL is not redirected."
986
- #~ msgstr "Une URL vide signifie que l'URL source n'est pas redirigée."
987
- #~ msgid "Simple redirection"
988
- #~ msgstr "Redirection simple"
989
- #~ msgid "Redirection 404 Log"
990
- #~ msgstr "Archives des redirections 404"
991
- #~ msgid "You have no 404 logs!"
992
- #~ msgstr "Vous n'avez pas d'archives d'erreurs 404."
993
- #~ msgid ""
994
- #~ "This will delete all logged 404 errors. Please be sure this is what you "
995
- #~ "want to do."
996
- #~ msgstr ""
997
- #~ "Ceci va supprimer toutes les erreurs 404 archivées. Assurez-vous que "
998
- #~ "c'est bel et bien voulu."
999
- #~ msgid "Add redirection"
1000
- #~ msgstr "Ajouter une redirection"
1001
- #~ msgid "Open referrer"
1002
- #~ msgstr "Référant ouvrant"
1003
- #~ msgid "Last Referrer"
1004
- #~ msgstr "Dernier référant"
1005
- #~ msgid "You have no logs!"
1006
- #~ msgstr "Vous n'avez aucune archive !"
1007
- #~ msgid "Create 301 when post slug changes"
1008
- #~ msgstr "Créer une redirection 301 lorsque l'identifiant de page change"
1009
- #~ msgid "Redirect index.php/index.html"
1010
- #~ msgstr "Rediriger index.php/index.html"
1011
- #~ msgid "Root domain"
1012
- #~ msgstr "Domaine racine"
1013
- #~ msgid "No"
1014
- #~ msgstr "Non"
1015
- #~ msgid "Globally redirect unknown 404 errors"
1016
- #~ msgstr "Redirection globale d'erreurs 404 inconnues"
1017
- #~ msgid "Check for updates"
1018
- #~ msgstr "Vérifier les mises à jour"
1019
- #~ msgid "%s Redirections"
1020
- #~ msgstr "%s redirections"
1021
- #~ msgid "%s ago"
1022
- #~ msgstr "il y a %s"
1023
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in French (France)
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
 
 
 
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-10 09:10:02+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: fr\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
 
 
 
 
 
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr "Quelque chose s’est mal passé 🙁"
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ 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 !"
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr "Cela n’a pas fonctionné quand j’ai réessayé."
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr "Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr "Si le problème n’est pas connu, essayez de désactiver les autres extensions. C’est simple à faire et vous pouvez les réactiver rapidement. D’autres extensions peuvent parfois provoquer des conflits et le savoir à l’avance aidera beaucoup."
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr "Détails importants sur ce que vous venez de faire."
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr "Veuillez inclure ces détails dans votre compte-rendu."
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr "Entrées du journal (100 max.)"
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr "Échec du chargement"
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr "Retirer WWW"
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr "Ajouter WWW"
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr "Rechercher par IP"
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr "Sélectionner l’action groupée"
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr "Actions groupées"
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr "Appliquer"
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr "Première page"
 
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr "Page précédente"
 
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr "Page courante"
 
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr "de %(page)s"
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr "Page suivante"
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr "Dernière page"
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] "%s élément"
106
+ msgstr[1] "%s éléments"
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr "Tout sélectionner"
 
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr "Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr "Aucun résultat"
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr "Confirmez-vous la suppression des journaux ?"
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr "Une fois supprimés, vos journaux courants ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de Redirection si vous désirez procéder automatiquement."
 
 
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr "Oui ! Supprimer les journaux"
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr "Non ! Ne pas supprimer les journaux"
 
 
 
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr "Redirection 404"
 
 
 
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr "Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr "Newsletter"
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr "Vous souhaitez être au courant des modifications apportées à Redirection ?"
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ 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."
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr "Votre adresse de messagerie :"
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr "J’ai retiré une redirection, pourquoi continue-t-elle de rediriger ?"
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr "Votre navigateur mettra en cache les redirections. Si vous avez retiré une redirection mais que votre navigateur vous redirige encore, {{a}}videz le cache de votre navigateur{{/ a}}."
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr "Puis-je ouvrir une redirection dans un nouvel onglet ?"
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr "Impossible de faire cela sur le serveur. À la place, ajoutez {{code}}target=\"blank\"{{/code}} à votre lien."
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr "Quelque chose ne fonctionne pas !"
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr "Veuillez désactiver toutes les autres extensions et vérifiez si le problème persiste. Si c’est le cas, {{a}}veuillez le signaler{{/a}} avec tous ses détails, et une méthode pour le reproduire."
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr "Foire aux questions"
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr "Vous avez besoin d’aide ? Une de ces questions vous apportera peut-être une réponse."
 
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr "Vous avez déjà apporté votre soutien à l’extension. Merci !"
 
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr "J’aimerais donner davantage"
 
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr "Vous avez ainsi une extension utile, et je peux continuer à l’améliorer."
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr "Veuillez noter que ça n’ouvre pas droit à du support, mais que c’est seulement un don."
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr "Oui, j’aimerais faire un don"
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr "Merci d’avoir fait un don !"
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr "Indéfiniment"
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr "L’enregistrement des données a échoué"
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr "Le chargement des données a échoué"
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr "Format CSV"
 
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr "URL source, URL cible, [Regex 0=faux, 1=vrai], [Code HTTP]"
 
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr "Confirmez-vous vouloir supprimer cette extension ?"
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ 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."
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr "Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr "Oui ! Supprimer l’extension"
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr "Non ! Ne pas supprimer l’extension"
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Réglages avancés"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Gérez toutes vos redirections 301 et surveillez les erreurs 404."
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ 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}}."
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Support de Redirection"
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Support"
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404 provenant de %s"
 
 
 
 
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Journaux"
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Supprimer la redirection"
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Mettre en ligne"
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr "Ici, vous pouvez importer des redirections depuis un fichier {{code}}.htaccess{{/code}} ou un fichier CSV."
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importer"
 
 
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Mettre à jour"
 
 
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr "Cela servira à générer automatiquement une URL si aucune n’est spécifiée. Vous pouvez utiliser les balises spéciales {{code}}$dec${{/code} ou {{code}}$hex${{/code}} pour insérer un identifiant unique (décimal ou hexadécimal)."
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "URL auto-générée&nbsp;"
 
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ 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)."
331
 
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Jeton RSS "
 
335
 
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Ne pas surveiller"
 
 
 
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Surveiller les modifications apportées aux publications&nbsp;"
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "Journaux des 404 "
 
 
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(durée de conservation des journaux)"
 
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Journaux des redirections "
 
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."
 
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Support de l’extension "
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Options"
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Deux mois"
 
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Un mois"
 
 
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Une semaine"
 
379
 
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Un jour"
 
383
 
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Aucun journal"
387
 
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Modules"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "Exporter en CSV"
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Tout supprimer"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Journaux des redirections"
403
+
404
+ #: view/item-edit.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  msgid "optional"
406
+ msgstr "facultatif"
407
 
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Description"
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
 
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Ajouter un groupe"
 
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Rechercher"
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Groupes"
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Enregistrer"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Ajout de redirection"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Groupe"
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Expression régulière"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Action"
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Correspondant"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Votre redirection a été ajoutée."
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Ajouter une nouvelle redirection"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Annuler"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Télécharger"
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Désolé, votre redirection n’a pas été créée"
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Impossible d’effectuer cette action"
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Aucun élément n’a été importé"
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redirection a été importée avec succès"
486
+ msgstr[1] "%d redirections ont été importées avec succès"
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Vos options ont été mises à jour"
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Réglages"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "Redirections gérées par WordPress. Aucune autre configuration n’est requise, et vous pouvez suivre les vues."
503
 
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Pour une utilisation sur un serveur Nginx. Nécessite une configuration manuelle. La redirection intervient sans que WordPress ne soit lancé. Aucun suivi des vues. Il s’agit d’un module expérimental."
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr "Utilise le fichier Apache {{code}}.htaccess{{/code}}. Nécessite une configuration ultérieure. La redirection intervient sans que WordPress ne soit lancé. Aucun suivi des vues."
511
 
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Ajouter ou retirer automatiquement www à votre site."
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Serveur par défaut"
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "URL canonique"
 
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress est installé dans : {{code}}%s{{/code}}"
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr "Si vous voulez que Redirection mette à jour automatiquement votre fichier {{code}}.htaccess{{/code}}, saisissez le chemin et nom de fichier ici. Vous pouvez également télécharger le fichier et le mettre à jour manuellement."
 
531
 
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr "Emplacement du .htaccess"
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Ne rien faire"
539
 
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Erreur (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Outrepasser"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Rediriger vers un article aléatoire"
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirection vers une URL"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Impossible d’ajouter une nouvelle redirection. Supprimez Redirection depuis la page d’options puis réinstallez"
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "URL source non valide à la création d’une redirection pour un type de correspondance donné."
 
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Groupe non valide à la création d’une redirection"
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Vous pouvez uniquement rediriger depuis une URL relative (<code>%s</code>) sur ce domaine (<code>%s</code>)."
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Les URL source et cible doivent être différentes"
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configurer"
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Afficher uniquement cette IP"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL source"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Date"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Ajouter une redirection"
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Tous les modules"
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Voir les redirections"
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Module"
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redirections"
 
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nom"
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtre"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Aucun filtre de groupe"
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Réinitialiser les vues"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Activer"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Désactiver"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Supprimer"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Modifier"
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Dernier accès"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Type"
671
 
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Articles modifiés"
675
 
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
  msgstr "Redirections"
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "Le visiteur sera redirigé depuis l’URL source si l’agent utilisateur correspond. Vous pouvez spécifier une URL cible <em>correspondante</em> comme adresse où rediriger les visiteurs s’ils correspondent, et <em>non correspondante</em> s’ils ne correspondent pas. Laisser une URL vide signifie que le visiteur ne sera pas redirigé. <strong>Toutes les correspondances sont calculées comme expression rationnelles</strong>.\n"
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Agent utilisateur"
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL et agent utilisateur"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "URL cible"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "URL uniquement"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Non correspondant"
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Correspondant"
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "Le visiteur sera redirigé depuis l’URL source si le référent correspond. Vous pouvez spécifier une URL cible <em>correspondante</em> comme adresse où envoyer les visiteurs s’ils correspondent, et <em>non correspondante</em> s’ils ne correspondent pas. Laisser une URL vide signifie que le visiteur ne sera pas redirigé."
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "Code HTTP"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
 
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Référant"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL et référent"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Déconnecté"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Connecté"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "L’URL cible sera choisie parmi les URL suivantes, selon que l’utilisateur est connecté ou pas. Laisser une URL vide signifie que l’utilisateur ne sera pas redirigé."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL et état de connexion"
locale/redirection-it_IT.mo CHANGED
Binary file
locale/redirection-it_IT.po CHANGED
@@ -1,1077 +1,782 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Redirection\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
5
- "POT-Creation-Date: 2012-05-07 13:59:00+00:00\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Raffaello Tesi <info@raffaellotesi.com>\n"
8
- "Language-Team: Raffaello Tesi <info@raffaellotesi.com>\n"
9
- "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.6.5\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: C:\\redirection\n"
19
- "X-Poedit-SearchPath-1: C:\\redirection\\2.3\n"
20
- "X-Poedit-SearchPath-2: C:\\redirection\\actions\n"
21
- "X-Poedit-SearchPath-3: C:\\redirection\\fileio\n"
22
- "X-Poedit-SearchPath-4: C:\\redirection\\images\n"
23
- "X-Poedit-SearchPath-5: C:\\redirection\\images\\modules\n"
24
- "X-Poedit-SearchPath-6: C:\\redirection\\js\n"
25
- "X-Poedit-SearchPath-7: C:\\redirection\\locale\n"
26
- "X-Poedit-SearchPath-8: C:\\redirection\\models\n"
27
- "X-Poedit-SearchPath-9: C:\\redirection\\modules\n"
28
- "X-Poedit-SearchPath-10: C:\\redirection\\matches\n"
29
- "X-Poedit-SearchPath-11: C:\\redirection\\view\n"
30
- "X-Poedit-SearchPath-12: C:\\redirection\\view\\admin\n"
31
-
32
- #: ajax.php:370
33
- msgid "Sorry, but your redirection was not created"
34
- msgstr "Mi dispiace, il reindirizzamento non è stato creato"
35
-
36
- #: fileio/csv.php:21
37
- msgid "module_%d.csv"
38
- msgstr "module_%d.csv"
39
-
40
- #: fileio/xml.php:32
41
- msgid "module_%d.xml"
42
- msgstr "module_%d.xml"
43
 
44
- #: fileio/xml.php:105
45
- msgid "%s imported on %s at %s"
46
- msgstr "%s importato in %s a %s"
47
-
48
- #: fileio/xml.php:168
49
- msgid "XML importing is only available with PHP5 - you have PHP4."
50
  msgstr ""
51
- "L'importazione XML è disponibile solo con PHP5 - è stata invece identificata "
52
- "la versione PHP4"
53
-
54
- #: matches/login.php:25
55
- msgid "URL and login status"
56
- msgstr "status URL e login"
57
 
58
- #: matches/login.php:33
59
- msgid ""
60
- "The target URL will be chosen from one of the following URLs, depending if "
61
- "the user is logged in or out. Leaving a URL blank means that the user is "
62
- "not redirected."
63
  msgstr ""
64
- "L'URL di arrivo verrà scelta tra una delle seguenti, a seconda che l'utente "
65
- "abbia effettuato o meno il login. Lasciando l'URL vuota l'utente non verrà "
66
- "reindirizzato."
67
 
68
- #: matches/login.php:39 matches/login.php:41
69
- msgid "Logged In"
70
- msgstr "Logged in"
71
-
72
- #: matches/login.php:51 matches/login.php:53
73
- msgid "Logged Out"
74
- msgstr "Logged out"
75
-
76
- #: matches/referrer.php:28
77
- msgid "URL and referrer"
78
- msgstr "URL e referrer"
79
-
80
- #: matches/referrer.php:40 view/admin/log.php:69
81
- msgid "Referrer"
82
- msgstr "Referrer"
83
-
84
- #: matches/referrer.php:43 view/admin/item_edit.php:18
85
- msgid "Regex"
86
- msgstr "Regex"
87
-
88
- #: matches/referrer.php:47 matches/url.php:40 matches/user_agent.php:57
89
- msgid "HTTP Code"
90
- msgstr "Codice HTTP"
91
 
92
- #: matches/referrer.php:57
93
- msgid ""
94
- "The visitor will be redirected from the source URL if the referrer matches. "
95
- "You can specify a <em>matched</em> target URL as the address to send "
96
- "visitors if they do match, and <em>not matched</em> if they don't match. "
97
- "Leaving a URL blank means that the visitor is not redirected."
98
- msgstr ""
99
- "Il visitatore sarà reindirizzato dalla URL di partenza se il referrer "
100
- "corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, "
101
- "ovvero da utilizzare come reindirizzamento se il referrer corrisponde, e "
102
- "<em>not matched</em> se non corrisponde. Lasciando l'URL vuota l'utente non "
103
- "viene reindirizzato."
104
-
105
- #: matches/referrer.php:63 matches/referrer.php:65 matches/user_agent.php:75
106
- #: matches/user_agent.php:77
107
- msgid "Matched"
108
- msgstr "Matched"
109
 
110
- #: matches/referrer.php:73 matches/referrer.php:75 matches/user_agent.php:85
111
- #: matches/user_agent.php:87
112
- msgid "Not matched"
113
- msgstr "Not matched"
114
 
115
- #: matches/url.php:25
116
- msgid "URL only"
117
- msgstr "solo URL"
118
 
119
- #: matches/url.php:32 view/admin/add.php:31
120
- msgid "Target URL"
121
- msgstr "URL di arrivo"
122
 
123
- #: matches/user_agent.php:27
124
- msgid "URL and user agent"
125
- msgstr "URL e user agent"
126
 
127
- #: matches/user_agent.php:32
128
- msgid "FeedBurner"
129
- msgstr "FeedBurner"
130
 
131
- #: matches/user_agent.php:33
132
- msgid "Internet Explorer"
133
- msgstr "Internet Explorer"
134
 
135
- #: matches/user_agent.php:34
136
- msgid "FireFox"
137
- msgstr "Firefox"
138
 
139
- #: matches/user_agent.php:35
140
- msgid "Opera"
141
- msgstr "Opera"
142
 
143
- #: matches/user_agent.php:36
144
- msgid "Safari"
145
- msgstr "Safari"
146
 
147
- #: matches/user_agent.php:37
148
- msgid "iPhone"
149
- msgstr "iPhone"
150
 
151
- #: matches/user_agent.php:38
152
- msgid "iPad"
153
- msgstr "iPad"
154
 
155
- #: matches/user_agent.php:39
156
- msgid "Android"
157
- msgstr "Android"
158
 
159
- #: matches/user_agent.php:40
160
- msgid "Nintendo Wii"
161
- msgstr "Nintendo Wii"
162
 
163
- #: matches/user_agent.php:45 view/admin/log_item_details.php:20
164
- msgid "User Agent"
165
- msgstr "User agent"
166
 
167
- #: matches/user_agent.php:68
168
- msgid ""
169
- "The visitor will be redirected from the source URL if the user agent "
170
- "matches. You can specify a <em>matched</em> target URL as the address to "
171
- "send visitors if they do match, and <em>not matched</em> if they don't "
172
- "match. Leaving a URL blank means that the visitor is not redirected. "
173
- "<strong>All matches are performed as regular expressions</strong>.\n"
174
- msgstr ""
175
- "Il visitatore sarà reindirizzato dalla URL di partenza se l'user agent "
176
- "corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, "
177
- "ovvero da utilizzare come reindirizzamento se l'user agent corrisponde, e "
178
- "<em>not matched</em> se non corrisponde. <strong>Tutte le corrispondenze "
179
- "sono create come espressioni regolari (regex)</strong>.\n"
180
-
181
- #: models/database.php:94 models/module.php:161
182
- msgid "WordPress"
183
- msgstr "WordPress"
184
-
185
- #: models/database.php:95 models/module.php:160 view/admin/module_item.php:27
186
- msgid "Apache"
187
- msgstr "Apache"
188
-
189
- #: models/database.php:96
190
- msgid "404"
191
- msgstr "404"
192
 
193
- #: models/database.php:101
194
- msgid "Redirections"
195
- msgstr "Reindirizzamenti"
196
 
197
- #: models/database.php:102
198
- msgid "Modified Posts"
199
- msgstr "Post modificati"
200
 
201
- #: models/group.php:194
202
- msgid "Yes"
203
- msgstr ""
204
 
205
- #: models/group.php:195
206
- msgid "No"
207
- msgstr "No"
 
 
208
 
209
- #: models/module.php:162
210
- msgid "404 Errors"
211
- msgstr "Errori 404"
212
 
213
- #: models/module.php:187
214
- msgid "Strip WWW"
215
- msgstr "Rimuovi WWW"
216
 
217
- #: models/module.php:187
218
- msgid "Force WWW"
219
- msgstr "Forza WWW"
220
 
221
- #: models/module.php:192
222
- msgid "Strip index.php"
223
- msgstr "Rimuovi index.php"
224
 
225
- #: models/pager.php:389
226
- msgid "Previous"
227
- msgstr "Precedente"
228
 
229
- #: models/pager.php:390
230
- msgid "Next"
231
- msgstr "Successivo"
232
 
233
- #: models/pager.php:448
234
- msgid "%d per-page"
235
- msgstr "%d per pagina"
236
 
237
- #: models/pager.php:457
238
- msgid "Displaying %s&#8211;%s of %s"
239
- msgstr "Mostrati %s&#8211;%s su %s"
240
 
241
- #: models/redirect.php:386
242
- msgid "Redirect to URL"
243
- msgstr "Reindirizza a URL"
244
 
245
- #: models/redirect.php:387
246
- msgid "Redirect to random post"
247
- msgstr "Reindirizza a un post a caso"
248
 
249
- #: models/redirect.php:388
250
- msgid "Pass-through"
251
- msgstr "Pass-through"
252
 
253
- #: models/redirect.php:389
254
- msgid "Error (404)"
255
- msgstr "Errore (404)"
256
 
257
- #: models/redirect.php:390
258
- msgid "Do nothing"
259
- msgstr "Non fare niente"
260
 
261
- #: modules/404.php:37
262
- msgid "Log 404s"
263
- msgstr "Crea log per gli errori 404"
264
 
265
- #: modules/404.php:46 modules/wordpress.php:121
266
- msgid ""
267
- "<strong>Disabled: You must enable <a href=\"options-permalink.php"
268
- "\">permalinks</a> before using this</strong>"
269
  msgstr ""
270
- "<strong>Disattivato: occorre attivare i <a href=\"options-permalink.php"
271
- "\">permalink</a> prima di poterlo usare</strong>"
272
 
273
- #: modules/404.php:57
274
- msgid "<small>No options have been set</small>"
275
- msgstr "<small>Non è stata selezionata nessuna opzione</small>"
276
 
277
- #: modules/apache.php:77
278
- msgid "Location"
279
- msgstr "Path"
280
 
281
- #: modules/apache.php:82
282
- msgid "WordPress is installed in: <code>%s</code>"
283
- msgstr "WordPress è installato in: <code>%s</code>"
284
 
285
- #: modules/apache.php:87
286
- msgid "Canonical"
287
- msgstr "Canonica"
288
 
289
- #: modules/apache.php:90 modules/apache.php:96
290
- msgid "Leave as is"
291
- msgstr "Lascia com'è"
292
 
293
- #: modules/apache.php:90
294
- msgid "Strip WWW (%s)"
295
- msgstr "Rimuovi WWW (%s)"
296
 
297
- #: modules/apache.php:90
298
- msgid "Force WWW (www.%s)"
299
- msgstr "Forza WWW (www.%s)"
300
 
301
- #: modules/apache.php:94
302
- msgid "Strip Index"
303
- msgstr "Rimuovi Index"
304
 
305
- #: modules/apache.php:96
306
- msgid "Strip index files (html,php)"
307
- msgstr "Rimuovi i file index (html, php)"
308
 
309
- #: modules/apache.php:101
310
- msgid "Memory Limit"
311
- msgstr "Limite memoria"
312
 
313
- #: modules/apache.php:104 modules/apache.php:109
314
- msgid "Server default"
315
- msgstr "Server default"
316
 
317
- #: modules/apache.php:107
318
- msgid "Error Level"
319
- msgstr "Livello d'errore"
320
 
321
- #: modules/apache.php:109
322
- msgid "No errors"
323
- msgstr "Nessun errore"
324
 
325
- #: modules/apache.php:109
326
- msgid "Show errors"
327
- msgstr "Mostra gli errori"
328
 
329
- #: modules/apache.php:114
330
- msgid "Ban IPs"
331
- msgstr "Blocca IP"
332
 
333
- #: modules/apache.php:120
334
- msgid "Allow IPs"
335
- msgstr "Approva IP"
336
 
337
- #: modules/apache.php:126
338
- msgid "Raw .htaccess"
339
- msgstr "Contenuto .htaccess"
340
 
341
- #: modules/apache.php:132
342
- msgid "Site URL"
343
- msgstr "URL sito"
344
 
345
- #: modules/apache.php:135
346
- msgid "Advanced: For management of external sites"
347
- msgstr "Avanzato: per la gestione di siti esterni"
348
 
349
- #: modules/apache.php:150
350
- msgid "<strong>Location is invalid - check that path exists</strong>"
351
- msgstr "<strong>Path non valido - controllare che il path esista</strong>"
352
 
353
- #: modules/apache.php:156
354
- msgid ""
355
- "<strong>Could not write to configured <code>.htaccess</code> file - check "
356
- "file permissions</strong>"
357
  msgstr ""
358
- "<strong>Non è possibile modificare il file <code>.htaccess</code> - "
359
- "controllare i permessi del file</strong>"
360
 
361
- #: modules/apache.php:163
362
- msgid ""
363
- "<strong>Disabled: enter the location of an <code>.htaccess</code> file for "
364
- "this to be valid</strong>"
365
  msgstr ""
366
- "<strong>Disattivato: inserire la posizione del file <code>.htaccess</code> "
367
- "per attivarlo</strong>"
368
 
369
- #: modules/apache.php:168
370
- msgid "strip WWW"
371
- msgstr "rimuovi WWW"
372
 
373
- #: modules/apache.php:168
374
- msgid "force WWW"
375
- msgstr "forza WWW"
376
 
377
- #: modules/apache.php:171
378
- msgid "strip index"
379
- msgstr "rimuovi index"
380
 
381
- #: modules/apache.php:174
382
- msgid "memory limit at %dMB"
383
- msgstr "limite memoria a %d MB"
384
 
385
- #: modules/apache.php:177
386
- msgid "no errors"
387
- msgstr "nessun errore"
388
 
389
- #: modules/apache.php:177
390
- msgid "show errors"
391
- msgstr "mostra errori"
392
 
393
- #: modules/apache.php:180
394
- msgid "IPs are banned"
395
- msgstr "Sono bloccati gli IP"
396
 
397
- #: modules/apache.php:183
398
- msgid "IPs are allowed"
399
- msgstr "Sono permessi gli IP"
400
 
401
- #: redirection.php:94
402
- msgid "Settings"
403
- msgstr "Impostazioni"
404
 
405
- #: redirection.php:112
406
- msgid "Please wait..."
407
- msgstr "Attendere prego..."
408
 
409
- #: redirection.php:115 view/admin/group_list.php:118
410
- #: view/admin/item_list.php:113 view/admin/log.php:113
411
- msgid "Are you sure?"
412
- msgstr "Sei sicuro?"
413
 
414
- #: redirection.php:116 view/admin/group_list.php:117
415
- #: view/admin/item_list.php:112 view/admin/log.php:112
416
- msgid "No items have been selected"
417
- msgstr "Nessun elemento è stato selezionato"
418
 
419
- #. Plugin Name of the plugin/theme
420
- #: redirection.php:121
421
- msgid "Redirection"
422
- msgstr "Redirection"
423
 
424
- #: redirection.php:159
425
- msgid "Your module was successfully created"
426
- msgstr "Il modulo è stato creato con successo"
427
 
428
- #: redirection.php:163
429
- msgid "Your module was not created - did you provide a name?"
430
- msgstr "Il modulo non è stato creato - è stato inserito un nome?"
431
 
432
- #: redirection.php:228
433
- msgid "Your options were updated"
434
- msgstr "Le opzioni sono state aggiornate"
435
 
436
- #: redirection.php:236
437
- msgid "Redirection data has been deleted and the plugin disabled"
438
  msgstr ""
439
- "I dati di Redirection sono stati rimossi e il plugin è stato disattivato"
440
-
441
- #: redirection.php:246
442
- msgid "%d redirection was successfully imported"
443
- msgid_plural "%d redirections were successfully imported"
444
- msgstr[0] "%d reindirizzamento importato con successo"
445
- msgstr[1] "%d reindirizzamenti importati con successo"
446
 
447
- #: redirection.php:248
448
- msgid "No items were imported"
449
- msgstr "Non è stato importato nessun elemento"
450
 
451
- #: redirection.php:266
452
- msgid "Your logs have been deleted"
453
- msgstr "I log sono stati cancellati"
454
 
455
- #: redirection.php:289
456
- msgid "Your group was added successfully"
457
- msgstr "Il gruppo è stato aggiunto con successo"
458
 
459
- #: redirection.php:293
460
- msgid "Please specify a group name"
461
- msgstr "Inserire il nome del gruppo"
462
 
463
- #: redirection.php:330
464
- msgid "Redirection is available in"
465
- msgstr "Redirection è disponibile a"
466
 
467
- #: view/admin/add.php:3
468
- msgid "Add new redirection"
469
- msgstr "Aggiungi un nuovo reindirizzamento"
470
 
471
- #: view/admin/add.php:6
472
- msgid "Your redirection has been added."
473
- msgstr "Il reindirizzamento è stato creato."
474
 
475
- #: view/admin/add.php:12 view/admin/item_edit.php:15 view/admin/log.php:68
476
- #: view/admin/log_item_details.php:4
477
- msgid "Source URL"
478
- msgstr "URL di partenza"
479
 
480
- #: view/admin/add.php:16
481
- msgid "Match"
482
- msgstr "Match"
483
 
484
- #: view/admin/add.php:22
485
- msgid "Action"
486
- msgstr "Azione"
487
 
488
- #: view/admin/add.php:27
489
- msgid "Regular expression"
490
- msgstr "Espressione regolare (regex)"
491
 
492
- #: view/admin/add.php:36 view/admin/item_list.php:24 view/admin/log.php:43
493
- msgid "Group"
494
- msgstr "Gruppo"
495
 
496
- #: view/admin/add.php:43
497
- msgid "Add Redirection"
498
- msgstr "Crea reindirizzamento"
499
 
500
- #: view/admin/group_edit.php:6 view/admin/group_list.php:37
501
- #: view/admin/group_list.php:100 view/admin/module_edit.php:18
502
- #: view/admin/module_list.php:42
503
- msgid "Name"
504
- msgstr "Nome"
505
 
506
- #: view/admin/group_edit.php:10
507
- msgid "Tracked"
508
- msgstr "Tracked"
509
 
510
- #: view/admin/group_edit.php:11
511
- msgid "Whether to track 'hits' to items"
512
- msgstr "Effettuare il tracking degli accessi a questo elemento"
513
 
514
- #: view/admin/group_edit.php:14
515
- msgid "Enabled"
516
- msgstr "Attivato"
517
 
518
- #: view/admin/group_edit.php:15
519
- msgid "Disabling a group will disable all items contained within it"
520
  msgstr ""
521
- "Disattivando un gruppo, tutti gli elementi in esso contenuti verranno "
522
- "disattivati"
523
 
524
- #: view/admin/group_edit.php:20 view/admin/item_edit.php:27
525
- #: view/admin/module_edit.php:27
526
- msgid "Save"
527
- msgstr "Salva"
528
 
529
- #: view/admin/group_edit.php:21 view/admin/item_edit.php:28
530
- #: view/admin/module_edit.php:28
531
- msgid "Cancel"
532
- msgstr "Annulla"
533
 
534
- #: view/admin/group_item.php:3
535
- msgid "edit group"
536
- msgstr "modifica gruppo"
537
 
538
- #: view/admin/group_item.php:23 view/admin/item.php:27
539
- msgid "disabled"
540
- msgstr "disattivato"
541
 
542
- #: view/admin/group_list.php:6
543
- msgid "Groups for module"
544
- msgstr "Gruppi per il modulo"
545
 
546
- #: view/admin/group_list.php:16 view/admin/log.php:38
547
- msgid "Module"
548
- msgstr "Modulo"
549
 
550
- #: view/admin/group_list.php:21 view/admin/item_list.php:29
551
- #: view/admin/log.php:16 view/admin/log.php:23
552
  msgid "Search"
553
  msgstr "Cerca"
554
 
555
- #: view/admin/group_list.php:26
556
- msgid "go"
557
- msgstr "vai"
558
-
559
- #: view/admin/group_list.php:36 view/admin/item_list.php:42
560
- #: view/admin/module_list.php:17
561
- msgid "Hits"
562
- msgstr "Visite"
563
-
564
- #: view/admin/group_list.php:59 view/admin/item_list.php:67
565
- msgid "Select All"
566
- msgstr "Seleziona tutto"
567
-
568
- #: view/admin/group_list.php:60 view/admin/item_list.php:68
569
- msgid "Toggle"
570
- msgstr "Inverti"
571
-
572
- #: view/admin/group_list.php:61 view/admin/item_list.php:69
573
- msgid "Reset Hits"
574
- msgstr "Azzera visite"
575
-
576
- #: view/admin/group_list.php:62 view/admin/item_list.php:70
577
- #: view/admin/log.php:30 view/admin/options.php:120
578
- msgid "Delete"
579
- msgstr "Rimuovi"
580
-
581
- #: view/admin/group_list.php:64 view/admin/item_list.php:72
582
- msgid "Move To"
583
- msgstr "Sposta in"
584
-
585
- #: view/admin/group_list.php:69 view/admin/item_list.php:34
586
- #: view/admin/item_list.php:77
587
- msgid "Go"
588
- msgstr "Vai"
589
-
590
- #: view/admin/group_list.php:75 view/admin/item_list.php:83
591
- msgid "re-order"
592
- msgstr "riordina"
593
-
594
- #: view/admin/group_list.php:76 view/admin/item_list.php:84
595
- msgid "save order"
596
- msgstr "salva ordine"
597
-
598
- #: view/admin/group_list.php:89
599
- msgid "You have no groups in this module."
600
- msgstr "Non ci sono gruppi in questo modulo."
601
 
602
- #: view/admin/group_list.php:94
603
- msgid "Add Group"
604
- msgstr "Aggiungi gruppo"
605
 
606
- #: view/admin/group_list.php:105
607
- msgid "Add"
608
- msgstr "Aggiungi"
609
 
610
- #: view/admin/item_edit.php:3
611
- msgid "%s by matching %s"
612
- msgstr "%s nel caso di: %s"
613
 
614
- #: view/admin/item_edit.php:7
615
- msgid "Title"
616
- msgstr "Titolo"
617
 
618
- #: view/admin/item_edit.php:10
619
- msgid "optional"
620
- msgstr "opzionale"
621
 
622
- #: view/admin/item_list.php:7
623
- msgid "Redirections for group"
624
- msgstr "Reindirizzamenti per il gruppo"
625
 
626
- #: view/admin/item_list.php:41
627
- msgid "Last Access"
628
- msgstr "Ultimo accesso"
629
 
630
- #: view/admin/item_list.php:43 view/admin/module_list.php:46
631
- msgid "Type"
632
- msgstr "Tipo"
633
 
634
- #: view/admin/item_list.php:44
635
- msgid "URL"
636
- msgstr "URL"
 
637
 
638
- #: view/admin/item_list.php:44
639
- msgid "Position"
640
- msgstr "Path"
641
 
642
- #: view/admin/item_list.php:88
643
- msgid "You have no redirections."
644
- msgstr "Non ci sono reindirizzamenti."
645
 
646
- #: view/admin/log.php:6
647
- msgid "Redirection Log"
648
- msgstr "Log reindirizzamenti"
 
649
 
650
- #: view/admin/log.php:29
651
- msgid "Bulk Actions"
652
- msgstr "Azioni di massa"
653
 
654
- #: view/admin/log.php:33
655
- msgid "Apply"
656
- msgstr "Applica"
 
 
657
 
658
- #: view/admin/log.php:49
659
- msgid "Filter"
660
- msgstr "Filtro"
661
 
662
- #: view/admin/log.php:67
663
- msgid "Date"
664
- msgstr "Data"
665
 
666
- #: view/admin/log.php:70
667
- msgid "IP"
668
- msgstr "IP"
669
 
670
- #: view/admin/log.php:85
671
- msgid "There are no logs to display!"
672
- msgstr "Non ci sono log da mostrare!"
673
 
674
- #: view/admin/log.php:94
675
- msgid "Process Current Logs"
676
- msgstr "Processa il log corrente"
677
 
678
- #: view/admin/log.php:95
679
- msgid ""
680
- "These actions will affect all currently available logs (i.e. your search "
681
- "phrase will restrict the log items)."
682
  msgstr ""
683
- "Queste azioni verranno effettuate su tutti i log esistenti (ad esempio la "
684
- "frase di ricerca limiterà gli elementi del log)."
685
-
686
- #: view/admin/log.php:100
687
- msgid "Delete Logs"
688
- msgstr "Cancella i log"
689
-
690
- #: view/admin/log_item_details.php:9
691
- msgid "Redirect to"
692
- msgstr "Reindirizza a"
693
-
694
- #: view/admin/log_item_details.php:15
695
- msgid "Redirected by"
696
- msgstr "Reindirizzato da"
697
 
698
- #: view/admin/log_item_details.php:16
699
- msgid "for"
700
- msgstr "per"
701
 
702
- #: view/admin/module_item.php:23
703
- msgid "View as"
704
- msgstr "Mostra come"
705
 
706
- #: view/admin/module_item.php:25
707
- msgid "CSV"
708
- msgstr "CSV"
709
 
710
- #: view/admin/module_item.php:26
711
- msgid "XML"
712
- msgstr "XML"
713
 
714
- #: view/admin/module_item.php:28
715
- msgid "RSS"
716
- msgstr "RSS"
717
 
718
- #: view/admin/module_item.php:41
719
- msgid "edit"
720
- msgstr "modifica"
721
 
722
- #: view/admin/module_item.php:43
723
- msgid "delete"
724
- msgstr "rimuovi"
725
 
726
- #: view/admin/module_item.php:45
727
- msgid "reset"
728
- msgstr "azzera"
729
 
730
- #: view/admin/module_list.php:6 view/admin/submenu.php:16
731
- msgid "Modules"
732
- msgstr "Moduli"
733
 
734
- #: view/admin/module_list.php:14
735
- msgid "Details"
736
- msgstr "Dettagli"
737
 
738
- #: view/admin/module_list.php:15 view/admin/submenu.php:11
739
- msgid "Groups"
740
- msgstr "Gruppi"
741
 
742
- #: view/admin/module_list.php:16
743
- msgid "Items"
744
- msgstr "Elementi"
745
 
746
- #: view/admin/module_list.php:18
747
- msgid "Operations"
748
- msgstr "Operazioni"
749
 
750
- #: view/admin/module_list.php:27
751
- msgid "Note: Hits are dependant on log entries"
752
- msgstr "Nota: le visite dipendono dalle informazioni del log"
753
 
754
- #: view/admin/module_list.php:29
755
- msgid "You have no modules defined yet"
756
- msgstr "Non ci sono moduli definiti"
757
 
758
- #: view/admin/module_list.php:34
759
- msgid "Add Module"
760
- msgstr "Aggiungi modulo"
761
 
762
- #: view/admin/module_list.php:35
763
- msgid ""
764
- "A module is a controlling element that determines how redirections are "
765
- "handled. Elements in a WordPress module are handled by WordPress, elements "
766
- "in an Apache module are handled by <code>.htaccess</code>, and elements in a "
767
- "404 module affect how 404 errors are logged."
768
- msgstr ""
769
- "Il modulo è un elemento di controllo che determina la gestione dei "
770
- "reindirizzamenti. Gli elementi di un modulo di WordPress sono gestiti da "
771
- "WordPress, gli elementi in un modulo di Apache sono gestiti dal file <code>."
772
- "htaccess</code> e gli elementi di un modulo 404 influenzeranno la gestione "
773
- "del log per gli errori 404."
774
-
775
- #: view/admin/module_list.php:55
776
- msgid "Create"
777
- msgstr "Crea"
778
-
779
- #: view/admin/options.php:6 view/admin/submenu.php:26
780
- msgid "Options"
781
- msgstr "Opzioni"
782
 
783
- #: view/admin/options.php:15
784
- msgid "Auto-generate URL"
785
- msgstr "Genera URL automaticamente"
786
 
787
- #: view/admin/options.php:19
788
- msgid ""
789
- "This will be used to auto-generate a URL if no URL is given. You can use "
790
- "the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal "
791
- "or hex)"
792
- msgstr ""
793
- "Se non viene inserita nessuna URL, questa stringa verrà usata per generarne "
794
- "automaticamente una. È possibile usare i tag speciali $dec$ o $hex$ per "
795
- "inserire un ID unico (decimale o esadecimale)"
796
-
797
- #: view/admin/options.php:24
798
- msgid "IP Lookup Service"
799
- msgstr "Servizio di ricerca IP"
800
-
801
- #: view/admin/options.php:30
802
- msgid "Plugin Support"
803
- msgstr "Supporto plugin"
804
-
805
- #: view/admin/options.php:33
806
- msgid "I'm a nice person and I have helped support the author of this plugin"
807
- msgstr ""
808
- "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
809
-
810
- #: view/admin/options.php:37
811
- msgid "Logging"
812
- msgstr "Login in corso"
813
 
814
- #: view/admin/options.php:40
815
- msgid "log redirected requests"
816
- msgstr "crea log delle richieste di reindirizzamento"
 
817
 
818
- #: view/admin/options.php:42
819
- msgid "log 404 Not Found requests"
820
- msgstr "crea log delle richieste 404 Not Found"
821
 
822
- #: view/admin/options.php:43
823
- msgid ""
824
- "Uncheck one or both of these to turn off logging and reduce database load if "
825
- "your redirected URLs are hit very frequently, and/or your site is very busy "
826
- "and pages are often not found."
827
  msgstr ""
828
- "Deselezionare una o entrambe le opzioni per non creare log delle richieste e "
829
- "ridurre il carico del database. Consigliabile nel caso in cui il carico di "
830
- "reindirizzamenti sia alto, e/o nel caso in cui il sito abbia un alto numero "
831
- "di visitatori e vi siano molte pagine rimosse."
832
-
833
- #: view/admin/options.php:47
834
- msgid "Expire Logs"
835
- msgstr "I log scadono dopo"
836
 
837
- #: view/admin/options.php:50
838
- msgid "days (enter 0 for no expiry)"
839
- msgstr "giorni (inserire 0 per nessuna scadenza)"
840
 
841
- #: view/admin/options.php:54
842
- msgid "RSS Token"
843
- msgstr "Token RSS"
844
 
845
- #: view/admin/options.php:57
846
- msgid ""
847
- "A unique token allowing feed readers access to Redirection RSS (leave blank "
848
- "to auto-generate)"
849
- msgstr ""
850
- "Un token unico permette ai feed reader di accedere ai feed RSS di "
851
- "Redirection (lasciare vuoto per generarlo automaticamente)"
852
 
853
- #: view/admin/options.php:62
854
- msgid "URL Monitoring"
855
- msgstr "Controllo URL"
856
 
857
- #: view/admin/options.php:63
858
- msgid ""
859
- "You can have Redirection detect changes in URLs and have an automatic "
860
- "redirection created in a specific group."
861
- msgstr ""
862
- "È possibile impostare Redirection per identificare i cambiamenti nelle URL e "
863
- "creare automaticamente un reindirizzamento in un gruppo specifico."
864
 
865
- #: view/admin/options.php:67
866
- msgid "Post &amp; Page URLs"
867
- msgstr "URL dei post e delle pagine"
868
 
869
- #: view/admin/options.php:70 view/admin/options.php:82
870
- msgid "Don't monitor"
871
- msgstr "Non controllare"
872
 
873
- #: view/admin/options.php:74
874
- msgid "Monitor new posts"
875
- msgstr "Controlla i nuovi post"
876
 
877
- #: view/admin/options.php:79
878
- msgid "Category URLs"
879
- msgstr "URL della categoria"
 
880
 
881
- #: view/admin/options.php:89
882
- msgid "Update"
883
- msgstr "Aggiorna"
 
884
 
885
- #: view/admin/options.php:95
886
- msgid "Import"
887
- msgstr "Importa"
 
 
 
888
 
889
- #: view/admin/options.php:97
890
- msgid ""
891
- "Here you can import redirections from an existing .htaccess file, a CSV "
892
- "file, or a Redirection XML."
893
- msgstr ""
894
- "È possibile importare reindirizzamenti direttamente da un file .htacess, CSV "
895
- "o XML già esistente."
896
 
897
- #: view/admin/options.php:104
898
- msgid "Import into"
899
- msgstr "Importa in"
900
 
901
- #: view/admin/options.php:107
902
- msgid "Upload"
903
- msgstr "Carica"
904
 
905
- #: view/admin/options.php:110
906
- msgid "Note that the group is ignored when uploading an XML file."
907
- msgstr ""
908
- "Nota: il gruppo viene ignorato quando si effettua l'upload di un file XML."
909
 
910
- #: view/admin/options.php:114
911
- msgid "Delete Redirection"
912
- msgstr "Rimuovi Redirection"
913
 
914
- #: view/admin/options.php:115
915
- msgid ""
916
- "Selecting this option will delete all redirections, all logs, and any "
917
- "options associated with the Redirection plugin. Make sure this is what you "
918
- "want to do."
919
- msgstr ""
920
- "Selezionando questa opzione tutti i reindirizzamenti, i log e qualunque "
921
- "altra opzione associata con Redirection verranno cancellati. Assicurarsi che "
922
- "questo è proprio ciò che si vuole fare."
923
 
924
- #: view/admin/submenu.php:6
925
- msgid "Redirects"
926
  msgstr "Reindirizzamenti"
927
 
928
- #: view/admin/submenu.php:21
929
- msgid "Log"
930
- msgstr "Log"
931
-
932
- #: view/admin/submenu.php:31
933
- msgid "Support"
934
- msgstr "Supporto"
935
-
936
- #: view/admin/support.php:5
937
- msgid "Redirection Support"
938
- msgstr "Forum di supporto Redirection"
939
-
940
- #: view/admin/support.php:9
941
- msgid ""
942
- "Redirection is free to use - life is wonderful and lovely! However, it has "
943
- "required a great deal of time and effort to develop and if it has been "
944
- "useful you can help support this development by <strong>making a small "
945
- "donation</strong>."
946
- msgstr ""
947
- "Redirection può essere utilizzato gratuitamente - la vita è davvero "
948
- "fantastica e piena di tante belle cose! Lo sviluppo di questo plugin "
949
- "richiede comunque molto tempo e lavoro, sarebbe pertanto gradito il tuo "
950
- "sostegno <strong>tramite una piccola donazione</strong>."
951
-
952
- #: view/admin/support.php:10
953
- msgid ""
954
- "This will act as an incentive for me to carry on developing, providing "
955
- "countless hours of support, and including new features and suggestions. You "
956
- "get some useful software and I get to carry on making it. Everybody wins."
957
- msgstr ""
958
- "Questo mi spronerebbe a proseguirne lo sviluppo, incluse le numerose ore "
959
- "dedicate al supporto, l'inserimento di nuove caratteristiche e suggerimenti. "
960
- "Tu riceverai un software utile e io continuerò a fornirtelo. Insomma, ci "
961
- "guadagnamo tutti."
962
-
963
- #: view/admin/support.php:13
964
- msgid ""
965
- "If you are using this plugin in a commercial setup, or feel that it's been "
966
- "particularly useful, then you may want to consider a <strong>commercial "
967
- "donation</strong>."
968
- msgstr ""
969
- "Se hai intenzione di utilizzare questo plugin su un sito commerciale, o "
970
- "ritieni che sia particolarmente utile, puoi magari pensare di effettuare una "
971
- "<strong>donazione commerciale</strong>."
972
-
973
- #: view/admin/support.php:36
974
- msgid "Individual<br/>Donation"
975
- msgstr "Donazione<br/>individuale"
976
-
977
- #: view/admin/support.php:56
978
- msgid "Commercial<br/>Donation"
979
- msgstr "Donazione<br/>commerciale"
980
 
981
- #: view/admin/support.php:60
982
- msgid "Translations"
983
- msgstr "Traduzioni"
984
 
985
- #: view/admin/support.php:62
986
- msgid ""
987
- "If you're multi-lingual then you may want to consider donating a translation:"
988
- msgstr ""
989
- "Se parli più lingue potresti essere interessato a donare una traduzione."
990
 
991
- #: view/admin/support.php:70
992
- msgid ""
993
- "All translators will have a link to their website placed on the plugin "
994
- "homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/"
995
- "\">UrbanGiraffe</a>, in addition to being an individual supporter."
996
- msgstr ""
997
- "Tutti i traduttori verranno citati inserendo un link al loro sito internet "
998
- "su <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</"
999
- "a>, oltre a diventare sostenitori individuali."
1000
 
1001
- #: view/admin/support.php:71
1002
- msgid ""
1003
- "Full details of producing a translation can be found in this <a href="
1004
- "\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/"
1005
- "\">guide to translating WordPress plugins</a>."
1006
- msgstr ""
1007
- "I dettagli completi su come creare una traduzione sono presenti nella <a "
1008
- "href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-"
1009
- "plugins/\">guida per tradurre i plugin di WordPress</a>."
1010
 
1011
- #. Plugin URI of the plugin/theme
1012
- msgid "http://urbangiraffe.com/plugins/redirection/"
1013
- msgstr "http://urbangiraffe.com/plugins/redirection/"
1014
 
1015
- #. Description of the plugin/theme
1016
- msgid "Manage all your 301 redirects and monitor 404 errors"
1017
- msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
1018
 
1019
- #. Author of the plugin/theme
1020
- msgid "John Godley"
1021
- msgstr "John Godley"
1022
 
1023
- #. Author URI of the plugin/theme
1024
- msgid "http://urbangiraffe.com"
1025
- msgstr "http://urbangiraffe.com"
1026
 
1027
- #~ msgid "Redirection Help"
1028
- #~ msgstr "Aiuto Redirection"
 
1029
 
1030
- #~ msgid "Redirection Documentation"
1031
- #~ msgstr "Documentazione Redirection"
 
1032
 
1033
- #~ msgid "Redirection Support Forum"
1034
- #~ msgstr "Forum di supporto Redirection"
 
1035
 
1036
- #~ msgid "Redirection Bug Tracker"
1037
- #~ msgstr "Bug Tracker Redirection"
 
1038
 
1039
- #~ msgid "Redirection FAQ"
1040
- #~ msgstr "Redirection FAQ"
 
1041
 
1042
- #~ msgid ""
1043
- #~ "Please read the documentation and FAQ, and check the bug tracker, before "
1044
- #~ "asking a question."
1045
- #~ msgstr ""
1046
- #~ "Prima di porre una domanda, si prega di leggere attentamente la "
1047
- #~ "documentazione e le FAQ, e controllare il bug tracker."
1048
 
1049
- #~ msgid " for external site: <code>%s</code>"
1050
- #~ msgstr " per il sito esterno: <code>%s</code>"
 
 
1051
 
1052
- #~ msgid "Strip index files (html,php,asp)"
1053
- #~ msgstr "Rimuovi i file index (html,php,asp)"
 
1054
 
1055
- #~ msgid "Time Limit"
1056
- #~ msgstr "Tempo limite"
 
 
1057
 
1058
- #~ msgid "30 seconds"
1059
- #~ msgstr "30 secondi"
 
1060
 
1061
- #~ msgid "1 minute"
1062
- #~ msgstr "1 minuto"
 
 
1063
 
1064
- #~ msgid "2 minutes"
1065
- #~ msgstr "2 minuti"
 
1066
 
1067
- #~ msgid "5 minutes"
1068
- #~ msgstr "5 minuti"
 
1069
 
1070
- #~ msgid "As long as possible"
1071
- #~ msgstr "Il più lungo possibile"
 
1072
 
1073
- #~ msgid "time limit set as long as possible"
1074
- #~ msgstr "tempo limite settato al massimo possibile"
 
1075
 
1076
- #~ msgid "time limit at %ss"
1077
- #~ msgstr "tempo limite di %s s"
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Italian
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-01-29 15:55:57+0000\n"
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: it\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
 
 
 
 
16
  msgstr ""
 
 
 
 
 
 
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
 
 
 
20
  msgstr ""
 
 
 
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
 
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
 
 
166
  msgstr ""
 
 
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
 
 
250
  msgstr ""
 
 
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
 
 
254
  msgstr ""
 
 
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Impostazioni avanzate"
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Gestisci tutti i redirect 301 and controlla tutti gli errori 404"
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Forum di supporto Redirection"
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Supporto"
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404 da %s"
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
 
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Rimuovi Redirection"
 
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Carica"
 
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importa"
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Aggiorna"
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
  msgstr ""
 
 
 
 
 
 
 
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Genera URL automaticamente"
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"
331
 
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Token RSS"
335
 
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Non controllare"
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Controlla cambiamenti ai post"
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "Registro 404"
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(per quanto tempo conservare i log)"
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Registro redirezioni"
 
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr ""
363
 
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Opzioni"
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Due mesi"
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Un mese"
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Una settimana"
 
 
379
 
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Un giorno"
383
 
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Nessun log"
387
 
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Moduli"
391
 
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
  msgstr ""
 
 
395
 
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Elimina tutto"
 
399
 
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Log reindirizzamenti"
 
403
 
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "opzionale"
407
 
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Descrizione"
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ 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."
415
 
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Aggiungi gruppo"
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
 
421
  msgid "Search"
422
  msgstr "Cerca"
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Gruppi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Salva"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Crea reindirizzamento"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Gruppo"
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Espressione regolare (regex)"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Azione"
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Match"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Il reindirizzamento è stato creato."
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Aggiungi un nuovo reindirizzamento"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Annulla"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Scaricare"
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Mi dispiace, il reindirizzamento non è stato creato"
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Impossibile eseguire questa azione"
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Non è stato importato nessun elemento"
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d reindirizzamento importato con successo"
486
+ msgstr[1] "%d reindirizzamenti importati con successo"
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Le opzioni sono state aggiornate"
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Impostazioni"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr "Redirect gestiti da WordPress. Questo non richiede ulteriori configurazioni e potrai tracciare i redirect effettuati."
503
 
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Da usare con i server Nginx. Richiede una configurazione manuale. I redirect avvengono senza caricare WordPress. Non verranno tracciati questi redirect. Questo modulo è sperimentale."
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
 
 
510
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
 
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Rimuove o aggiunge automaticamente www al tuo sito."
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Server predefinito"
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "URL canonico"
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr ""
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
 
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr "Posizione del file .htaccess"
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Non fare niente"
539
 
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Errore (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Pass-through"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Reindirizza a un post a caso"
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Reindirizza a URL"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Impossibile aggiungere nuovi redirect - elimina Redirection dalla pagina delle opzioni e reinstallalo"
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "URL di partenza non valido nella creazione del redirect per il tipo di corrispondenza inserito"
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Gruppo non valido nella creazione del redirect"
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Puoi eseguire un redirect solo da un URL relativo (<code>%s</code>) in questo dominio (<code>%s</code>). "
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "L'URL di partenza e di destinazione devono essere differenti"
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configura"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Mostra solo questo IP"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL di partenza"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Data"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
 
 
 
599
  msgstr ""
 
 
 
 
 
 
 
 
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Tutti i moduli"
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Mostra i redirect"
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Modulo"
 
 
 
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Reindirizzamenti"
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nome"
 
 
 
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtro"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Nessun filtro di gruppo"
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Azzera visite"
634
 
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Attiva"
639
 
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Disattiva"
644
 
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Rimuovi"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Modifica"
 
 
 
 
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Ultimo accesso"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Visite"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
 
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Tipo"
671
 
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Post modificati"
 
 
 
 
 
 
675
 
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
  msgstr "Reindirizzamenti"
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "Il visitatore sarà reindirizzato dalla URL di partenza se l'user agent corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se l'user agent corrisponde, e <em>not matched</em> se non corrisponde. <strong>Tutte le corrispondenze sono create come espressioni regolari (regex)</strong>.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "User agent"
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
 
 
691
 
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
 
 
 
 
 
 
695
 
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
 
 
 
 
 
 
699
 
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
 
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
 
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
 
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "Firefox"
715
 
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
 
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
 
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL e user agent"
727
 
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "URL di arrivo"
731
 
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "solo URL"
735
 
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Not matched"
 
 
740
 
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Matched"
745
 
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "Il visitatore sarà reindirizzato dalla URL di partenza se il referrer corrisponde. È possibile specificare una URL di arrivo <em>matched</em>, ovvero da utilizzare come reindirizzamento se il referrer corrisponde, e <em>not matched</em> se non corrisponde. Lasciando l'URL vuota l'utente non viene reindirizzato."
749
 
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "Codice HTTP"
754
 
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
 
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referrer"
763
 
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL e referrer"
767
 
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Logged out"
771
 
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Logged in"
775
 
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "L'URL di arrivo verrà scelta tra una delle seguenti, a seconda che l'utente abbia effettuato o meno il login. Lasciando l'URL vuota l'utente non verrà reindirizzato."
779
 
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "status URL e login"
locale/redirection-ja.mo CHANGED
Binary file
locale/redirection-ja.po CHANGED
@@ -1,1180 +1,780 @@
1
- # Japanese (UTF-8) translation for WordPress Plugin Redirection 2.1.14
2
- #
3
- # Copyright (c) 2009
4
- # このファイルは WordPress 本体と同じライセンスのもと配布されています。
5
- # This file is distributed under the same license as the WordPress package.
6
- #
7
- # WordPress J-Series Project
8
- # <http://wppluginsj.sourceforge.jp/i18n-ja_jp/>
9
- #
10
  msgid ""
11
  msgstr ""
12
- "Project-Id-Version: Redirection 2.1.14\n"
13
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
14
- "POT-Creation-Date: 2015-02-25 16:15+0900\n"
15
- "PO-Revision-Date: 2015-02-25 16:39+0900\n"
16
- "Last-Translator: Naoko Takano <info@nao-net.com>\n"
17
- "Language-Team: \n"
18
- "Language: ja\n"
19
  "MIME-Version: 1.0\n"
20
  "Content-Type: text/plain; charset=UTF-8\n"
21
  "Content-Transfer-Encoding: 8bit\n"
22
- "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-Basepath: ../\n"
24
- "X-Poedit-KeywordsList: __;_e\n"
25
- "X-Generator: Poedit 1.7.1\n"
26
  "Plural-Forms: nplurals=1; plural=0;\n"
27
- "X-Poedit-SearchPath-0: .\n"
 
 
28
 
29
- #: fileio/rss.php:28
30
- #, php-format
31
- msgid "Referred by %s"
32
- msgstr "リファラー: %s"
33
 
34
- #: matches/login.php:27
35
- msgid "URL and login status"
36
- msgstr "URL およびログイン状態"
37
 
38
- #: matches/login.php:36
39
- msgid ""
40
- "The target URL will be chosen from one of the following URLs, depending if "
41
- "the user is logged in or out. Leaving a URL blank means that the user is "
42
- "not redirected."
43
- msgstr ""
44
- "ユーザーがログインしているかどうかにより、ターゲット URL は以下のうちいずれか"
45
- "になります。URL を空白にした場合、そのユーザーは転送されません。"
46
 
47
- #: matches/login.php:43 matches/login.php:45
48
- msgid "Logged In"
49
- msgstr "ログイン中"
50
 
51
- #: matches/login.php:55 matches/login.php:57
52
- msgid "Logged Out"
53
- msgstr "ログアウト中"
54
 
55
- #: matches/referrer.php:28
56
- msgid "URL and referrer"
57
- msgstr "URL およびリファラー"
58
 
59
- #: matches/referrer.php:40 models/pager.php:438 models/pager.php:569
60
- msgid "Referrer"
61
- msgstr "リファラー"
62
 
63
- #: matches/referrer.php:43 view/admin/item_edit.php:7
64
- msgid "Regex"
65
- msgstr "正規表現"
66
 
67
- #: matches/referrer.php:47 matches/referrer.php:57 matches/url.php:40
68
- #: matches/user_agent.php:57
69
- msgid "HTTP Code"
70
- msgstr "HTTP コード"
71
 
72
- #: matches/referrer.php:59
73
- msgid ""
74
- "The visitor will be redirected from the source URL if the referrer matches. "
75
- "You can specify a <em>matched</em> target URL as the address to send "
76
- "visitors if they do match, and <em>not matched</em> if they don't match. "
77
- "Leaving a URL blank means that the visitor is not redirected."
78
- msgstr ""
79
- "もしリファラーが一致する場合、ソース URL から転送されます。<strong>一致の場合"
80
- "</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞ"
81
- "れ指定できます。URL を空のままにした場合、ユーザーは転送されません。"
82
-
83
- #: matches/referrer.php:65 matches/referrer.php:67 matches/user_agent.php:77
84
- #: matches/user_agent.php:79
85
- msgid "Matched"
86
- msgstr "一致の場合"
87
 
88
- #: matches/referrer.php:75 matches/referrer.php:77 matches/user_agent.php:87
89
- #: matches/user_agent.php:89
90
- msgid "Not matched"
91
- msgstr "不一致の場合"
92
 
93
- #: matches/url.php:25
94
- msgid "URL only"
95
- msgstr "URL のみ"
96
-
97
- #: matches/url.php:32 view/admin/add.php:32
98
- msgid "Target URL"
99
- msgstr "ターゲット URL"
100
-
101
- #: matches/user_agent.php:27
102
- msgid "URL and user agent"
103
- msgstr "URL およびユーザーエージェント"
104
 
105
- #: matches/user_agent.php:32
106
- msgid "FeedBurner"
107
- msgstr "FeedBurner"
108
 
109
- #: matches/user_agent.php:33
110
- msgid "Internet Explorer"
111
- msgstr "Internet Explorer"
112
 
113
- #: matches/user_agent.php:34
114
- msgid "FireFox"
115
- msgstr "FireFox"
116
 
117
- #: matches/user_agent.php:35
118
- msgid "Opera"
119
- msgstr "Opera"
120
 
121
- #: matches/user_agent.php:36
122
- msgid "Safari"
123
- msgstr "Safari"
124
 
125
- #: matches/user_agent.php:37
126
- msgid "iPhone"
127
- msgstr "iPhone"
128
 
129
- #: matches/user_agent.php:38
130
- msgid "iPad"
131
- msgstr "iPad"
132
 
133
- #: matches/user_agent.php:39
134
- msgid "Android"
135
- msgstr "Android"
136
 
137
- #: matches/user_agent.php:40
138
- msgid "Nintendo Wii"
139
- msgstr "Nintendo Wii"
140
 
141
- #: matches/user_agent.php:45
142
- msgid "User Agent"
143
- msgstr "ユーザーエージェント"
144
 
145
- #: matches/user_agent.php:70
146
- msgid ""
147
- "The visitor will be redirected from the source URL if the user agent "
148
- "matches. You can specify a <em>matched</em> target URL as the address to "
149
- "send visitors if they do match, and <em>not matched</em> if they don't "
150
- "match. Leaving a URL blank means that the visitor is not redirected. "
151
- "<strong>All matches are performed as regular expressions</strong>.\n"
152
- msgstr ""
153
- "もしユーザーエージェントが一致する場合、ソース URL から転送されます。<strong>"
154
- "一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット "
155
- "URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されませ"
156
- "ん。<strong>一致条件の判定はすべて正規表現で行われます</strong>。\n"
157
 
158
- #: models/database.php:108 models/module.php:168 modules/wordpress.php:116
159
- msgid "WordPress"
160
- msgstr "WordPress"
161
 
162
- #: models/database.php:109 models/module.php:167 modules/apache.php:188
163
- msgid "Apache"
164
- msgstr "Apache"
165
 
166
- #: models/database.php:114 view/admin/item_list.php:5
167
- msgid "Redirections"
168
- msgstr "転送ルール"
169
 
170
- #: models/database.php:115
171
- msgid "Modified Posts"
172
- msgstr "編集済みの投稿"
173
 
174
- #: models/group.php:202
175
- msgid "Yes"
176
- msgstr "はい"
177
 
178
- #: models/group.php:203
179
- msgid "No"
180
- msgstr "いいえ"
181
 
182
- #: models/module.php:192
183
- msgid "Strip WWW"
184
- msgstr "WWW を除く"
185
 
186
- #: models/module.php:192
187
- msgid "Force WWW"
188
- msgstr "WWW を強制追加"
189
 
190
- #: models/module.php:197
191
- msgid "Strip index.php"
192
- msgstr "index.php を除く"
193
 
194
- #: models/pager.php:25 models/pager.php:667
195
- msgid "Type"
196
- msgstr "タイプ"
197
 
198
- #: models/pager.php:26
199
- msgid "URL"
200
- msgstr "URL"
201
 
202
- #: models/pager.php:27 models/pager.php:670
203
- msgid "Hits"
204
- msgstr "ヒット数"
205
 
206
- #: models/pager.php:28
207
- msgid "Last Access"
208
- msgstr "前回のアクセス"
209
 
210
- #: models/pager.php:50 models/pager.php:245 models/pager.php:689
211
- msgid "Edit"
212
- msgstr "編集"
213
 
214
- #: models/pager.php:51 models/pager.php:98 models/pager.php:246
215
- #: models/pager.php:281 models/pager.php:456 models/pager.php:586
216
- #: view/admin/options.php:108
217
- msgid "Delete"
218
- msgstr "削除"
219
 
220
- #: models/pager.php:56 models/pager.php:100
221
- msgid "Disable"
222
- msgstr "無効化"
223
 
224
- #: models/pager.php:58 models/pager.php:99
225
- msgid "Enable"
226
- msgstr "有効化"
227
 
228
- #: models/pager.php:101
229
- msgid "Reset Hits"
230
- msgstr "訪問数をリセット"
231
 
232
- #: models/pager.php:155 models/pager.php:322
233
- msgid "Filter"
234
- msgstr "フィルター"
235
 
236
- #: models/pager.php:236 models/pager.php:668 view/admin/group_edit.php:4
237
- #: view/admin/group_list.php:28 view/admin/module_edit.php:4
238
- msgid "Name"
239
- msgstr "名称"
240
 
241
- #: models/pager.php:237 view/admin/submenu.php:6
242
- msgid "Redirects"
243
- msgstr "転送ルール"
244
 
245
- #: models/pager.php:247
246
- msgid "View Redirects"
247
- msgstr "転送ルールを表示"
248
 
249
- #: models/pager.php:399 models/pager.php:533
250
- msgid "Add redirect"
251
- msgstr "転送ルールを追加"
252
 
253
- #: models/pager.php:436 models/pager.php:567
254
- msgid "Date"
255
- msgstr "日付"
256
 
257
- #: models/pager.php:437 models/pager.php:568 view/admin/add.php:13
258
- #: view/admin/item_edit.php:4
259
- msgid "Source URL"
260
- msgstr "ソース URL"
261
 
262
- #: models/pager.php:439 models/pager.php:570
263
- msgid "IP"
264
- msgstr "IP"
265
 
266
- #: models/pager.php:539
267
- msgid "Show only this IP"
268
- msgstr "この IP のみ表示"
269
 
270
- #: models/pager.php:669 view/admin/group_list.php:5 view/admin/submenu.php:11
271
- msgid "Groups"
272
- msgstr "グループ"
273
 
274
- #: models/redirect.php:200
275
- msgid "Source and target URL must be different"
276
- msgstr "ソースとターゲット URL は異なるものを指定してください"
277
 
278
- #: models/redirect.php:207
279
- msgid "Invalid group when creating redirect"
280
- msgstr "転送ルールを作成する際に無効なグループが指定されました"
281
 
282
- #: models/redirect.php:210
283
- msgid "Invalid source URL when creating redirect for given match type"
284
- msgstr ""
285
- "指定された一致タイプの転送ルールを作成する際に無効なソース URL が入力されまし"
286
- "た"
287
 
288
- #: models/redirect.php:247
289
- msgid ""
290
- "Unable to add new redirect - delete Redirection from the options page and re-"
291
- "install"
292
- msgstr ""
293
- "新規転送ルールを追加できません。設定ページから転送ルールを削除し、再インス"
294
- "トールしてください。"
295
 
296
- #: models/redirect.php:427
297
- msgid "Redirect to URL"
298
- msgstr "URL へ転送"
299
 
300
- #: models/redirect.php:428
301
- msgid "Redirect to random post"
302
- msgstr "ランダムな記事へ転送"
303
 
304
- #: models/redirect.php:429
305
- msgid "Pass-through"
306
- msgstr "通過"
307
 
308
- #: models/redirect.php:430
309
- msgid "Error (404)"
310
- msgstr "エラー (404)"
311
 
312
- #: models/redirect.php:431
313
- msgid "Do nothing"
314
- msgstr "何もしない"
315
 
316
- #: modules/apache.php:76
317
- msgid "Location"
318
- msgstr "位置"
319
 
320
- #: modules/apache.php:81
321
- #, php-format
322
- msgid "WordPress is installed in: <code>%s</code>"
323
- msgstr "WordPress のインストール位置: <code>%s</code>"
324
 
325
- #: modules/apache.php:86
326
- msgid "Canonical"
327
- msgstr "カノニカル"
328
 
329
- #: modules/apache.php:89 modules/apache.php:95
330
- msgid "Leave as is"
331
- msgstr "そのままにする"
332
 
333
- #: modules/apache.php:89
334
- #, php-format
335
- msgid "Strip WWW (%s)"
336
- msgstr "WWW を除く (%s)"
337
 
338
- #: modules/apache.php:89
339
- #, php-format
340
- msgid "Force WWW (www.%s)"
341
- msgstr "WWW を強制追加 (www.%s)"
342
 
343
- #: modules/apache.php:93
344
- msgid "Strip Index"
345
- msgstr "Index を除く"
346
 
347
- #: modules/apache.php:95
348
- msgid "Strip index files (html,php)"
349
- msgstr "index ファイルを除く (html,php)"
350
 
351
- #: modules/apache.php:100
352
- msgid "Memory Limit"
353
- msgstr "メモリー上限"
354
 
355
- #: modules/apache.php:103 modules/apache.php:108
356
- msgid "Server default"
357
- msgstr "サーバーの初期設定"
358
 
359
- #: modules/apache.php:106
360
- msgid "Error Level"
361
- msgstr "エラーレベル"
362
 
363
- #: modules/apache.php:108
364
- msgid "No errors"
365
- msgstr "エラーなし"
366
 
367
- #: modules/apache.php:108
368
- msgid "Show errors"
369
- msgstr "エラーを表示"
370
 
371
- #: modules/apache.php:113
372
- msgid "Ban IPs"
373
- msgstr "禁止 IP"
374
 
375
- #: modules/apache.php:119
376
- msgid "Allow IPs"
377
- msgstr "許可 IP"
378
 
379
- #: modules/apache.php:125
380
- msgid "Raw .htaccess"
381
- msgstr "生の .htaccess"
382
 
383
- #: modules/apache.php:131
384
- msgid "Site URL"
385
- msgstr "サイト URL "
386
 
387
- #: modules/apache.php:134
388
- msgid "Advanced: For management of external sites"
389
- msgstr "高度な設定: 外部サイト管理用"
390
 
391
- #: modules/apache.php:149
392
- msgid "<strong>Location is invalid - check that path exists</strong>"
393
- msgstr ""
394
- "<strong>ファイルの位置が正しくありません。パスが存在するか確認してください。"
395
- "</strong>"
396
 
397
- #: modules/apache.php:155
398
- msgid ""
399
- "<strong>Could not write to configured <code>.htaccess</code> file - check "
400
- "file permissions</strong>"
401
- msgstr ""
402
- "<strong>設定済みの <code>.htaccess</code> に書き込みできませんでした。パー"
403
- "ミッションを確認してください。</strong>"
404
 
405
- #: modules/apache.php:162
406
- msgid ""
407
- "<strong>Disabled: enter the location of an <code>.htaccess</code> file for "
408
- "this to be valid</strong>"
409
- msgstr ""
410
- "<strong>無効: 有効にするには<code>.htaccess</code> ファイルの位置を入力してく"
411
- "ださい。</strong>"
412
 
413
- #: modules/apache.php:167
414
- msgid "strip WWW"
415
- msgstr "WWW を除く"
416
 
417
- #: modules/apache.php:167
418
- msgid "force WWW"
419
- msgstr "WWW を追加"
420
 
421
- #: modules/apache.php:170
422
- msgid "strip index"
423
- msgstr "index を除く"
424
 
425
- #: modules/apache.php:173
426
- #, php-format
427
- msgid "memory limit at %dMB"
428
- msgstr "メモリー上限%dMB"
429
 
430
- #: modules/apache.php:176
431
- msgid "no errors"
432
- msgstr "エラーなし"
433
 
434
- #: modules/apache.php:176
435
- msgid "show errors"
436
- msgstr "エラーを表示"
437
 
438
- #: modules/apache.php:179
439
- msgid "IPs are banned"
440
- msgstr "禁止 IP"
441
 
442
- #: modules/apache.php:182
443
- msgid "IPs are allowed"
444
- msgstr "許可 IP"
445
 
446
- #: modules/wordpress.php:112
447
- msgid ""
448
- "<strong>Disabled: You must enable <a href=\"options-permalink.php"
449
- "\">permalinks</a> before using this</strong>"
450
- msgstr ""
451
- "<strong>無効: これを使用する前に<a href=\"options-permalink.php\">パーマリン"
452
- "ク</a>を有効にする必要があります。</strong>"
453
 
454
- #: redirection-admin.php:130
455
- msgid "Settings"
456
- msgstr "設定"
457
 
458
- #: redirection-admin.php:142
459
- msgid "Log entries"
460
- msgstr "エントリーのログを保存"
461
 
462
- #: redirection-admin.php:148
463
- msgid "Sorry, unable to do that. Please try refreshing the page."
464
- msgstr "ご指定の操作は実行できません。ページを再読み込みしてみてください。"
465
 
466
- #: redirection-admin.php:153
467
- msgid "Redirection"
468
- msgstr "リディレクション"
469
 
470
- #: redirection-admin.php:220 redirection-admin.php:236
471
- msgid "Your options were updated"
472
- msgstr "設定を更新しました。"
473
 
474
- #: redirection-admin.php:245
475
- msgid "Redirection data has been deleted and the plugin disabled"
476
- msgstr "リディレクションデータを削除し、プラグインを無効化しました。"
477
 
478
- #: redirection-admin.php:252
479
- #, php-format
480
- msgid "%d redirection was successfully imported"
481
- msgid_plural "%d redirections were successfully imported"
482
- msgstr[0] "%d件の転送をインポートしました。"
483
 
484
- #: redirection-admin.php:254
485
- msgid "No items were imported"
486
- msgstr "項目をインポートできませんでした。"
487
 
488
- #: redirection-admin.php:266 redirection-admin.php:286
489
- msgid "Your logs have been deleted"
490
- msgstr "ログを削除しました。"
491
 
492
- #: redirection-admin.php:300
493
- msgid "Your group was added successfully"
494
- msgstr "グループの追加に成功しました。"
495
 
496
- #: redirection-admin.php:304
497
- msgid "Please specify a group name"
498
- msgstr "グループ名を指定してください。"
499
 
500
- #: redirection-admin.php:317
501
- msgid "Unknown module"
502
- msgstr "不明なモジュール"
503
 
504
- #: redirection-admin.php:366 redirection-admin.php:378
505
- #: redirection-admin.php:401 redirection-admin.php:415
506
- #: redirection-admin.php:436 redirection-admin.php:448
507
- #: redirection-admin.php:470
508
- msgid "Unable to perform action"
509
- msgstr "操作を実行できません"
510
 
511
- #: redirection-admin.php:490
512
- msgid "Sorry, but your redirection was not created"
513
- msgstr "転送ルールを作成できませんでした。"
514
 
515
- #: view/admin/add.php:4
516
- msgid "Add new redirection"
517
  msgstr "新しい転送ルールを追加"
518
 
519
- #: view/admin/add.php:7
520
- msgid "Your redirection has been added."
521
- msgstr "新しい転送ルールを追加しました。"
522
 
523
- #: view/admin/add.php:17
524
- msgid "Match"
525
- msgstr "一致条件"
526
 
527
- #: view/admin/add.php:23
528
  msgid "Action"
529
  msgstr "操作"
530
 
531
- #: view/admin/add.php:28
532
- msgid "Regular expression"
533
- msgstr "正規表現"
534
 
535
- #: view/admin/add.php:37
536
- msgid "Group"
537
- msgstr "グループ"
538
 
539
- #: view/admin/add.php:44
540
- msgid "Add Redirection"
541
  msgstr "新しい転送ルールを追加"
542
 
543
- #: view/admin/group_edit.php:8
544
- msgid "Tracked"
545
- msgstr "追跡"
546
-
547
- #: view/admin/group_edit.php:9
548
- msgid "Whether to track 'hits' to items"
549
- msgstr "項目のヒット数を追跡"
550
-
551
- #: view/admin/group_edit.php:12
552
- msgid "Enabled"
553
- msgstr "有効"
554
-
555
- #: view/admin/group_edit.php:13
556
- msgid "Disabling a group will disable all items contained within it"
557
- msgstr "グループを無効化すると、含まれた項目すべてが無効になります"
558
-
559
- #: view/admin/group_edit.php:19 view/admin/item_edit.php:26
560
- #: view/admin/module_edit.php:14
561
- msgid "Save"
562
- msgstr "保存"
563
-
564
- #: view/admin/group_edit.php:20 view/admin/item_edit.php:27
565
- #: view/admin/module_edit.php:15
566
  msgid "Cancel"
567
  msgstr "キャンセル"
568
 
569
- #: view/admin/group_list.php:13 view/admin/item_list.php:12
570
- #: view/admin/log.php:13
571
- msgid "Search"
572
- msgstr "検索"
573
-
574
- #: view/admin/group_list.php:22
575
- msgid "Add Group"
576
- msgstr "グループを追加"
577
 
578
- #: view/admin/group_list.php:34
579
- msgid "Add"
580
- msgstr "追加"
581
-
582
- #: view/admin/item_edit.php:13
583
- msgid "Description"
584
- msgstr "説明"
585
-
586
- #: view/admin/item_edit.php:16
587
- msgid "optional"
588
- msgstr "オプション"
589
-
590
- #: view/admin/log.php:5
591
- msgid "Redirection Log"
592
- msgstr "転送ログ"
593
-
594
- #: view/admin/log.php:19
595
- msgid "Log Management"
596
- msgstr "ログ管理"
597
-
598
- #: view/admin/log.php:23
599
- msgid "These apply to the current search term, if any, otherwise all logs."
600
- msgstr ""
601
- "これらは現在の検索キーワードに適用されます。もしキーワードがない場合はすべて"
602
- "のログに適用されます。"
603
-
604
- #: view/admin/log.php:25
605
- msgid "Delete All"
606
- msgstr "すべてを削除"
607
-
608
- #: view/admin/log.php:28
609
- msgid "Export To CSV"
610
- msgstr "CSV としてエクスポート"
611
-
612
- #: view/admin/module_list.php:5 view/admin/submenu.php:16
613
- msgid "Modules"
614
- msgstr "モジュール"
615
-
616
- #: view/admin/options.php:6
617
- msgid "No logs"
618
- msgstr "ログなし"
619
 
620
- #: view/admin/options.php:7
621
- msgid "A day"
622
- msgstr "1日"
 
623
 
624
- #: view/admin/options.php:8
625
- msgid "A week"
626
- msgstr "1週間"
627
 
628
- #: view/admin/options.php:9
629
- msgid "A month"
630
- msgstr "1ヶ月"
 
631
 
632
- #: view/admin/options.php:10
633
- msgid "Two months"
634
- msgstr "2ヶ月"
635
 
636
- #: view/admin/options.php:11
637
- msgid "Keep forever"
638
- msgstr "無期限に保存"
639
 
640
- #: view/admin/options.php:19 view/admin/submenu.php:42
641
- msgid "Options"
642
  msgstr "設定"
643
 
644
- #: view/admin/options.php:27
645
- msgid "Plugin Support"
646
- msgstr "プラグインサポート"
647
-
648
- #: view/admin/options.php:30
649
- msgid "I'm a nice person and I have helped support the author of this plugin"
650
- msgstr "このプラグインの作者に対する援助を行いました"
651
-
652
- #: view/admin/options.php:34
653
- msgid "Redirect Logs"
654
- msgstr "転送ログ"
655
-
656
- #: view/admin/options.php:40 view/admin/options.php:50
657
- msgid "(time to keep logs for)"
658
- msgstr "(ログの保存期間)"
659
-
660
- #: view/admin/options.php:44
661
- msgid "404 Logs"
662
- msgstr "404 ログ"
663
-
664
- #: view/admin/options.php:54
665
- msgid "Monitor changes to posts"
666
- msgstr "投稿の変更をモニター"
667
-
668
- #: view/admin/options.php:57
669
- msgid "Don't monitor"
670
- msgstr "モニターしない"
671
-
672
- #: view/admin/options.php:63
673
- msgid "RSS Token"
674
- msgstr "RSS トークン"
675
-
676
- #: view/admin/options.php:66
677
- msgid ""
678
- "A unique token allowing feed readers access to Redirection log RSS (leave "
679
- "blank to auto-generate)"
680
- msgstr ""
681
- "リディレクションログ RSS にフィードリーダーからアクセスするための固有トーク"
682
- "ン (空白にしておけば自動生成します)"
683
-
684
- #: view/admin/options.php:70
685
- msgid "Auto-generate URL"
686
- msgstr "URL を自動生成 "
687
-
688
- #: view/admin/options.php:74
689
- msgid ""
690
- "This will be used to auto-generate a URL if no URL is given. You can use "
691
- "the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal "
692
- "or hex)"
693
- msgstr ""
694
- "もし URL が指定されていない場合自動生成されます。特別なタグ $dec$ または $hex"
695
- "$ を使い、10進法または16進法の固有 ID を挿入できます。"
696
-
697
- #: view/admin/options.php:79
698
- msgid "Update"
699
- msgstr "更新"
700
-
701
- #: view/admin/options.php:85
702
- msgid "Import"
703
- msgstr "インポート"
704
-
705
- #: view/admin/options.php:87
706
- msgid ""
707
- "Here you can import redirections from an existing .htaccess file, or a CSV "
708
- "file."
709
- msgstr ""
710
- "ここで既存の .htaccess ファイルまたは CSV ファイルから転送ルールをインポート"
711
- "できます。"
712
-
713
- #: view/admin/options.php:94
714
- msgid "Import into"
715
- msgstr "インポート先"
716
-
717
- #: view/admin/options.php:97
718
- msgid "Upload"
719
- msgstr "アップロード"
720
-
721
- #: view/admin/options.php:102
722
- msgid "Delete Redirection"
723
- msgstr "転送ルールを削除"
724
-
725
- #: view/admin/options.php:103
726
- msgid ""
727
- "Selecting this option will delete all redirections, all logs, and any "
728
- "options associated with the Redirection plugin. Make sure this is what you "
729
- "want to do."
730
- msgstr ""
731
- "個のオプションを選択すると、リディレクションプラグインに関するすべての転送"
732
- "ルール・ログ・設定を削除します。本当にこの操作を行って良いか、再度確認してく"
733
- "ださい。"
734
-
735
- #: view/admin/submenu.php:23
736
- msgid "Log"
737
- msgstr "ログ"
738
-
739
- #: view/admin/submenu.php:32
740
- #, php-format
741
- msgid "404s from %s"
742
- msgstr "%s からの 404"
743
-
744
- #: view/admin/submenu.php:34
745
- msgid "404s"
746
- msgstr "404 エラー"
747
-
748
- #: view/admin/submenu.php:47
749
- msgid "Support"
750
- msgstr "作者を応援 "
751
-
752
- #: view/admin/support.php:5
753
- msgid "Redirection Support"
754
- msgstr "Redirection を応援する"
755
-
756
- #: view/admin/support.php:9
757
- msgid ""
758
- "Redirection is free to use - life is wonderful and lovely! However, it has "
759
- "required a great deal of time and effort to develop and if it has been "
760
- "useful you can help support this development by <strong>making a small "
761
- "donation</strong>."
762
- msgstr ""
763
- "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時"
764
- "間と労力がかかっており、<strong>少額の寄付</strong>で開発を助けていただけるよ"
765
- "うでしたら嬉しく思います。"
766
-
767
- #: view/admin/support.php:10
768
- msgid ""
769
- "This will act as an incentive for me to carry on developing. You get some "
770
- "useful software and I get to carry on making it. Everybody wins."
771
- msgstr ""
772
- "これは私が開発を継続するための動機付けになります。皆さんは役に立つソフトウェ"
773
- "アを手に入れることができ、私はそれを作り続けられるので、誰もが得をするといえ"
774
- "ます。"
775
-
776
- #: view/admin/support.php:13
777
- msgid ""
778
- "Please note that a donation is just a donation - it is not a payment for "
779
- "support. I am not a business, this is not a product, and I'm afraid I cannot "
780
- "provide paid support"
781
- msgstr ""
782
- "寄付はサポートに対する支払いではないことにご注意ください。このプラグインを提"
783
- "供しているのは法人ではなく、これは商品ではないため、恐れ入りますが有料サポー"
784
- "トを提供することはできません。"
785
-
786
- #: view/admin/support.php:15
787
- msgid ""
788
- "If you are using this plugin in a commercial setup, or feel that it's been "
789
- "particularly useful, then you may want to consider a <strong>commercial "
790
- "donation</strong>."
791
- msgstr ""
792
- "このプラグインを商用サイトにお使いの場合、または非常に役に立つプラグインだと"
793
- "思っていただける場合は、<strong>商用寄付</strong>をご検討ください。"
794
-
795
- #: view/admin/support.php:38
796
- msgid "Individual<br/>Donation"
797
- msgstr "個人の<br/>寄付"
798
-
799
- #: view/admin/support.php:58
800
- msgid "Commercial<br/>Donation"
801
- msgstr "商用<br/>寄付"
802
-
803
- #: view/admin/support.php:62
804
- msgid "Translations"
805
- msgstr "翻訳"
806
-
807
- #: view/admin/support.php:64
808
- msgid ""
809
- "If you're multi-lingual then you may want to consider donating a translation:"
810
- msgstr "多言語をご存知の場合、翻訳という形で寄付をしていただくこともできます。"
811
-
812
- #: view/admin/support.php:72
813
- msgid ""
814
- "Full details of producing a translation can be found in this <a href="
815
- "\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/"
816
- "\">guide to translating WordPress plugins</a>."
817
- msgstr ""
818
- "翻訳作成に関する詳細は<a href=\"http://urbangiraffe.com/articles/translating-"
819
- "wordpress-themes-and-plugins/\">翻訳プロセスのガイドライン</a>をご覧くださ"
820
- "い。"
821
-
822
- #~ msgid "module_%d.csv"
823
- #~ msgstr "module_%d.csv"
824
-
825
- #~ msgid "module_%d.xml"
826
- #~ msgstr "module_%d.xml"
827
-
828
- #~ msgid "%s imported on %s at %s"
829
- #~ msgstr "%s をインポートしました (%s @ %s)"
830
-
831
- #~ msgid "XML importing is only available with PHP5 - you have PHP4."
832
- #~ msgstr ""
833
- #~ "XML インポートは PHP5 上でのみ利用できます。現在 PHP4 をお使いです。"
834
-
835
- #~ msgid "404"
836
- #~ msgstr "404"
837
-
838
- #~ msgid "Previous"
839
- #~ msgstr "前"
840
-
841
- #~ msgid "Next"
842
- #~ msgstr "次"
843
-
844
- #~ msgid "%d per-page"
845
- #~ msgstr "%d件表示"
846
-
847
- #~ msgid "Displaying %s&#8211;%s of %s"
848
- #~ msgstr "%s&#8211;%s件中%s件を表示中"
849
 
850
- #~ msgid "<small>No options have been set</small>"
851
- #~ msgstr "<small>オプションが設定されていません</small>"
 
852
 
853
- #~ msgid "Please wait..."
854
- #~ msgstr "お待ちください…"
 
855
 
856
- #~ msgid "Are you sure?"
857
- #~ msgstr "本当によろしいですか ?"
 
858
 
859
- #~ msgid "No items have been selected"
860
- #~ msgstr "項目が選択されていません"
 
861
 
862
- #~ msgid "Your module was successfully created"
863
- #~ msgstr "モジュールの作成に成功しました。"
 
864
 
865
- #~ msgid "Your module was not created - did you provide a name?"
866
- #~ msgstr "モジュールを作成できませんでした。モジュール名を入力しましたか ?"
 
867
 
868
- #~ msgid "edit group"
869
- #~ msgstr "グループを編集"
 
870
 
871
- #~ msgid "Groups for module"
872
- #~ msgstr "モジュールのグループ"
 
873
 
874
- #~ msgid "Module"
875
- #~ msgstr "モジュール"
876
-
877
- #~ msgid "go"
878
- #~ msgstr "go"
879
-
880
- #~ msgid "Toggle"
881
- #~ msgstr "切り替え"
882
-
883
- #~ msgid "Move To"
884
- #~ msgstr "移動"
885
-
886
- #~ msgid "Go"
887
- #~ msgstr "Go"
888
-
889
- #~ msgid "re-order"
890
- #~ msgstr "並べ替え"
891
-
892
- #~ msgid "save order"
893
- #~ msgstr "並び順を保存"
894
-
895
- #~ msgid "You have no groups in this module."
896
- #~ msgstr "このモジュールにはグループがありません。"
897
-
898
- #~ msgid "%s by matching %s"
899
- #~ msgstr "%s: %s の一致"
900
-
901
- #~ msgid "Title"
902
- #~ msgstr "タイトル"
903
-
904
- #~ msgid "Redirections for group"
905
- #~ msgstr "グループ転送"
906
-
907
- #~ msgid "You have no redirections."
908
- #~ msgstr "転送ルールが設定されていません。"
909
-
910
- #~ msgid "Bulk Actions"
911
- #~ msgstr "一括操作"
912
-
913
- #~ msgid "Apply"
914
- #~ msgstr "適用"
915
-
916
- #~ msgid "There are no logs to display!"
917
- #~ msgstr "表示するログがありません !"
918
-
919
- #~ msgid "Process Current Logs"
920
- #~ msgstr "現在のログを処理"
921
-
922
- #~ msgid ""
923
- #~ "These actions will affect all currently available logs (i.e. your search "
924
- #~ "phrase will restrict the log items)."
925
- #~ msgstr ""
926
- #~ "以下の操作は現在利用できるログのすべてに対して行われます (例: 検索キーワー"
927
- #~ "ドによってログ項目を制限)"
928
-
929
- #~ msgid "Delete Logs"
930
- #~ msgstr "ログを削除"
931
-
932
- #~ msgid "Redirect to"
933
- #~ msgstr "転送先: "
934
-
935
- #~ msgid "Redirected by"
936
- #~ msgstr "転送: "
937
-
938
- #~ msgid "for"
939
- #~ msgstr ": "
940
-
941
- #~ msgid "View as"
942
- #~ msgstr "以下の形式で表示"
943
-
944
- #~ msgid "CSV"
945
- #~ msgstr "CSV"
946
-
947
- #~ msgid "XML"
948
- #~ msgstr "XML"
949
 
950
- #~ msgid "RSS"
951
- #~ msgstr "RSS"
 
952
 
953
- #~ msgid "edit"
954
- #~ msgstr "編集"
 
955
 
956
- #~ msgid "delete"
957
- #~ msgstr "削除"
 
958
 
959
- #~ msgid "reset"
960
- #~ msgstr "リセット"
 
961
 
962
- #~ msgid "Details"
963
- #~ msgstr "詳細"
 
964
 
965
- #~ msgid "Items"
966
- #~ msgstr "項目"
 
967
 
968
- #~ msgid "Operations"
969
- #~ msgstr "アクション"
 
970
 
971
- #~ msgid "Note: Hits are dependant on log entries"
972
- #~ msgstr "注: 表示数はログ件数を元にしています"
 
973
 
974
- #~ msgid "You have no modules defined yet"
975
- #~ msgstr "モジュールが定義されていません"
 
976
 
977
- #~ msgid "Add Module"
978
- #~ msgstr "モジュールを追加"
 
979
 
980
- #~ msgid ""
981
- #~ "A module is a controlling element that determines how redirections are "
982
- #~ "handled. Elements in a WordPress module are handled by WordPress, "
983
- #~ "elements in an Apache module are handled by <code>.htaccess</code>, and "
984
- #~ "elements in a 404 module affect how 404 errors are logged."
985
- #~ msgstr "モジュール"
986
 
987
- #~ msgid "Create"
988
- #~ msgstr "生成"
 
989
 
990
- #~ msgid "IP Lookup Service"
991
- #~ msgstr "IP 参照サービス"
 
 
992
 
993
- #~ msgid "Logging"
994
- #~ msgstr "ログ保存中"
 
995
 
996
- #~ msgid "log redirected requests"
997
- #~ msgstr "転送リクエストのログを保存する"
 
998
 
999
- #~ msgid "log 404 Not Found requests"
1000
- #~ msgstr "404 エラーリクエストのログを保存する"
 
1001
 
1002
- #~ msgid ""
1003
- #~ "Uncheck one or both of these to turn off logging and reduce database load "
1004
- #~ "if your redirected URLs are hit very frequently, and/or your site is very "
1005
- #~ "busy and pages are often not found."
1006
- #~ msgstr ""
1007
- #~ "以下のいずれか、または両方のチェックを外してログの保存を無効化することで、"
1008
- #~ "データベースの不可を軽減できます。これは、転送 URL が非常に頻繁にアクセス"
1009
- #~ "されている場合や、サイトのトラフィックが多く 404 ページがよく表示される場"
1010
- #~ "合に効果的です。"
1011
 
1012
- #~ msgid "Expire Logs"
1013
- #~ msgstr "ログの有効期限"
 
 
1014
 
1015
- #~ msgid "days (enter 0 for no expiry)"
1016
- #~ msgstr "日 (無期限にするには0を入力)"
 
1017
 
1018
- #~ msgid "URL Monitoring"
1019
- #~ msgstr "URL モニタリング"
 
 
1020
 
1021
- #~ msgid ""
1022
- #~ "You can have Redirection detect changes in URLs and have an automatic "
1023
- #~ "redirection created in a specific group."
1024
- #~ msgstr ""
1025
- #~ "リディレクションプラグインは変更された URL を発見し、指定したグループへ自"
1026
- #~ "動的に転送できます。"
1027
 
1028
- #~ msgid "Post &amp; Page URLs"
1029
- #~ msgstr "投稿・ページ URL"
 
1030
 
1031
- #~ msgid "Category URLs"
1032
- #~ msgstr "カテゴリー URL"
 
1033
 
1034
- #~ msgid "Note that the group is ignored when uploading an XML file."
1035
- #~ msgstr ""
1036
- #~ "XML ファイルをアップロードする際、グループは無視されますのでご注意くださ"
1037
- #~ "い。"
1038
 
1039
- #~ msgid ""
1040
- #~ "All translators will have a link to their website placed on the plugin "
1041
- #~ "homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/"
1042
- #~ "\">UrbanGiraffe</a>, in addition to being an individual supporter."
1043
- #~ msgstr ""
1044
- #~ "翻訳者の方は「個人サポーター」として扱われるのに加え、<a href=\"http://"
1045
- #~ "urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> サイトのプラグイ"
1046
- #~ "ンページでその方のサイトへのリンクを掲載します。"
1047
 
1048
- #~ msgid "http://urbangiraffe.com/plugins/redirection/"
1049
- #~ msgstr "http://urbangiraffe.com/plugins/redirection/"
 
 
 
 
1050
 
1051
- #~ msgid "Manage all your 301 redirects and monitor 404 errors"
1052
- #~ msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
 
1053
 
1054
- #~ msgid "John Godley"
1055
- #~ msgstr "John Godley"
 
1056
 
1057
- #~ msgid "http://urbangiraffe.com"
1058
- #~ msgstr "http://urbangiraffe.com"
 
1059
 
1060
- #~ msgid ""
1061
- #~ "<p style=\"color: red\">You are not allowed access to this resource</p>"
1062
- #~ msgstr ""
1063
- #~ "<p style=\"color: red\">このリソースにアクセスする権限がありません</p>"
1064
 
1065
- #~ msgid "<p style=\"color: red\">That function is not defined</p>"
1066
- #~ msgstr "<p style=\"color: red\">その関数は定義されていません</p>"
 
1067
 
1068
- #~ msgid "Failed to retrieve group data"
1069
- #~ msgstr "グループのデータ取得に失敗しました。"
 
1070
 
1071
- #~ msgid "Failed to retrieve module data"
1072
- #~ msgstr "モジュールのデータ取得に失敗しました。"
 
1073
 
1074
- #~ msgid "Redirection Help"
1075
- #~ msgstr "リディレクションプラグイン ヘルプ"
 
1076
 
1077
- #~ msgid "Redirection Documentation"
1078
- #~ msgstr "リディレクションプラグイン ドキュメンテーション"
 
1079
 
1080
- #~ msgid "Redirection Support Forum"
1081
- #~ msgstr "リディレクションプラグイン サポートフォーラム"
 
1082
 
1083
- #~ msgid "Redirection Bug Tracker"
1084
- #~ msgstr "リディレクションプラグイン バグトラッカー"
 
1085
 
1086
- #~ msgid "Redirection FAQ"
1087
- #~ msgstr "リディレクションプラグイン よくある質問"
 
1088
 
1089
- #~ msgid ""
1090
- #~ "Please read the documentation and FAQ, and check the bug tracker, before "
1091
- #~ "asking a question."
1092
- #~ msgstr ""
1093
- #~ "質問する前にドキュメンテーションと FAQ を読み、バグトラッカーを確認してく"
1094
- #~ "ださい。"
1095
 
1096
- #~ msgid " for external site: <code>%s</code>"
1097
- #~ msgstr "外部サイト向け: <code>%s</code>"
 
1098
 
1099
- #~ msgid "Strip index files (html,php,asp)"
1100
- #~ msgstr "index ファイルを除く (html,php,asp)"
1101
-
1102
- #~ msgid "Time Limit"
1103
- #~ msgstr "時間上限"
1104
-
1105
- #~ msgid "30 seconds"
1106
- #~ msgstr "30秒"
1107
 
1108
- #~ msgid "1 minute"
1109
- #~ msgstr "1分"
 
1110
 
1111
- #~ msgid "2 minutes"
1112
- #~ msgstr "2分"
 
1113
 
1114
- #~ msgid "5 minutes"
1115
- #~ msgstr "5分"
 
1116
 
1117
- #~ msgid "As long as possible"
1118
- #~ msgstr "最長"
 
1119
 
1120
- #~ msgid "time limit set as long as possible"
1121
- #~ msgstr "タイムリミットは最長に設定されています"
 
1122
 
1123
- #~ msgid "time limit at %ss"
1124
- #~ msgstr "タイムリミット %ss"
 
1125
 
1126
- #~ msgid ""
1127
- #~ "Redirection has required a great deal of time and effort to develop. If "
1128
- #~ "it's been useful to you then you can support this development by "
1129
- #~ "<strong>making a small donation of $12</strong>. This will act as an "
1130
- #~ "incentive for me to carry on developing it, providing countless hours of "
1131
- #~ "support, and including any enhancements that are suggested."
1132
- #~ msgstr ""
1133
- #~ "リディレクションプラグインの開発には長い時間がかかりました。もしあなたの役"
1134
- #~ "に立ったなら、<strong>$12 のささやかな寄付をして</strong>開発者を応援して"
1135
- #~ "ください。開発の継続、数えきれないほどの時間のサポート提供、提案された改善"
1136
- #~ "の追加を行うためのやる気につながります。"
1137
 
1138
- #~ msgid "Other plugins"
1139
- #~ msgstr "他のプラグイン"
 
 
1140
 
1141
- #~ msgid "You may also be interested in some of my other plugins:"
1142
- #~ msgstr "私の他のプラグインもご利用ください:"
 
1143
 
1144
- #~ msgid "HeadSpace"
1145
- #~ msgstr "HeadSpace"
 
 
1146
 
1147
- #~ msgid ""
1148
- #~ "The most complete SEO meta-data manager and all-round general purpose "
1149
- #~ "plugin for WordPress. Replace five or six plugins with one single super-"
1150
- #~ "plugin!"
1151
- #~ msgstr ""
1152
- #~ "最も完成された SEO メタデータ管理および一般用途向け WordPress プラグイン。"
1153
- #~ "この強力なプラグインひとつで5、6個の他のプラグインを置き換えることができま"
1154
- #~ "す !"
1155
 
1156
- #~ msgid "Search Unleashed"
1157
- #~ msgstr "Search Unleashed"
 
 
1158
 
1159
- #~ msgid ""
1160
- #~ "Attractive searches that go beyond the default WordPress search and "
1161
- #~ "increase the usefulness of your site."
1162
- #~ msgstr ""
1163
- #~ "デフォルトの WordPress 検索機能を超える魅力的な検索プラグイン。サイトを皿"
1164
- #~ "に使いやすくします。"
1165
 
1166
- #~ msgid "Sniplets"
1167
- #~ msgstr "Sniplets"
 
1168
 
1169
- #~ msgid ""
1170
- #~ "Very flexible and powerful text insertion that allows you to insert what "
1171
- #~ "you want, wherever you want it."
1172
- #~ msgstr ""
1173
- #~ "柔軟で強力なテキスト挿入プラグイン。好きなところに好きなテキストを挿入でき"
1174
- #~ "ます。"
1175
 
1176
- #~ msgid "How many widgets would you like?"
1177
- #~ msgstr "いくつウィジェットを追加しますか ?"
 
1178
 
1179
- #~ msgid "This notice will only be shown at periodic intervals."
1180
- #~ msgstr "このお知らせは定期的な間隔でのみ表示されます。"
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Japanese
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
 
 
 
 
 
 
 
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-02 05:10:08+0000\n"
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
 
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: ja_JP\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr "問題が発生しました"
 
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr "何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr "もう一度試しましたが動きませんでした"
 
 
 
 
 
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr "もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr "もしその問題が未知であれば、他のすべてのプラグインの無効化 (簡単に無効化出来、すぐに再度有効化することが可能です) を試してください。稀に他のプラグインはこのプラグインと衝突を起こします。これを知っておくと今後役に立つでしょう。"
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr "もしその問題が未知の問題の場合、Issue を作成するか、john@urbangiraffe.com へ情報を、何を実行したかの説明と下に表示されている詳細情報と共に送信してください。もしスクリーンショットの方が良ければそちらも送信してください。"
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr "実行したことの詳細情報"
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr "詳細情報をレポートに記入してください。"
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr "ログ (最大100)"
 
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr "読み込みに失敗しました"
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr "WWW を削除"
 
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr "WWW を追加"
 
 
 
 
 
 
 
 
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr "IP による検索"
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr "一括操作を選択"
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr "一括操作"
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr "適応"
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr "最初のページ"
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr "前のページ"
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr "現在のページ"
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr "%(page)s"
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr "次のページ"
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr "最後のページ"
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] "%s 個のアイテム"
 
 
 
 
 
 
 
 
106
 
107
+ #: redirection-strings.php:119
108
+ msgid "Select All"
109
+ msgstr "すべて選択"
110
 
111
+ #: redirection-strings.php:131
112
+ msgid "Sorry but something went wrong loading the data - please try again"
113
+ msgstr "データのロード中にエラーが発生しました - もう一度お試しください"
114
 
115
+ #: redirection-strings.php:130
116
+ msgid "No results"
117
+ msgstr "結果なし"
118
 
119
+ #: redirection-strings.php:26
120
+ msgid "Delete the logs - are you sure?"
121
+ msgstr "本当にログを消去しますか ?"
122
 
123
+ #: redirection-strings.php:25
124
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
125
+ msgstr "ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"
126
 
127
+ #: redirection-strings.php:24
128
+ msgid "Yes! Delete the logs"
129
+ msgstr "ログを消去する"
130
 
131
+ #: redirection-strings.php:23
132
+ msgid "No! Don't delete the logs"
133
+ msgstr "ログを消去しない"
134
 
135
+ #: redirection-admin.php:328
136
+ msgid "Redirection 404"
137
+ msgstr "404リダイレクト"
138
 
139
+ #: redirection-strings.php:116
140
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
141
+ msgstr "登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"
142
 
143
+ #: redirection-strings.php:115 redirection-strings.php:117
144
+ msgid "Newsletter"
145
+ msgstr "ニュースレター"
146
 
147
+ #: redirection-strings.php:114
148
+ msgid "Want to keep up to date with changes to Redirection?"
149
+ msgstr "リダイレクトの変更を最新の状態に保ちたいですか ?"
150
 
151
+ #: redirection-strings.php:113
152
+ 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."
153
+ msgstr "Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"
154
 
155
+ #: redirection-strings.php:112
156
+ msgid "Your email address:"
157
+ msgstr "メールアドレス: "
158
 
159
+ #: redirection-strings.php:111
160
+ msgid "I deleted a redirection, why is it still redirecting?"
161
+ msgstr "なぜリダイレクト設定を削除したのにまだリダイレクトが機能しているのですか ?"
162
 
163
+ #: redirection-strings.php:110
164
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
165
+ msgstr "ブラウザーはリダイレクト設定をキャッシュします。もしリダイレクト設定を削除後にもまだ機能しているのであれば、{{a}}ブラウザーのキャッシュをクリア{{/a}} してください。"
 
 
166
 
167
+ #: redirection-strings.php:109
168
+ msgid "Can I open a redirect in a new tab?"
169
+ msgstr "リダイレクトを新しいタブで開くことが出来ますか ?"
170
 
171
+ #: redirection-strings.php:108
172
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
173
+ msgstr "このサーバーではこれを実行することが出来ません。代わりに {{code}} target = \"_ blank\" {{/ code}} をリンクに追加する必要があります。"
174
 
175
+ #: redirection-strings.php:107
176
+ msgid "Something isn't working!"
177
+ msgstr "何かが動いていないようです"
178
 
179
+ #: redirection-strings.php:106
180
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
181
+ msgstr "他のすべてのプラグインを無効化して、問題が継続して発生するか確認してください。問題がある場合、{{a}}こちら{{/a}} で問題の詳細とその再現方法を報告してください。"
182
 
183
+ #: redirection-strings.php:105
184
+ msgid "Frequently Asked Questions"
185
+ msgstr "よくある質問"
 
186
 
187
+ #: redirection-strings.php:104
188
+ msgid "Need some help? Maybe one of these questions will provide an answer"
189
+ msgstr "ヘルプが必要ですか ? これらの質問が答えを提供するかもしれません"
190
 
191
+ #: redirection-strings.php:103
192
+ msgid "You've already supported this plugin - thank you!"
193
+ msgstr "あなたは既にこのプラグインをサポート済みです - ありがとうございます !"
194
 
195
+ #: redirection-strings.php:102
196
+ msgid "I'd like to donate some more"
197
+ msgstr "さらに寄付をしたいです"
198
 
199
+ #: redirection-strings.php:100
200
+ msgid "You get some useful software and I get to carry on making it better."
201
+ msgstr "あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"
202
 
203
+ #: redirection-strings.php:99
204
+ msgid "Please note I do not provide support and this is just a donation."
205
+ msgstr "これはただの寄付であり、開発者がサポートを提供することはありません。"
 
206
 
207
+ #: redirection-strings.php:98
208
+ msgid "Yes I'd like to donate"
209
+ msgstr "寄付をしたいです"
210
 
211
+ #: redirection-strings.php:97
212
+ msgid "Thank you for making a donation!"
213
+ msgstr "寄付をありがとうございます !"
214
 
215
+ #: redirection-strings.php:91
216
+ msgid "Forever"
217
+ msgstr "永久に"
218
 
219
+ #: redirection-strings.php:88
220
+ msgid "Failed to save data"
221
+ msgstr "データのセーブに失敗"
222
 
223
+ #: redirection-strings.php:75
224
+ msgid "Failed to load data"
225
+ msgstr "データのロードに失敗"
226
 
227
+ #: redirection-strings.php:71
228
+ msgid "CSV Format"
229
+ msgstr "CSV フォーマット"
 
 
230
 
231
+ #: redirection-strings.php:70
232
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
233
+ msgstr "ソース URL、ターゲット URL、 [正規表現 0 = いいえ、1 = はい]、[HTTP コード]"
 
 
 
 
234
 
235
+ #: redirection-strings.php:67
236
+ msgid "Delete the plugin - are you sure?"
237
+ msgstr "本当にプラグインを削除しますか ?"
238
 
239
+ #: redirection-strings.php:66
240
+ 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."
241
+ msgstr "プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"
242
 
243
+ #: redirection-strings.php:65
244
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
245
+ msgstr "リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"
246
 
247
+ #: redirection-strings.php:64
248
+ msgid "Yes! Delete the plugin"
249
+ msgstr "プラグインを消去する"
250
 
251
+ #: redirection-strings.php:63
252
+ msgid "No! Don't delete the plugin"
253
+ msgstr "プラグインを消去しない"
254
 
255
+ #: view/item-edit.php:35
256
+ msgid "Advanced Settings"
257
+ msgstr "高度な設定(通常は必要ありません)"
258
 
259
+ #. Author URI of the plugin/theme
260
+ msgid "http://urbangiraffe.com"
261
+ msgstr "http://urbangiraffe.com"
 
262
 
263
+ #. Author of the plugin/theme
264
+ msgid "John Godley"
265
+ msgstr "John Godley"
266
 
267
+ #. Description of the plugin/theme
268
+ msgid "Manage all your 301 redirects and monitor 404 errors"
269
+ msgstr "すべての 301 リダイレクトを管理し、404 エラーをモニター"
270
 
271
+ #. Plugin URI of the plugin/theme
272
+ msgid "http://urbangiraffe.com/plugins/redirection/"
273
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
 
274
 
275
+ #: redirection-strings.php:101
276
+ 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}}."
277
+ msgstr "Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"
 
278
 
279
+ #: view/support.php:3
280
+ msgid "Redirection Support"
281
+ msgstr "Redirection を応援する"
282
 
283
+ #: view/submenu.php:47
284
+ msgid "Support"
285
+ msgstr "作者を応援 "
286
 
287
+ #: view/submenu.php:34
288
+ msgid "404s"
289
+ msgstr "404 エラー"
290
 
291
+ #: view/submenu.php:32
292
+ msgid "404s from %s"
293
+ msgstr "%s からの 404"
294
 
295
+ #: view/submenu.php:23
296
+ msgid "Log"
297
+ msgstr "ログ"
298
 
299
+ #: redirection-strings.php:69
300
+ msgid "Delete Redirection"
301
+ msgstr "転送ルールを削除"
302
 
303
+ #: redirection-strings.php:72
304
+ msgid "Upload"
305
+ msgstr "アップロード"
306
 
307
+ #: redirection-strings.php:73
308
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
309
+ msgstr "ここで既存の {{code}}htaccess{{/code}} または CSV ファイルから転送ルールをインポートできます。"
310
 
311
+ #: redirection-strings.php:74
312
+ msgid "Import"
313
+ msgstr "インポート"
314
 
315
+ #: redirection-strings.php:76
316
+ msgid "Update"
317
+ msgstr "更新"
318
 
319
+ #: redirection-strings.php:77
320
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
321
+ msgstr "URL が指定されていない場合、自動生成 URL として使われます。特別なタグ {{code}}$dec${{/code}} または {{code}}$hex${{/code}} を使って、独自 ID (10進法または16進法) を挿入させられます。"
322
 
323
+ #: redirection-strings.php:78
324
+ msgid "Auto-generate URL"
325
+ msgstr "URL を自動生成 "
326
 
327
+ #: redirection-strings.php:79
328
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
329
+ msgstr "リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"
 
 
330
 
331
+ #: redirection-strings.php:80
332
+ msgid "RSS Token"
333
+ msgstr "RSS トークン"
 
 
 
 
334
 
335
+ #: redirection-strings.php:90
336
+ msgid "Don't monitor"
337
+ msgstr "モニターしない"
 
 
 
 
338
 
339
+ #: redirection-strings.php:81
340
+ msgid "Monitor changes to posts"
341
+ msgstr "投稿の変更をモニター"
342
 
343
+ #: redirection-strings.php:83
344
+ msgid "404 Logs"
345
+ msgstr "404 ログ"
346
 
347
+ #: redirection-strings.php:82 redirection-strings.php:84
348
+ msgid "(time to keep logs for)"
349
+ msgstr "(ログの保存期間)"
350
 
351
+ #: redirection-strings.php:85
352
+ msgid "Redirect Logs"
353
+ msgstr "転送ログ"
 
354
 
355
+ #: redirection-strings.php:86
356
+ msgid "I'm a nice person and I have helped support the author of this plugin"
357
+ msgstr "このプラグインの作者に対する援助を行いました"
358
 
359
+ #: redirection-strings.php:87
360
+ msgid "Plugin support"
361
+ msgstr "プラグインサポート"
362
 
363
+ #: view/options.php:4 view/submenu.php:42
364
+ msgid "Options"
365
+ msgstr "設定"
366
 
367
+ #: redirection-strings.php:92
368
+ msgid "Two months"
369
+ msgstr "2ヶ月"
370
 
371
+ #: redirection-strings.php:93
372
+ msgid "A month"
373
+ msgstr "1ヶ月"
 
 
 
 
374
 
375
+ #: redirection-strings.php:94
376
+ msgid "A week"
377
+ msgstr "1週間"
378
 
379
+ #: redirection-strings.php:95
380
+ msgid "A day"
381
+ msgstr "1日"
382
 
383
+ #: redirection-strings.php:96
384
+ msgid "No logs"
385
+ msgstr "ログなし"
386
 
387
+ #: view/module-list.php:3 view/submenu.php:16
388
+ msgid "Modules"
389
+ msgstr "モジュール"
390
 
391
+ #: redirection-strings.php:28
392
+ msgid "Export to CSV"
393
+ msgstr "CSV としてエクスポート"
394
 
395
+ #: redirection-strings.php:27
396
+ msgid "Delete All"
397
+ msgstr "すべてを削除"
398
 
399
+ #: redirection-admin.php:322
400
+ msgid "Redirection Log"
401
+ msgstr "転送ログ"
 
 
402
 
403
+ #: view/item-edit.php:14
404
+ msgid "optional"
405
+ msgstr "オプション"
406
 
407
+ #: view/item-edit.php:11
408
+ msgid "Description"
409
+ msgstr "説明"
410
 
411
+ #: redirection-strings.php:5
412
+ 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."
413
+ msgstr "グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"
414
 
415
+ #: redirection-strings.php:6
416
+ msgid "Add Group"
417
+ msgstr "グループを追加"
418
 
419
+ #: redirection-strings.php:132 view/item-list.php:10
420
+ msgid "Search"
421
+ msgstr "検索"
422
 
423
+ #: view/group-list.php:3 view/submenu.php:11
424
+ msgid "Groups"
425
+ msgstr "グループ"
 
 
 
426
 
427
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
428
+ msgid "Save"
429
+ msgstr "保存"
430
 
431
+ #: view/add.php:46
432
+ msgid "Add Redirection"
433
  msgstr "新しい転送ルールを追加"
434
 
435
+ #: view/add.php:36 view/item-edit.php:18
436
+ msgid "Group"
437
+ msgstr "グループ"
438
 
439
+ #: view/add.php:28
440
+ msgid "Regular expression"
441
+ msgstr "正規表現"
442
 
443
+ #: view/add.php:23
444
  msgid "Action"
445
  msgstr "操作"
446
 
447
+ #: view/add.php:17
448
+ msgid "Match"
449
+ msgstr "一致条件"
450
 
451
+ #: view/add.php:7
452
+ msgid "Your redirection has been added."
453
+ msgstr "新しい転送ルールを追加しました。"
454
 
455
+ #: view/add.php:4
456
+ msgid "Add new redirection"
457
  msgstr "新しい転送ルールを追加"
458
 
459
+ #: redirection-strings.php:14 redirection-strings.php:44
460
+ #: redirection-strings.php:54 view/item-edit.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  msgid "Cancel"
462
  msgstr "キャンセル"
463
 
464
+ #: redirection-strings.php:55
465
+ msgid "Download"
466
+ msgstr "ダウンロード"
 
 
 
 
 
467
 
468
+ #: redirection-admin.php:407
469
+ msgid "Sorry, but your redirection was not created"
470
+ msgstr "転送ルールを作成できませんでした。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
 
472
+ #: redirection-admin.php:344 redirection-admin.php:365
473
+ #: redirection-admin.php:387
474
+ msgid "Unable to perform action"
475
+ msgstr "操作を実行できません"
476
 
477
+ #: redirection-admin.php:311
478
+ msgid "No items were imported"
479
+ msgstr "項目をインポートできませんでした。"
480
 
481
+ #: redirection-admin.php:309
482
+ msgid "%d redirection was successfully imported"
483
+ msgid_plural "%d redirections were successfully imported"
484
+ msgstr[0] "%d件の転送をインポートしました。"
485
 
486
+ #: redirection-strings.php:89
487
+ msgid "Your options were updated"
488
+ msgstr "設定を更新しました。"
489
 
490
+ #. Plugin Name of the plugin/theme
491
+ msgid "Redirection"
492
+ msgstr "Redirection"
493
 
494
+ #: redirection-admin.php:165
495
+ msgid "Settings"
496
  msgstr "設定"
497
 
498
+ #: redirection-strings.php:62
499
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
500
+ msgstr "WordPress による転送。追加設定は必要ありません。また、リンクのクリックをトラックできます。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
501
 
502
+ #: redirection-strings.php:60
503
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
504
+ msgstr "Nginx サーバー用。WordPress が読み込まれず転送が行われます。リンクのクリックはトラックできません。これは試験的なモジュールです。"
505
 
506
+ #: redirection-strings.php:61
507
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
508
+ msgstr "Apache の {{code}}.htaccess{{/code}} ファイルを使用。追加設定が必要になります。WordPress が読み込まれず転送が行われます。リンクのクリックはトラックできません。"
509
 
510
+ #: redirection-strings.php:46
511
+ msgid "Automatically remove or add www to your site."
512
+ msgstr "自動的にサイト URL の www を除去または追加。"
513
 
514
+ #: redirection-strings.php:49
515
+ msgid "Default server"
516
+ msgstr "デフォルトサーバー"
517
 
518
+ #: redirection-strings.php:50
519
+ msgid "Canonical URL"
520
+ msgstr "カノニカル URL"
521
 
522
+ #: redirection-strings.php:51
523
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
524
+ msgstr "WordPress のインストール位置: {{code}}%s{{/code}}"
525
 
526
+ #: redirection-strings.php:52
527
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
528
+ msgstr "Redirection プラグインに自動的に {{code}.htaccess{{/code}} ファイルを更新させたい場合は、ファイル名とそのパスをここに入力してください。もしくはファイルをダウンロードして手動で更新することもできます。"
529
 
530
+ #: redirection-strings.php:53
531
+ msgid ".htaccess Location"
532
+ msgstr ".htaccess ファイルの場所"
533
 
534
+ #: models/redirect.php:382
535
+ msgid "Do nothing"
536
+ msgstr "何もしない"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
 
538
+ #: models/redirect.php:381
539
+ msgid "Error (404)"
540
+ msgstr "エラー (404)"
541
 
542
+ #: models/redirect.php:380
543
+ msgid "Pass-through"
544
+ msgstr "通過"
545
 
546
+ #: models/redirect.php:379
547
+ msgid "Redirect to random post"
548
+ msgstr "ランダムな記事へ転送"
549
 
550
+ #: models/redirect.php:378
551
+ msgid "Redirect to URL"
552
+ msgstr "URL へ転送"
553
 
554
+ #: models/redirect.php:216
555
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
556
+ msgstr "新規転送ルールを追加できません。設定ページから転送ルールを削除し、再インストールしてください。"
557
 
558
+ #: models/redirect.php:178
559
+ msgid "Invalid source URL when creating redirect for given match type"
560
+ msgstr "指定された一致タイプの転送ルールを作成する際に無効なソース URL が入力されました"
561
 
562
+ #: models/redirect.php:174
563
+ msgid "Invalid group when creating redirect"
564
+ msgstr "転送ルールを作成する際に無効なグループが指定されました"
565
 
566
+ #: models/redirect.php:166
567
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
568
+ msgstr "相対 URL (<code>%s</code>) で、このドメイン (<code>%s</code>) 上にある URL のみからの転送が可能です。"
569
 
570
+ #: models/redirect.php:160
571
+ msgid "Source and target URL must be different"
572
+ msgstr "ソースとターゲット URL は異なるものを指定してください"
573
 
574
+ #: redirection-strings.php:59
575
+ msgid "Configure"
576
+ msgstr "設定"
577
 
578
+ #: redirection-strings.php:34 redirection-strings.php:41
579
+ msgid "Show only this IP"
580
+ msgstr "この IP のみ表示"
 
 
 
581
 
582
+ #: redirection-strings.php:30 redirection-strings.php:37
583
+ msgid "IP"
584
+ msgstr "IP"
585
 
586
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
587
+ #: view/item-edit.php:4
588
+ msgid "Source URL"
589
+ msgstr "ソース URL"
590
 
591
+ #: redirection-strings.php:33 redirection-strings.php:40
592
+ msgid "Date"
593
+ msgstr "日付"
594
 
595
+ #: redirection-strings.php:42
596
+ msgid "Add Redirect"
597
+ msgstr "転送ルールを追加"
598
 
599
+ #: redirection-strings.php:7
600
+ msgid "All modules"
601
+ msgstr "すべてのモジュール"
602
 
603
+ #: redirection-strings.php:20
604
+ msgid "View Redirects"
605
+ msgstr "転送ルールを表示"
 
 
 
 
 
 
606
 
607
+ #: redirection-strings.php:11 redirection-strings.php:16
608
+ #: redirection-strings.php:58
609
+ msgid "Module"
610
+ msgstr "モジュール"
611
 
612
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
613
+ msgid "Redirects"
614
+ msgstr "転送ルール"
615
 
616
+ #: redirection-strings.php:4 redirection-strings.php:13
617
+ #: redirection-strings.php:17
618
+ msgid "Name"
619
+ msgstr "名称"
620
 
621
+ #: models/pager.php:164 redirection-strings.php:118
622
+ msgid "Filter"
623
+ msgstr "フィルター"
 
 
 
624
 
625
+ #: models/pager.php:151
626
+ msgid "No group filter"
627
+ msgstr "グループフィルターなし"
628
 
629
+ #: models/pager.php:104
630
+ msgid "Reset Hits"
631
+ msgstr "訪問数をリセット"
632
 
633
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
634
+ #: redirection-strings.php:18
635
+ msgid "Enable"
636
+ msgstr "有効化"
637
 
638
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
639
+ #: redirection-strings.php:19
640
+ msgid "Disable"
641
+ msgstr "無効化"
 
 
 
 
642
 
643
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
644
+ #: redirection-strings.php:21 redirection-strings.php:29
645
+ #: redirection-strings.php:35 redirection-strings.php:36
646
+ #: redirection-strings.php:43 redirection-strings.php:68
647
+ msgid "Delete"
648
+ msgstr "削除"
649
 
650
+ #: models/pager.php:53 redirection-strings.php:22
651
+ msgid "Edit"
652
+ msgstr "編集"
653
 
654
+ #: models/pager.php:31
655
+ msgid "Last Access"
656
+ msgstr "前回のアクセス"
657
 
658
+ #: models/pager.php:30
659
+ msgid "Hits"
660
+ msgstr "ヒット数"
661
 
662
+ #: models/pager.php:29
663
+ msgid "URL"
664
+ msgstr "URL"
 
665
 
666
+ #: models/pager.php:28
667
+ msgid "Type"
668
+ msgstr "タイプ"
669
 
670
+ #: models/database.php:121
671
+ msgid "Modified Posts"
672
+ msgstr "編集済みの投稿"
673
 
674
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
675
+ msgid "Redirections"
676
+ msgstr "転送ルール"
677
 
678
+ #: matches/user-agent.php:51
679
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
680
+ msgstr "もしユーザーエージェントが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。<strong>一致条件の判定はすべて正規表現で行われます</strong>。\n"
681
 
682
+ #: matches/user-agent.php:25
683
+ msgid "User Agent"
684
+ msgstr "ユーザーエージェント"
685
 
686
+ #: matches/user-agent.php:20
687
+ msgid "Nintendo Wii"
688
+ msgstr "Nintendo Wii"
689
 
690
+ #: matches/user-agent.php:19
691
+ msgid "Android"
692
+ msgstr "Android"
693
 
694
+ #: matches/user-agent.php:18
695
+ msgid "iPad"
696
+ msgstr "iPad"
697
 
698
+ #: matches/user-agent.php:17
699
+ msgid "iPhone"
700
+ msgstr "iPhone"
 
 
 
701
 
702
+ #: matches/user-agent.php:16
703
+ msgid "Safari"
704
+ msgstr "Safari"
705
 
706
+ #: matches/user-agent.php:15
707
+ msgid "Opera"
708
+ msgstr "Opera"
 
 
 
 
 
709
 
710
+ #: matches/user-agent.php:14
711
+ msgid "FireFox"
712
+ msgstr "FireFox"
713
 
714
+ #: matches/user-agent.php:13
715
+ msgid "Internet Explorer"
716
+ msgstr "Internet Explorer"
717
 
718
+ #: matches/user-agent.php:12
719
+ msgid "FeedBurner"
720
+ msgstr "FeedBurner"
721
 
722
+ #: matches/user-agent.php:7
723
+ msgid "URL and user agent"
724
+ msgstr "URL およびユーザーエージェント"
725
 
726
+ #: matches/url.php:12 view/add.php:32
727
+ msgid "Target URL"
728
+ msgstr "ターゲット URL"
729
 
730
+ #: matches/url.php:5
731
+ msgid "URL only"
732
+ msgstr "URL のみ"
733
 
734
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
735
+ #: matches/user-agent.php:70
736
+ msgid "Not matched"
737
+ msgstr "不一致の場合"
 
 
 
 
 
 
 
738
 
739
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
740
+ #: matches/user-agent.php:60
741
+ msgid "Matched"
742
+ msgstr "一致の場合"
743
 
744
+ #: matches/referrer.php:40
745
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
746
+ msgstr "もしリファラーが一致する場合、ソース URL から転送されます。<strong>一致の場合</strong>と<strong>不一致の場合</strong>に転送先にするターゲット URL をそれぞれ指定できます。URL を空のままにした場合、ユーザーは転送されません。"
747
 
748
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
749
+ #: matches/user-agent.php:38
750
+ msgid "HTTP Code"
751
+ msgstr "HTTP コード"
752
 
753
+ #: matches/referrer.php:24 view/item-edit.php:7
754
+ msgid "Regex"
755
+ msgstr "正規表現"
 
 
 
 
 
756
 
757
+ #: matches/referrer.php:21 redirection-strings.php:31
758
+ #: redirection-strings.php:38
759
+ msgid "Referrer"
760
+ msgstr "リファラー"
761
 
762
+ #: matches/referrer.php:8
763
+ msgid "URL and referrer"
764
+ msgstr "URL およびリファラー"
 
 
 
765
 
766
+ #: matches/login.php:35 matches/login.php:37
767
+ msgid "Logged Out"
768
+ msgstr "ログアウト中"
769
 
770
+ #: matches/login.php:23 matches/login.php:25
771
+ msgid "Logged In"
772
+ msgstr "ログイン中"
 
 
 
773
 
774
+ #: matches/login.php:16
775
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
776
+ msgstr "ユーザーがログインしているかどうかにより、ターゲット URL は以下のうちいずれかになります。URL を空白にした場合、そのユーザーは転送されません。"
777
 
778
+ #: matches/login.php:7
779
+ msgid "URL and login status"
780
+ msgstr "URL およびログイン状態"
locale/redirection-nl_NL.mo CHANGED
Binary file
locale/redirection-nl_NL.po CHANGED
@@ -1,934 +1,782 @@
1
- # Copyright (C) 2010 Redirection
2
- # This file is distributed under the same license as the Redirection package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Redirection 2.2.5\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
7
- "POT-Creation-Date: 2011-07-17 10:14:58+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-01-11 14:48+0100\n"
12
- "Last-Translator: Bart Kummel <bart@kummelweb.nl>\n"
13
- "Language-Team: Bart Kummel <bart@kummelweb.nl>\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-Language: Dutch\n"
16
- "X-Poedit-Country: NETHERLANDS\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
19
- "X-Poedit-Basepath: ~/Downloads/redirection\n"
20
-
21
- #: fileio/csv.php:21
22
- msgid "module_%d.csv"
23
- msgstr "module_%d.csv"
24
-
25
- #: fileio/xml.php:32
26
- msgid "module_%d.xml"
27
- msgstr "module_%d.xml"
28
-
29
- #: fileio/xml.php:105
30
- msgid "%s imported on %s at %s"
31
- msgstr "%s geïmporteerd op %s naar %s"
32
-
33
- #: fileio/xml.php:168
34
- msgid "XML importing is only available with PHP5 - you have PHP4."
35
- msgstr "XML-import is alleen beschikbaar in PHP5, maar jij hebt PHP4."
36
-
37
- #: view/admin/group_list.php:6
38
- msgid "Groups for module"
39
- msgstr "Groepen voor module"
40
-
41
- #: view/admin/group_list.php:16
42
- #: view/admin/log.php:38
43
- msgid "Module"
44
- msgstr "Module"
45
-
46
- #: view/admin/group_list.php:21
47
- #: view/admin/log.php:16
48
- #: view/admin/log.php:23
49
- #: view/admin/item_list.php:29
50
- msgid "Search"
51
- msgstr "Zoeken"
52
-
53
- #: view/admin/group_list.php:26
54
- msgid "go"
55
- msgstr "ga"
56
-
57
- #: view/admin/group_list.php:36
58
- #: view/admin/item_list.php:42
59
- #: view/admin/module_list.php:17
60
- msgid "Hits"
61
- msgstr "Hits"
62
-
63
- #: view/admin/group_list.php:37
64
- #: view/admin/group_list.php:100
65
- #: view/admin/module_edit.php:18
66
- #: view/admin/module_list.php:42
67
- #: view/admin/group_edit.php:6
68
- msgid "Name"
69
- msgstr "Naam"
70
-
71
- #: view/admin/group_list.php:59
72
- #: view/admin/item_list.php:67
73
- msgid "Select All"
74
- msgstr "Alles selecteren"
75
-
76
- #: view/admin/group_list.php:60
77
- #: view/admin/item_list.php:68
78
- msgid "Toggle"
79
- msgstr "Schakelen"
80
-
81
- #: view/admin/group_list.php:61
82
- #: view/admin/item_list.php:69
83
- msgid "Reset Hits"
84
- msgstr "Reset hits"
85
-
86
- #: view/admin/group_list.php:62
87
- #: view/admin/log.php:30
88
- #: view/admin/item_list.php:70
89
- #: view/admin/options.php:120
90
- msgid "Delete"
91
- msgstr "Verwijderen"
92
-
93
- #: view/admin/group_list.php:64
94
- #: view/admin/item_list.php:72
95
- msgid "Move To"
96
- msgstr "Verplaatsen naar"
97
-
98
- #: view/admin/group_list.php:69
99
- #: view/admin/item_list.php:34
100
- #: view/admin/item_list.php:77
101
- msgid "Go"
102
- msgstr "Ga"
103
-
104
- #: view/admin/group_list.php:75
105
- #: view/admin/item_list.php:83
106
- msgid "re-order"
107
- msgstr "Volgorde aanpassen"
108
-
109
- #: view/admin/group_list.php:76
110
- #: view/admin/item_list.php:84
111
- msgid "save order"
112
- msgstr "volgorde opslaan"
113
 
114
- #: view/admin/group_list.php:89
115
- msgid "You have no groups in this module."
116
- msgstr "Je hebt geen groepen in deze module."
117
-
118
- #: view/admin/group_list.php:94
119
- msgid "Add Group"
120
- msgstr "Groep toevoegen"
121
-
122
- #: view/admin/group_list.php:105
123
- msgid "Add"
124
- msgstr "Toevoegen"
125
-
126
- #: view/admin/group_list.php:117
127
- #: view/admin/log.php:112
128
- #: view/admin/item_list.php:112
129
- #: redirection.php:116
130
- msgid "No items have been selected"
131
- msgstr "Er zijn geen items geselecteerd."
132
-
133
- #: view/admin/group_list.php:118
134
- #: view/admin/log.php:113
135
- #: view/admin/item_list.php:113
136
- #: redirection.php:115
137
- msgid "Are you sure?"
138
- msgstr "Weet je het zeker?"
139
-
140
- #: view/admin/submenu.php:6
141
- msgid "Redirects"
142
- msgstr "Redirects"
143
-
144
- #: view/admin/submenu.php:11
145
- #: view/admin/module_list.php:15
146
- msgid "Groups"
147
- msgstr "Groepen"
148
 
149
- #: view/admin/submenu.php:16
150
- #: view/admin/module_list.php:6
151
- msgid "Modules"
152
- msgstr "Modules"
153
 
154
- #: view/admin/submenu.php:21
155
- msgid "Log"
156
- msgstr "Log"
157
 
158
- #: view/admin/submenu.php:26
159
- #: view/admin/options.php:6
160
- msgid "Options"
161
- msgstr "Instellingen"
162
 
163
- #: view/admin/submenu.php:31
164
- msgid "Support"
165
- msgstr "Ondersteuning"
166
 
167
- #: view/admin/module_item.php:23
168
- msgid "View as"
169
- msgstr "Bekijk als"
170
 
171
- #: view/admin/module_item.php:25
172
- msgid "CSV"
173
- msgstr "CSV"
174
 
175
- #: view/admin/module_item.php:26
176
- msgid "XML"
177
- msgstr "XML"
178
 
179
- #: view/admin/module_item.php:27
180
- #: models/module.php:160
181
- #: models/database.php:95
182
- msgid "Apache"
183
- msgstr "Apache"
184
 
185
- #: view/admin/module_item.php:28
186
- msgid "RSS"
187
- msgstr "RSS"
188
 
189
- #: view/admin/module_item.php:41
190
- msgid "edit"
191
- msgstr "bewerk"
192
 
193
- #: view/admin/module_item.php:43
194
- msgid "delete"
195
- msgstr "verwijder"
196
 
197
- #: view/admin/module_item.php:45
198
- msgid "reset"
199
- msgstr "reset"
200
 
201
- #: view/admin/log.php:6
202
- msgid "Redirection Log"
203
- msgstr "Redirection-log"
204
 
205
- #: view/admin/log.php:29
206
  msgid "Bulk Actions"
207
- msgstr "Bulkacties"
208
 
209
- #: view/admin/log.php:33
210
  msgid "Apply"
211
  msgstr "Toepassen"
212
 
213
- #: view/admin/log.php:43
214
- #: view/admin/item_list.php:24
215
- #: view/admin/add.php:36
216
- msgid "Group"
217
- msgstr "Groep"
218
 
219
- #: view/admin/log.php:49
220
- msgid "Filter"
221
- msgstr "Filter"
222
 
223
- #: view/admin/log.php:67
224
- msgid "Date"
225
- msgstr "Datum"
226
 
227
- #: view/admin/log.php:68
228
- #: view/admin/log_item_details.php:4
229
- #: view/admin/item_edit.php:15
230
- #: view/admin/add.php:12
231
- msgid "Source URL"
232
- msgstr "Bron-URL"
233
 
234
- #: view/admin/log.php:69
235
- #: matches/referrer.php:40
236
- msgid "Referrer"
237
- msgstr "Referrer"
238
-
239
- #: view/admin/log.php:70
240
- msgid "IP"
241
- msgstr "IP-adres"
242
 
243
- #: view/admin/log.php:85
244
- msgid "There are no logs to display!"
245
- msgstr "Er zijn geen logs om weer te geven!"
246
 
247
- #: view/admin/log.php:94
248
- msgid "Process Current Logs"
249
- msgstr "Huidige logs verwerken"
 
 
250
 
251
- #: view/admin/log.php:95
252
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
253
- msgstr "Deze acties zijn op alle momenteel beschikbare logs van toepassing. (Dus je zoektermen beperken de log-items.)"
254
 
255
- #: view/admin/log.php:100
256
- msgid "Delete Logs"
257
- msgstr "Verwijder logs"
258
 
259
- #: view/admin/item_list.php:7
260
- msgid "Redirections for group"
261
- msgstr "Redirects voor groep"
262
 
263
- #: view/admin/item_list.php:41
264
- msgid "Last Access"
265
- msgstr "Laatste hit"
266
 
267
- #: view/admin/item_list.php:43
268
- #: view/admin/module_list.php:46
269
- msgid "Type"
270
- msgstr "Type"
271
 
272
- #: view/admin/item_list.php:44
273
- msgid "URL"
274
- msgstr "URL"
275
 
276
- #: view/admin/item_list.php:44
277
- msgid "Position"
278
- msgstr "Positie"
279
 
280
- #: view/admin/item_list.php:88
281
- msgid "You have no redirections."
282
- msgstr "Je hebt geen redirects."
283
 
284
- #: view/admin/log_item_details.php:9
285
- msgid "Redirect to"
286
- msgstr "Redirect naar"
287
 
288
- #: view/admin/log_item_details.php:15
289
- msgid "Redirected by"
290
- msgstr "Ge-redirect door"
291
 
292
- #: view/admin/log_item_details.php:16
293
- msgid "for"
294
- msgstr "voor"
295
 
296
- #: view/admin/log_item_details.php:20
297
- #: matches/user_agent.php:43
298
- msgid "User Agent"
299
- msgstr "User agent"
300
 
301
- #: view/admin/item.php:27
302
- #: view/admin/group_item.php:23
303
- msgid "disabled"
304
- msgstr "uitgeschakeld"
305
 
306
- #: view/admin/item_edit.php:3
307
- msgid "%s by matching %s"
308
- msgstr "%s door te vergelijken met %s"
309
 
310
- #: view/admin/item_edit.php:7
311
- msgid "Title"
312
- msgstr "Titel"
313
 
314
- #: view/admin/item_edit.php:10
315
- msgid "optional"
316
- msgstr "optioneel"
317
 
318
- #: view/admin/item_edit.php:18
319
- #: matches/referrer.php:43
320
- msgid "Regex"
321
- msgstr "Regex"
322
 
323
- #: view/admin/item_edit.php:27
324
- #: view/admin/module_edit.php:27
325
- #: view/admin/group_edit.php:20
326
- msgid "Save"
327
- msgstr "Opslaan"
328
 
329
- #: view/admin/item_edit.php:28
330
- #: view/admin/module_edit.php:28
331
- #: view/admin/group_edit.php:21
332
- msgid "Cancel"
333
- msgstr "Annuleren"
334
 
335
- #: view/admin/add.php:3
336
- msgid "Add new redirection"
337
- msgstr "Nieuwe redirect toevoegen"
338
 
339
- #: view/admin/add.php:6
340
- msgid "Your redirection has been added."
341
- msgstr "Je redirect is toegevoegd."
342
 
343
- #: view/admin/add.php:16
344
- msgid "Match"
345
- msgstr "Vergelijk met"
346
 
347
- #: view/admin/add.php:22
348
- msgid "Action"
349
- msgstr "Actie"
350
 
351
- #: view/admin/add.php:27
352
- msgid "Regular expression"
353
- msgstr "Reguliere expressie"
354
 
355
- #: view/admin/add.php:31
356
- #: matches/url.php:32
357
- msgid "Target URL"
358
- msgstr "Doel-URL"
359
 
360
- #: view/admin/add.php:43
361
- msgid "Add Redirection"
362
- msgstr "Voeg redirect toe"
363
 
364
- #: view/admin/group_item.php:3
365
- msgid "edit group"
366
- msgstr "bewerk groep"
367
 
368
- #: view/admin/module_list.php:14
369
- msgid "Details"
370
- msgstr "Details"
371
 
372
- #: view/admin/module_list.php:16
373
- msgid "Items"
374
- msgstr "Items"
375
 
376
- #: view/admin/module_list.php:18
377
- msgid "Operations"
378
- msgstr "Acties"
379
 
380
- #: view/admin/module_list.php:27
381
- msgid "Note: Hits are dependant on log entries"
382
- msgstr "NB: hits zijn afhankelijk van log-regels."
383
 
384
- #: view/admin/module_list.php:29
385
- msgid "You have no modules defined yet"
386
- msgstr "Je hebt nog geen modules gedefinieerd."
387
 
388
- #: view/admin/module_list.php:34
389
- msgid "Add Module"
390
- msgstr "Voeg module toe"
391
 
392
- #: view/admin/module_list.php:35
393
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
394
- msgstr "Een module bepaalt hoe redirects worden afgehandeld. Elementen in een WordPress-module worden afgehandeld door WordPress, elementen in een Apache-module worden afgehandeld door een <code>.htaccess</code>-bestand en elementen in een 404-module bepalen hoe 404-errors worden gelogd."
395
 
396
- #: view/admin/module_list.php:55
397
- msgid "Create"
398
- msgstr "Maak aan"
399
 
400
- #: view/admin/support.php:5
401
- msgid "Redirection Support"
402
- msgstr "Ondersteun Redirection"
403
 
404
- #: view/admin/support.php:9
405
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
406
- msgstr "Je mag Redirection gratis gebruiken - het leven is vurrukuluk! Desalniettemin heeft het veel tijd en moeite gekost om Redirection te ontwikkelen. Als je Redirection handig vind, kan je de ontwikkeling ondersteunen door een <strong>kleine donatie</strong> te doen."
407
 
408
- #: view/admin/support.php:10
409
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
410
- msgstr "Dit zal me stimuleren om verder te gaan met de ontwikkeling, ontelbare uren ondersteuning te verlenen en nieuwe functies en ideeën te maken. Jij krijgt handige software en ik kan doorgaan die te maken. Een win-win-situatie!"
411
 
412
- #: view/admin/support.php:13
413
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
414
- msgstr "Als je de Redirection-plugin gebruikt in een commerciële omgeving, of als je gewoon supertevreden bent, kan je overwegen een <strong>commerciële donatie</strong> te doen."
415
 
416
- #: view/admin/support.php:36
417
- msgid "Individual<br/>Donation"
418
- msgstr "Individuele<br/>donatie"
419
 
420
- #: view/admin/support.php:56
421
- msgid "Commercial<br/>Donation"
422
- msgstr "Commerciële<br/>donatie"
423
 
424
- #: view/admin/support.php:60
425
- msgid "Translations"
426
- msgstr "Vertalingen"
427
 
428
- #: view/admin/support.php:62
429
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
430
- msgstr "Als je meertalig bent, kan je overwegen een vertaling te doneren:"
431
 
432
- #: view/admin/support.php:70
433
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
434
- msgstr "Alle vertalers krijgen een link naar hun website op de plugin-homepage: <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>. Daarnaast krijgen ze de status van individuele supporter."
435
 
436
- #: view/admin/support.php:71
437
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
438
- msgstr "Uitgebreide uitleg over het maken van een vertaling kan je vinden in de Engelstalige <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
439
 
440
- #: view/admin/options.php:15
441
- msgid "Auto-generate URL"
442
- msgstr "URL automatisch genereren"
443
 
444
- #: view/admin/options.php:19
445
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
446
- msgstr "Dit wordt gebruikt om automatisch een URL te genereren als er geen is opgegeven. Je kan de speciale tags $dec$ en $hex$ gebruiken om een unieke ID te laten invoegen, respectievelijk in decimale of hexadecimale notatie."
447
 
448
- #: view/admin/options.php:24
449
- msgid "IP Lookup Service"
450
- msgstr "IP-zoek-service"
451
 
452
- #: view/admin/options.php:30
453
- msgid "Plugin Support"
454
- msgstr "Ondersteuning van de plugin"
455
 
456
- #: view/admin/options.php:33
457
- msgid "I'm a nice person and I have helped support the author of this plugin"
458
- msgstr "Ik ben een aardig persoon en ik heb de auteur van deze plugin geholpen met ondersteuning."
459
 
460
- #: view/admin/options.php:37
461
- msgid "Logging"
462
- msgstr "Logging"
463
 
464
- #: view/admin/options.php:40
465
- msgid "log redirected requests"
466
- msgstr "Houd ge-redirecte requests bij in een log."
467
 
468
- #: view/admin/options.php:42
469
- msgid "log 404 Not Found requests"
470
- msgstr "Houd 404-fouten bij in een log."
471
 
472
- #: view/admin/options.php:43
473
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
474
- msgstr "Zet een of beide vinkjes uit om logging uit te schakelen. Daardoor kan je de belasting van de database verminderen, wat handig kan zijn als je veel redirects hebt of als je site heel drukbezocht is."
475
 
476
- #: view/admin/options.php:47
477
- msgid "Expire Logs"
478
- msgstr "Verwijder logs na"
479
 
480
- #: view/admin/options.php:50
481
- msgid "days (enter 0 for no expiry)"
482
- msgstr "dagen (vul 0 in als je wil dat de logs nooit verwijderd worden)"
483
 
484
- #: view/admin/options.php:54
485
  msgid "RSS Token"
486
  msgstr "RSS-token"
487
 
488
- #: view/admin/options.php:57
489
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
490
- msgstr "Een unieke token dat feed-readers toegang geeft tot Redirection RSS. (Wordt automatisch gegenereerd als je het veld leeglaat.)"
491
-
492
- #: view/admin/options.php:62
493
- msgid "URL Monitoring"
494
- msgstr "URL-controle"
495
-
496
- #: view/admin/options.php:63
497
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
498
- msgstr "Je kan de Redirection-plugin URL-wijzigingen laten detecteren en automatisch redirects laten aanmaken in een specifieke groep."
499
-
500
- #: view/admin/options.php:67
501
- msgid "Post &amp; Page URLs"
502
- msgstr "Berichten- &amp; pagina-URL's"
503
-
504
- #: view/admin/options.php:70
505
- #: view/admin/options.php:82
506
  msgid "Don't monitor"
507
  msgstr "Niet controleren"
508
 
509
- #: view/admin/options.php:74
510
- msgid "Monitor new posts"
511
- msgstr "Controleer op nieuwe berichten"
512
 
513
- #: view/admin/options.php:79
514
- msgid "Category URLs"
515
- msgstr "Categorie-URL's"
516
 
517
- #: view/admin/options.php:89
518
- msgid "Update"
519
- msgstr "Bijwerken"
520
 
521
- #: view/admin/options.php:95
522
- msgid "Import"
523
- msgstr "Importeren"
524
 
525
- #: view/admin/options.php:97
526
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
527
- msgstr "Hier kan je redirects importeren uit een bestaand .htaccess-bestand, een CSV-bestand of een Redirection XML-bestand."
528
 
529
- #: view/admin/options.php:104
530
- msgid "Import into"
531
- msgstr "Importeer naar"
532
 
533
- #: view/admin/options.php:107
534
- msgid "Upload"
535
- msgstr "Uploaden"
536
 
537
- #: view/admin/options.php:110
538
- msgid "Note that the group is ignored when uploading an XML file."
539
- msgstr "Merk op dat de groep wordt genegeerd als je een XML-bestand upload."
540
 
541
- #: view/admin/options.php:114
542
- msgid "Delete Redirection"
543
- msgstr "Verwijder Redirection"
544
 
545
- #: view/admin/options.php:115
546
- 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."
547
- msgstr "Deze actie zal alle redirects, alle logs en alle instellingen van de Redirection-plugin verwijderen. Bezint eer ge begint!"
548
 
549
- #: view/admin/group_edit.php:10
550
- msgid "Tracked"
551
- msgstr "Tellen"
552
 
553
- #: view/admin/group_edit.php:11
554
- msgid "Whether to track 'hits' to items"
555
- msgstr "Tel het aantal 'hits' per item"
556
 
557
- #: view/admin/group_edit.php:14
558
- msgid "Enabled"
559
- msgstr "Ingeschakeld"
560
 
561
- #: view/admin/group_edit.php:15
562
- msgid "Disabling a group will disable all items contained within it"
563
- msgstr "Als je de groep uitschakelt, worden ook alle items in de groep uitgeschakeld."
564
 
565
- #: modules/404.php:37
566
- msgid "Log 404s"
567
- msgstr "Log 404-fouten"
568
 
569
- #: modules/404.php:46
570
- #: modules/wordpress.php:121
571
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
572
- msgstr "<strong>Uitgeschakeld: je moet <a href=\"options-permalink.php\">permalinks</a> aanzetten voordat je dit kunt gebruiken.</strong>"
573
 
574
- #: modules/404.php:57
575
- msgid "<small>No options have been set</small>"
576
- msgstr "<small>Er zijn geen instellingen gemaakt.</small>"
577
 
578
- #: modules/apache.php:77
579
- msgid "Location"
580
- msgstr "Locatie"
581
 
582
- #: modules/apache.php:82
583
- msgid "WordPress is installed in: <code>%s</code>"
584
- msgstr "WordPress is geïnstalleerd in: <code>%s</code>"
585
 
586
- #: modules/apache.php:87
587
- msgid "Canonical"
588
- msgstr "Kanoniek"
589
 
590
- #: modules/apache.php:90
591
- #: modules/apache.php:96
592
- msgid "Leave as is"
593
- msgstr "Laten zoals het is"
594
 
595
- #: modules/apache.php:90
596
- msgid "Strip WWW (%s)"
597
- msgstr "WWW verwijderen (%s)"
598
 
599
- #: modules/apache.php:90
600
- msgid "Force WWW (www.%s)"
601
- msgstr "WWW forceren (www.%s)"
602
 
603
- #: modules/apache.php:94
604
- msgid "Strip Index"
605
- msgstr "Index verwijderen"
606
 
607
- #: modules/apache.php:96
608
- msgid "Strip index files (html,php)"
609
- msgstr "Index-bestanden verwijderen (html, php)"
610
 
611
- #: modules/apache.php:101
612
- msgid "Memory Limit"
613
- msgstr "Geheugenlimiet"
614
 
615
- #: modules/apache.php:104
616
- #: modules/apache.php:109
617
- msgid "Server default"
618
- msgstr "Standaard van de server"
619
 
620
- #: modules/apache.php:107
621
- msgid "Error Level"
622
- msgstr "Foutniveau"
623
 
624
- #: modules/apache.php:109
625
- msgid "No errors"
626
- msgstr "Geen fouten"
627
 
628
- #: modules/apache.php:109
629
- msgid "Show errors"
630
- msgstr "Toon fouten"
631
 
632
- #: modules/apache.php:114
633
- msgid "Ban IPs"
634
- msgstr "Blokkeer IP's"
 
635
 
636
- #: modules/apache.php:120
637
- msgid "Allow IPs"
638
- msgstr "Sta IP's toe"
639
 
640
- #: modules/apache.php:126
641
- msgid "Raw .htaccess"
642
- msgstr "Ruwe .htaccess"
643
 
644
- #: modules/apache.php:132
645
- msgid "Site URL"
646
- msgstr "Site-URL"
 
647
 
648
- #: modules/apache.php:135
649
- msgid "Advanced: For management of external sites"
650
- msgstr "Geavanceerd: voor het beheren van externe sites"
651
 
652
- #: modules/apache.php:150
653
- msgid "<strong>Location is invalid - check that path exists</strong>"
654
- msgstr "<strong>Ongeldige locatie - controleer of het pad bestaat.</strong>"
 
 
655
 
656
- #: modules/apache.php:156
657
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
658
- msgstr "<strong>Geen schrijf-toegang tot het ingestelde <code>.htaccess</code>-bestand. Controleer de bestandsrechten.</strong>"
659
 
660
- #: modules/apache.php:163
661
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
662
- msgstr "<strong>Uitgeschakeld: vul de locatie van een <code>.htaccess</code>-bestand in om dit geldig te maken.</strong>"
663
 
664
- #: modules/apache.php:168
665
- msgid "strip WWW"
666
- msgstr "verwijder WWW"
667
 
668
- #: modules/apache.php:168
669
- msgid "force WWW"
670
- msgstr "forceer WWW"
671
 
672
- #: modules/apache.php:171
673
- msgid "strip index"
674
- msgstr "verwijder index"
675
 
676
- #: modules/apache.php:174
677
- msgid "memory limit at %dMB"
678
- msgstr "geheugenlimit op %dMB"
679
 
680
- #: modules/apache.php:177
681
- msgid "no errors"
682
- msgstr "geen fouten"
683
 
684
- #: modules/apache.php:177
685
- msgid "show errors"
686
- msgstr "toon fouten"
687
 
688
- #: modules/apache.php:180
689
- msgid "IPs are banned"
690
- msgstr "IP's zijn geblokkeerd"
691
 
692
- #: modules/apache.php:183
693
- msgid "IPs are allowed"
694
- msgstr "IP's zijn toegestaan"
695
 
696
- #: models/redirect.php:386
697
- msgid "Redirect to URL"
698
- msgstr "Redirect naar URL"
699
 
700
- #: models/redirect.php:387
701
- msgid "Redirect to random post"
702
- msgstr "Redirect naar willekeurig bericht"
703
 
704
- #: models/redirect.php:388
705
- msgid "Pass-through"
706
- msgstr "Doorlaten"
707
 
708
- #: models/redirect.php:389
709
  msgid "Error (404)"
710
  msgstr "Fout (404)"
711
 
712
- #: models/redirect.php:390
713
- msgid "Do nothing"
714
- msgstr "Doe niks"
715
 
716
- #: models/module.php:161
717
- #: models/database.php:94
718
- msgid "WordPress"
719
- msgstr "WordPress"
720
 
721
- #: models/module.php:162
722
- msgid "404 Errors"
723
- msgstr "404-fouten"
724
 
725
- #: models/module.php:187
726
- msgid "Strip WWW"
727
- msgstr "Verwijder WWW"
728
 
729
- #: models/module.php:187
730
- msgid "Force WWW"
731
- msgstr "Forceer WWW"
732
 
733
- #: models/module.php:192
734
- msgid "Strip index.php"
735
- msgstr "Verwijder index.php"
736
 
737
- #: models/database.php:96
738
- msgid "404"
739
- msgstr "404"
740
 
741
- #: models/database.php:101
742
- msgid "Redirections"
743
- msgstr "Redirects"
744
 
745
- #: models/database.php:102
746
- msgid "Modified Posts"
747
- msgstr "Gewijzigde berichten"
748
 
749
- #: models/pager.php:404
750
- msgid "Previous"
751
- msgstr "Vorige"
752
 
753
- #: models/pager.php:405
754
- msgid "Next"
755
- msgstr "Volgende"
756
 
757
- #: models/pager.php:463
758
- msgid "%d per-page"
759
- msgstr "%d per pagina"
 
760
 
761
- #: models/pager.php:472
762
- msgid "Displaying %s&#8211;%s of %s"
763
- msgstr "Toont %s&#8211;%s van %s"
764
 
765
- #: models/group.php:194
766
- msgid "Yes"
767
- msgstr "Ja"
768
 
769
- #: models/group.php:195
770
- msgid "No"
771
- msgstr "Nee"
772
 
773
- #: ajax.php:370
774
- msgid "Sorry, but your redirection was not created"
775
- msgstr "Excuses, er is geen redirect aangemaakt."
776
 
777
- #: redirection.php:94
778
- msgid "Settings"
779
- msgstr "Instellingen"
 
780
 
781
- #: redirection.php:112
782
- msgid "Please wait..."
783
- msgstr "Even wachten alsjeblieft..."
784
 
785
- #. #-#-#-#-# plugin.pot (Redirection 2.2.5) #-#-#-#-#
786
- #. Plugin Name of the plugin/theme
787
- #: redirection.php:121
788
- msgid "Redirection"
789
- msgstr "Redirection"
790
 
791
- #: redirection.php:159
792
- msgid "Your module was successfully created"
793
- msgstr "De module is aangemaakt."
794
 
795
- #: redirection.php:163
796
- msgid "Your module was not created - did you provide a name?"
797
- msgstr "De module is niet aangemaakt - heb je wel een naam ingevuld?"
798
 
799
- #: redirection.php:228
800
- msgid "Your options were updated"
801
- msgstr "De instellingen zijn gewijzigd."
802
 
803
- #: redirection.php:236
804
- msgid "Redirection data has been deleted and the plugin disabled"
805
- msgstr "Alle Redirection-data is verwijderd en de plugin is uigeschakeld."
 
806
 
807
- #: redirection.php:246
808
- msgid "%d redirection was successfully imported"
809
- msgid_plural "%d redirections were successfully imported"
810
- msgstr[0] "Er is %d redirect geïmporteerd."
811
- msgstr[1] "Er zijn %d redirects geïmporteerd."
812
 
813
- #: redirection.php:248
814
- msgid "No items were imported"
815
- msgstr "Er zijn geen items geïmporteerd."
 
 
 
816
 
817
- #: redirection.php:266
818
- msgid "Your logs have been deleted"
819
- msgstr "De logs zijn verwijderd."
820
 
821
- #: redirection.php:289
822
- msgid "Your group was added successfully"
823
- msgstr "De groep is toegevoegd."
824
 
825
- #: redirection.php:293
826
- msgid "Please specify a group name"
827
- msgstr "Geef de groep een naam."
828
 
829
- #: redirection.php:330
830
- msgid "Redirection is available in"
831
- msgstr "Redirection is beschikbaar in het"
832
 
833
- #: matches/url.php:25
834
- msgid "URL only"
835
- msgstr "Alleen URL"
836
 
837
- #: matches/url.php:40
838
- #: matches/user_agent.php:55
839
- #: matches/referrer.php:47
840
- msgid "HTTP Code"
841
- msgstr "HTTP-code"
842
 
843
- #: matches/login.php:25
844
- msgid "URL and login status"
845
- msgstr "URL en loginstatus"
846
 
847
- #: matches/login.php:33
848
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
849
- msgstr "De doel-URL wordt gekozen uit de volgende URL's, afhankelijk van of de gebruiker wel of niet is ingelogd. Als je een URL leeglaat, wordt de gebruiker niet ge-redirect."
850
 
851
- #: matches/login.php:39
852
- #: matches/login.php:41
853
- msgid "Logged In"
854
- msgstr "Ingelogd"
855
 
856
- #: matches/login.php:51
857
- #: matches/login.php:53
858
- msgid "Logged Out"
859
- msgstr "Uitgelogd"
860
 
861
- #: matches/user_agent.php:27
862
- msgid "URL and user agent"
863
- msgstr "URL en user agent"
864
 
865
- #: matches/user_agent.php:32
866
- msgid "FeedBurner"
867
- msgstr "FeedBurner"
868
 
869
- #: matches/user_agent.php:33
870
- msgid "Internet Explorer"
871
- msgstr "Internet Explorer"
872
 
873
- #: matches/user_agent.php:34
874
- msgid "FireFox"
875
- msgstr "Firefox"
876
 
877
- #: matches/user_agent.php:35
878
  msgid "Opera"
879
  msgstr "Opera"
880
 
881
- #: matches/user_agent.php:36
882
- msgid "Safari"
883
- msgstr "Safari"
884
 
885
- #: matches/user_agent.php:37
886
- msgid "iPhone"
887
- msgstr "iPhone"
888
 
889
- #: matches/user_agent.php:38
890
- msgid "Nintendo Wii"
891
- msgstr "Nintendo Wii"
892
 
893
- #: matches/user_agent.php:66
894
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
895
- msgstr "De bezoeker zal worden doorgestuurd vanaf de bron-URL als de user agent overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de user agent overeenkomt en een <em>niet overeenkomende</em> voor als de user agent anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. <strong>Alle overeenkomsten worden met reguliere expressies gecontroleerd</strong>.\n"
896
 
897
- #: matches/user_agent.php:73
898
- #: matches/user_agent.php:75
899
- #: matches/referrer.php:63
900
- #: matches/referrer.php:65
901
- msgid "Matched"
902
- msgstr "Overeenkomend"
903
 
904
- #: matches/user_agent.php:83
905
- #: matches/user_agent.php:85
906
- #: matches/referrer.php:73
907
- #: matches/referrer.php:75
 
 
908
  msgid "Not matched"
909
  msgstr "Niet overeenkomend"
910
 
911
- #: matches/referrer.php:28
912
- msgid "URL and referrer"
913
- msgstr "URL en referrer"
 
914
 
915
- #: matches/referrer.php:57
916
  msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
917
  msgstr "De bezoeker wordt doorgestuurd van de bron-URL als de referrer overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de referrer overeenkomt en een <em>niet overeenkomende</em> voor als de referrer anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. "
918
 
919
- #. Plugin URI of the plugin/theme
920
- msgid "http://urbangiraffe.com/plugins/redirection/"
921
- msgstr "http://urbangiraffe.com/plugins/redirection/"
 
922
 
923
- #. Description of the plugin/theme
924
- msgid "Manage all your 301 redirects and monitor 404 errors"
925
- msgstr "Beheer al je 301-redirects en hou 404-fouten in de gaten."
926
 
927
- #. Author of the plugin/theme
928
- msgid "John Godley"
929
- msgstr "John Godley"
 
930
 
931
- #. Author URI of the plugin/theme
932
- msgid "http://urbangiraffe.com"
933
- msgstr "http://urbangiraffe.com"
 
 
 
 
 
 
 
 
 
 
 
 
934
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Dutch
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-10 19:35:45+0000\n"
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: nl\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
 
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
 
 
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr "WWW verwijderen"
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr "WWW toevoegen"
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr "Zoek op IP"
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr "Bulk actie selecteren"
69
 
70
+ #: redirection-strings.php:128
71
  msgid "Bulk Actions"
72
+ msgstr "Bulk acties"
73
 
74
+ #: redirection-strings.php:127
75
  msgid "Apply"
76
  msgstr "Toepassen"
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr "Eerste pagina"
 
 
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr "Vorige pagina"
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr "Huidige pagina"
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr "van %(pagina)s"
 
 
 
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr "Volgende pagina"
 
 
 
 
 
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr "Laatste pagina"
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
 
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
 
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
 
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
 
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
 
 
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
 
 
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
 
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Geavanceerde instellingen"
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Beheer al je 301-redirects en hou 404-fouten in de gaten."
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr "Je mag Redirection gratis gebruiken - het leven is vurrukuluk! Desalniettemin heeft het veel tijd en moeite gekost om Redirection te ontwikkelen. Als je Redirection handig vind, kan je de ontwikkeling ondersteunen door een {{strong}}kleine donatie{{/strong}} te doen."
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Ondersteun Redirection"
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Ondersteuning"
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s vanaf %s"
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Log"
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Verwijder Redirection"
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Uploaden"
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr "Hier kan je redirects importeren vanuit een bestaand {{code}}.htacces{{/code}} bestand of een CSV-bestand."
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importeren"
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Bijwerken"
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "URL automatisch genereren"
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr ""
331
 
332
+ #: redirection-strings.php:80
333
  msgid "RSS Token"
334
  msgstr "RSS-token"
335
 
336
+ #: redirection-strings.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  msgid "Don't monitor"
338
  msgstr "Niet controleren"
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Veranderingen aan berichten monitoren"
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "404 logboeken"
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(tijd om logboeken voor te bewaren)"
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Redirect logboeken"
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Ik ben een aardig persoon en ik heb de auteur van deze plugin geholpen met ondersteuning."
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Ondersteuning van de plugin"
363
 
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Instellingen"
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Twee maanden"
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Een maand"
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Een week"
379
 
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Een dag"
383
 
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Geen logs"
387
 
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Modules"
391
 
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "Exporteer naar CSV"
395
 
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Verwijder alles"
399
 
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Redirection-log"
 
403
 
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "optioneel"
407
 
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Beschrijving"
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ msgstr ""
415
 
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Groep toevoegen"
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Zoeken"
 
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Groepen"
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Opslaan"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Voeg redirect toe"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Groep"
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Reguliere expressie"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Actie"
 
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Vergelijk met"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Je redirect is toegevoegd."
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Nieuwe redirect toevoegen"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Annuleren"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Download"
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Excuses, er is geen redirect aangemaakt."
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Onmogelijk om actie uit te voeren"
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Er zijn geen items geïmporteerd."
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "Er is %d redirect geïmporteerd."
486
+ msgstr[1] "Er zijn %d redirects geïmporteerd."
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "De instellingen zijn gewijzigd."
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Instellingen"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr ""
503
 
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr ""
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
 
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Automatisch www toevoegen aan of verwijderen van je website."
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Standaard server"
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "Canonical URL"
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress is geïnstalleerd in: {{code}}%s{{/code}}"
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
 
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess Locatie"
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Niets doen"
539
 
540
+ #: models/redirect.php:381
541
  msgid "Error (404)"
542
  msgstr "Fout (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Doorlaten"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redirect naar willekeurig bericht"
 
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redirect naar URL"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr ""
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr ""
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr ""
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr ""
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Bron en doel-URL moeten verschillend zijn"
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configureer"
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Toon alleen dit IP"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP-adres"
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "Bron-URL"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Datum"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Redirect toevoegen"
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Alle modules"
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Redirects bekijken"
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Module"
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redirects"
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Naam"
 
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filter"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr "Geen groepfilter"
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Reset hits"
634
 
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Inschakelen"
639
 
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Schakel uit"
 
644
 
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Verwijderen"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Bewerk"
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Laatste hit"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hits"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Type"
671
 
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Gewijzigde berichten"
 
 
675
 
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Redirects"
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "De bezoeker zal worden doorgestuurd vanaf de bron-URL als de user agent overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de user agent overeenkomt en een <em>niet overeenkomende</em> voor als de user agent anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. <strong>Alle overeenkomsten worden met reguliere expressies gecontroleerd</strong>.\n"
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "User agent"
 
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
 
691
 
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
 
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
 
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
 
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
 
708
+ #: matches/user-agent.php:15
709
  msgid "Opera"
710
  msgstr "Opera"
711
 
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "Firefox"
715
 
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
 
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
 
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL en user agent"
727
 
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Doel-URL"
 
 
 
731
 
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Alleen URL"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
  msgid "Not matched"
739
  msgstr "Niet overeenkomend"
740
 
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Overeenkomend"
745
 
746
+ #: matches/referrer.php:40
747
  msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
  msgstr "De bezoeker wordt doorgestuurd van de bron-URL als de referrer overeenkomt. Je kan een <em>overeenkomende</em> URL opgeven als doel-URL voor als de referrer overeenkomt en een <em>niet overeenkomende</em> voor als de referrer anders is. Als je een URL leeg laat, wordt de gebruiker niet ge-redirect. "
749
 
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP-code"
754
 
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
 
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referrer"
763
 
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL en referrer"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Uitgelogd"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Ingelogd"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "De doel-URL wordt gekozen uit de volgende URL's, afhankelijk van of de gebruiker wel of niet is ingelogd. Als je een URL leeglaat, wordt de gebruiker niet ge-redirect."
779
 
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL en loginstatus"
locale/redirection-pt_PT.mo ADDED
Binary file
locale/redirection-pt_PT.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Portuguese (Portugal)
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-04-04 07:53:47+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: pt\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
111
+
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
115
+
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
+
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
+
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
+
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
131
+
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
135
+
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
+
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
+
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
+
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
151
+
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
+
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
159
+
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
163
+
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
+
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
+
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
+
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
+
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
+
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
+
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
+
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
+
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
+
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
+
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
+
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
+
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
215
+
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
219
+
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
223
+
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
+
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
+
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
+
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
+
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
+
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
+
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
+
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
255
+
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Configurações avançadas"
259
+
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
+
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
+
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Faça a gestão dos redireccionamentos 301 e monitorize erros 404"
271
+
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
+
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
+
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Suporte do Redirection"
283
+
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Suporte"
287
+
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404s"
291
+
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr "404s de %s"
295
+
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Registo"
299
+
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Eliminar redireccionamento"
303
+
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Carregar"
307
+
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
+
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Importar"
315
+
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Actualizar"
319
+
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
+
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "Gerar URL automaticamente"
327
+
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr "Um token único que permite os leitores de feed acederem ao registo de redireccionamento RSS (deixar em branco para gerar automaticamente)"
331
+
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Token RSS"
335
+
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "Não monitorizar"
339
+
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr "Monitorizar alterações nos conteúdos"
343
+
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr "Registos de 404"
347
+
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr "(tempo a manter os registos)"
351
+
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr "Registos de redireccionamentos"
355
+
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Eu sou boa pessoa e ajudei o autor deste plugin"
359
+
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr ""
363
+
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Opções"
367
+
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "Dois meses"
371
+
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Um mês"
375
+
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Uma semana"
379
+
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Um dia"
383
+
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr "Sem registos"
387
+
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Módulos"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr ""
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Eliminar tudo"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Registo de redireccionamento"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "opcional"
407
+
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Descrição"
411
+
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ msgstr ""
415
+
416
+ #: redirection-strings.php:6
417
+ msgid "Add Group"
418
+ msgstr "Adicionar grupo"
419
+
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Pesquisar"
423
+
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Grupos"
427
+
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Guardar"
431
+
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Adicionar redireccionamento"
435
+
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Grupo"
439
+
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Expressão regular"
443
+
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "Acção"
447
+
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr ""
451
+
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "O seu redireccionamento foi adicionado."
455
+
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Adicionar novo redireccionamento"
459
+
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "Cancelar"
464
+
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "Descarregar"
468
+
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Desculpe, o seu redireccionamento não foi criado"
472
+
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr "Não foi possível executar a acção"
477
+
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Nenhum item importado"
481
+
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] "%d redireccionamento importado com sucesso"
486
+ msgstr[1] "%d redireccionamentos importados com sucesso"
487
+
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "As suas opções foram actualizadas"
491
+
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redireccionamento"
495
+
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Definições"
499
+
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr ""
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr "Para ser utilizado com servidor Nginx. Necessita de configuração manual. O redireccionamento ocorre sem carregar o WordPress. Os acessos não são monitorizados. Isto é um módulo experimental."
507
+
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Adicionar ou remover automaticamente www do seu site."
515
+
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Servidor por omissão"
519
+
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr "URL canónico"
523
+
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr ""
527
+
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr "Localização do .htaccess"
535
+
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Não fazer nada"
539
+
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Erro (404)"
543
+
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr ""
547
+
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Redireccionar para um conteúdo"
551
+
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "Redireccionar para o URL"
555
+
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr "Não foi possível adicionar um novo redireccionamento - elimine os redireccionamentos na página de opções e reinstale"
559
+
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr "URL de origem inválido ao criar o redirecionamento para o tipo de correspondência fornecido"
563
+
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr "Grupo inválido ao criar o redireccionamento"
567
+
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr "Apenas pode redireccionar a partir de um URL relativo (<code>%s</code>) neste domínio (<code>%s</code>)."
571
+
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "O URL de origem e o URL de destino têm de ser diferentes"
575
+
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr "Configurar"
579
+
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Mostrar apenas este IP"
583
+
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
587
+
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "URL de origem"
592
+
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Data"
596
+
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr ""
600
+
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr "Todos os módulos"
604
+
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Ver redireccionamentos"
608
+
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Módulo"
613
+
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Redireccionamentos"
617
+
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "Nome"
622
+
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtrar"
626
+
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr ""
630
+
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Limpar acessos"
634
+
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Activar"
639
+
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Desactivar"
644
+
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Apagar"
651
+
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Editar"
655
+
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Último acesso"
659
+
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Acessos"
663
+
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "Link"
667
+
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Tipo"
671
+
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Conteúdos alterados"
675
+
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Redireccionamentos"
679
+
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "\n"
683
+
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Agente do utilizador"
687
+
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
+
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
+
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
+
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
+
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
+
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
+
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "Firefox"
715
+
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
+
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
+
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL e agente do utilizador"
727
+
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "URL de destino"
731
+
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Apenas o URL"
735
+
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr ""
740
+
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr ""
745
+
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr ""
749
+
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "Código HTTP"
754
+
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "ExprReg"
758
+
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Referenciador"
763
+
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL e referenciador"
767
+
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Sem sessão iniciada"
771
+
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Com sessão iniciada"
775
+
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "O URL de destino será escolhido de um dos seguintes URL, dependendo se o utilizador iniciou ou não iniciou a sessão. Deixar um URL em branco significa que o utilizador não será redireccionado."
779
+
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL e estado da sessão"
locale/redirection-ro_RO.mo CHANGED
Binary file
locale/redirection-ro_RO.po CHANGED
@@ -1,1008 +1,784 @@
1
- # Copyright (C) 2012 Redirection
2
- # This file is distributed under the same license as the Redirection package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Redirection 2.2.13\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
7
- "POT-Creation-Date: 2012-05-07 13:59:00+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-01-07 15:52-0000\n"
12
- "Last-Translator: Inbox Translation <office@inboxtranslation.com>\n"
13
- "Language-Team: Inbox Translation <info@inboxtranslation.com>\n"
14
- "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
15
- "2:1));\n"
16
  "Language: ro\n"
17
- "X-Generator: Poedit 1.6.3\n"
18
 
19
- #: ajax.php:370
20
- msgid "Sorry, but your redirection was not created"
21
- msgstr "Îmi pare rău, redirecționarea nu s-a creat"
22
-
23
- #: fileio/csv.php:21
24
- msgid "module_%d.csv"
25
- msgstr "module_%d.csv"
26
-
27
- #: fileio/xml.php:32
28
- msgid "module_%d.xml"
29
- msgstr "module_%d.xml"
30
-
31
- #: fileio/xml.php:105
32
- msgid "%s imported on %s at %s"
33
- msgstr "%s importat la data de %s ora %s"
34
-
35
- #: fileio/xml.php:168
36
- msgid "XML importing is only available with PHP5 - you have PHP4."
37
  msgstr ""
38
- "Importarea de fișiere XML este disponibilă numai cu PHP5 - dumneavoastră "
39
- "aveți PHP4."
40
-
41
- #: matches/login.php:25
42
- msgid "URL and login status"
43
- msgstr "Stare URL și logare "
44
 
45
- #: matches/login.php:33
46
- msgid ""
47
- "The target URL will be chosen from one of the following URLs, depending if "
48
- "the user is logged in or out. Leaving a URL blank means that the user is "
49
- "not redirected."
50
  msgstr ""
51
- "URL-ul țintă va fi ales unul dintre următoarele URL-uri, în funcție dacă "
52
- "utilizatorul este conectat sau nu. A lăsa necompletat un URL înseamnă că "
53
- "utilizatorul nu este redirecționat."
54
-
55
- #: matches/login.php:39 matches/login.php:41
56
- msgid "Logged In"
57
- msgstr "Conectat"
58
-
59
- #: matches/login.php:51 matches/login.php:53
60
- msgid "Logged Out"
61
- msgstr "Neconectat"
62
 
63
- #: matches/referrer.php:28
64
- msgid "URL and referrer"
65
- msgstr "URL și referent"
66
-
67
- #: matches/referrer.php:40 view/admin/log.php:69
68
- msgid "Referrer"
69
- msgstr "Referent"
70
-
71
- #: matches/referrer.php:43 view/admin/item_edit.php:18
72
- msgid "Regex"
73
- msgstr "Expresii regulate"
74
-
75
- #: matches/referrer.php:47 matches/url.php:40 matches/user_agent.php:57
76
- msgid "HTTP Code"
77
- msgstr "Cod HTTP"
78
 
79
- #: matches/referrer.php:57
80
- msgid ""
81
- "The visitor will be redirected from the source URL if the referrer matches. "
82
- "You can specify a <em>matched</em> target URL as the address to send "
83
- "visitors if they do match, and <em>not matched</em> if they don't match. "
84
- "Leaving a URL blank means that the visitor is not redirected."
85
- msgstr ""
86
- "Vizitatorul va fi redirecționat de la URL-ul sursă dacă referentul "
87
- "corespunde. Puteți specifica un URL țintă ce <em>corespunde</em> ca adresă "
88
- "unde să fie trimiși vizitatorii în cazul în care corespund și unul ce <em>nu "
89
- "corespunde</em> dacă nu corespund. A lăsa necompletat un URL înseamnă că "
90
- "vizitatorul nu este redirecționat."
91
-
92
- #: matches/referrer.php:63 matches/referrer.php:65 matches/user_agent.php:75
93
- #: matches/user_agent.php:77
94
- msgid "Matched"
95
- msgstr "Corespunde"
96
 
97
- #: matches/referrer.php:73 matches/referrer.php:75 matches/user_agent.php:85
98
- #: matches/user_agent.php:87
99
- msgid "Not matched"
100
- msgstr "Nu corespunde"
101
 
102
- #: matches/url.php:25
103
- msgid "URL only"
104
- msgstr "Doar URL"
105
 
106
- #: matches/url.php:32 view/admin/add.php:31
107
- msgid "Target URL"
108
- msgstr "URL țintă"
109
 
110
- #: matches/user_agent.php:27
111
- msgid "URL and user agent"
112
- msgstr "URL și agent utilizator"
113
 
114
- #: matches/user_agent.php:32
115
- msgid "FeedBurner"
116
- msgstr "FeedBurner"
117
 
118
- #: matches/user_agent.php:33
119
- msgid "Internet Explorer"
120
- msgstr "Internet Explorer"
121
 
122
- #: matches/user_agent.php:34
123
- msgid "FireFox"
124
- msgstr "FireFox"
125
 
126
- #: matches/user_agent.php:35
127
- msgid "Opera"
128
- msgstr "Opera"
129
 
130
- #: matches/user_agent.php:36
131
- msgid "Safari"
132
- msgstr "Safari"
133
 
134
- #: matches/user_agent.php:37
135
- msgid "iPhone"
136
- msgstr "iPhone"
137
 
138
- #: matches/user_agent.php:38
139
- msgid "iPad"
140
- msgstr "iPad"
141
 
142
- #: matches/user_agent.php:39
143
- msgid "Android"
144
- msgstr "Android"
145
 
146
- #: matches/user_agent.php:40
147
- msgid "Nintendo Wii"
148
- msgstr "Nintendo Wii"
149
 
150
- #: matches/user_agent.php:45 view/admin/log_item_details.php:20
151
- msgid "User Agent"
152
- msgstr "Agent utilizator"
153
 
154
- #: matches/user_agent.php:68
155
- msgid ""
156
- "The visitor will be redirected from the source URL if the user agent "
157
- "matches. You can specify a <em>matched</em> target URL as the address to "
158
- "send visitors if they do match, and <em>not matched</em> if they don't "
159
- "match. Leaving a URL blank means that the visitor is not redirected. "
160
- "<strong>All matches are performed as regular expressions</strong>.\n"
161
- msgstr ""
162
- "Vizitatorul va fi redirecționat de la URL-ul sursă dacă agentul utilizator "
163
- "corespunde. Puteți specifica un URL țintă ce <em>corespunde</em> ca adresă "
164
- "unde să fie trimiși vizitatorii dacă aceștia corespund și unul <em>nu "
165
- "corespunde</em> dacă nu corespund. A lăsa necompletat un URL înseamnă că "
166
- "vizitatorul nu este redirecționat. <strong>Toate corespondențele sunt "
167
- "generate ca expresii regulate</strong>.\n"
168
-
169
- #: models/database.php:94 models/module.php:161
170
- msgid "WordPress"
171
- msgstr "WordPress"
172
-
173
- #: models/database.php:95 models/module.php:160 view/admin/module_item.php:27
174
- msgid "Apache"
175
- msgstr "Apache"
176
-
177
- #: models/database.php:96
178
- msgid "404"
179
- msgstr "404"
180
-
181
- #: models/database.php:101
182
- msgid "Redirections"
183
- msgstr "Redirecționări"
184
 
185
- #: models/database.php:102
186
- msgid "Modified Posts"
187
- msgstr "Articole modificate"
188
 
189
- #: models/group.php:194
190
- msgid "Yes"
191
- msgstr "Da"
192
 
193
- #: models/group.php:195
194
- msgid "No"
195
- msgstr "Nu"
196
 
197
- #: models/module.php:162
198
- msgid "404 Errors"
199
- msgstr "Erori 404"
 
 
 
200
 
201
- #: models/module.php:187
202
- msgid "Strip WWW"
203
- msgstr "Renunțare la WWW"
204
 
205
- #: models/module.php:187
206
- msgid "Force WWW"
207
- msgstr "Forțare WWW"
208
 
209
- #: models/module.php:192
210
- msgid "Strip index.php"
211
- msgstr "Renunțare la index.php"
212
 
213
- #: models/pager.php:389
214
- msgid "Previous"
215
- msgstr "Anterior"
216
 
217
- #: models/pager.php:390
218
- msgid "Next"
219
- msgstr "Următor"
220
 
221
- #: models/pager.php:448
222
- msgid "%d per-page"
223
- msgstr "%d pe pagină"
224
 
225
- #: models/pager.php:457
226
- msgid "Displaying %s&#8211;%s of %s"
227
- msgstr "Afișare %s&#8211;%s din %s"
228
 
229
- #: models/redirect.php:386
230
- msgid "Redirect to URL"
231
- msgstr "Redirecționare către URL"
232
 
233
- #: models/redirect.php:387
234
- msgid "Redirect to random post"
235
- msgstr "Redirecționare către articol aleatoriu"
236
 
237
- #: models/redirect.php:388
238
- msgid "Pass-through"
239
- msgstr "Interogări la distanță"
240
 
241
- #: models/redirect.php:389
242
- msgid "Error (404)"
243
- msgstr "Eroare (404)"
244
 
245
- #: models/redirect.php:390
246
- msgid "Do nothing"
247
- msgstr "Nu face nimic"
248
 
249
- #: modules/404.php:37
250
- msgid "Log 404s"
251
- msgstr "Înregistrați erori 404"
252
 
253
- #: modules/404.php:46 modules/wordpress.php:121
254
- msgid ""
255
- "<strong>Disabled: You must enable <a href=\"options-permalink.php"
256
- "\">permalinks</a> before using this</strong>"
257
  msgstr ""
258
- "<strong>Dezactivat: Trebuie să activați <a href=\"options-permalink.php"
259
- "\">permalinks</a> înainte de a putea utiliza</strong>"
260
 
261
- #: modules/404.php:57
262
- msgid "<small>No options have been set</small>"
263
- msgstr "<small>Nicio opțiune nu a fost setată</small>"
264
 
265
- #: modules/apache.php:77
266
- msgid "Location"
267
- msgstr "Locație"
268
 
269
- #: modules/apache.php:82
270
- msgid "WordPress is installed in: <code>%s</code>"
271
- msgstr "WordPress este instalat în: <code>%s</code>"
272
 
273
- #: modules/apache.php:87
274
- msgid "Canonical"
275
- msgstr "Canonic"
276
 
277
- #: modules/apache.php:90 modules/apache.php:96
278
- msgid "Leave as is"
279
- msgstr "Lăsați neschimbat"
280
 
281
- #: modules/apache.php:90
282
- msgid "Strip WWW (%s)"
283
- msgstr "Renunțare la WWW (%s)"
284
 
285
- #: modules/apache.php:90
286
- msgid "Force WWW (www.%s)"
287
- msgstr "Forțare WWW (www.%s)"
288
 
289
- #: modules/apache.php:94
290
- msgid "Strip Index"
291
- msgstr "Renunțare la Index"
292
 
293
- #: modules/apache.php:96
294
- msgid "Strip index files (html,php)"
295
- msgstr "Renunțare la fișierele index (html,php)"
296
 
297
- #: modules/apache.php:101
298
- msgid "Memory Limit"
299
- msgstr "Limită de memorie"
300
 
301
- #: modules/apache.php:104 modules/apache.php:109
302
- msgid "Server default"
303
- msgstr "Prestabilire server"
304
 
305
- #: modules/apache.php:107
306
- msgid "Error Level"
307
- msgstr "Nivel eroare"
308
 
309
- #: modules/apache.php:109
310
- msgid "No errors"
311
- msgstr "Fără erori"
312
 
313
- #: modules/apache.php:109
314
- msgid "Show errors"
315
- msgstr "Afișare erori"
316
 
317
- #: modules/apache.php:114
318
- msgid "Ban IPs"
319
- msgstr "Interzicere IP-uri"
320
 
321
- #: modules/apache.php:120
322
- msgid "Allow IPs"
323
- msgstr "Permitere IP-uri"
324
 
325
- #: modules/apache.php:126
326
- msgid "Raw .htaccess"
327
- msgstr ".htaccess brut"
328
 
329
- #: modules/apache.php:132
330
- msgid "Site URL"
331
- msgstr "URL-ul site-ului"
332
 
333
- #: modules/apache.php:135
334
- msgid "Advanced: For management of external sites"
335
- msgstr "Avansat: Pentru administrarea site-urilor externe"
336
 
337
- #: modules/apache.php:150
338
- msgid "<strong>Location is invalid - check that path exists</strong>"
339
- msgstr "<strong>Locație invalidă - verificați dacă există calea</strong>"
340
 
341
- #: modules/apache.php:156
342
- msgid ""
343
- "<strong>Could not write to configured <code>.htaccess</code> file - check "
344
- "file permissions</strong>"
345
  msgstr ""
346
- "<strong>Nu a fost permisă editarea fișierului configurat <code>.htaccess</"
347
- "code>-verificați permisiunile fișierului</strong>"
348
 
349
- #: modules/apache.php:163
350
- msgid ""
351
- "<strong>Disabled: enter the location of an <code>.htaccess</code> file for "
352
- "this to be valid</strong>"
353
  msgstr ""
354
- "<strong>Dezactivat: introduceți locația unui fișier <code>.htaccess</code> "
355
- "pentru ca acesta să fie valid</strong>"
356
 
357
- #: modules/apache.php:168
358
- msgid "strip WWW"
359
- msgstr "renunțare la WWW"
360
 
361
- #: modules/apache.php:168
362
- msgid "force WWW"
363
- msgstr "forțare WWW"
364
 
365
- #: modules/apache.php:171
366
- msgid "strip index"
367
- msgstr "renunțare la index"
368
 
369
- #: modules/apache.php:174
370
- msgid "memory limit at %dMB"
371
- msgstr "limită memorie la %dMB"
372
 
373
- #: modules/apache.php:177
374
- msgid "no errors"
375
- msgstr "fără erori"
376
 
377
- #: modules/apache.php:177
378
- msgid "show errors"
379
- msgstr "afișare erori"
380
 
381
- #: modules/apache.php:180
382
- msgid "IPs are banned"
383
- msgstr "IP-urile sunt interzise"
384
 
385
- #: modules/apache.php:183
386
- msgid "IPs are allowed"
387
- msgstr "IP-urile sunt permise"
388
 
389
- #: redirection.php:94
390
- msgid "Settings"
391
- msgstr "Setări"
392
 
393
- #: redirection.php:112
394
- msgid "Please wait..."
395
- msgstr " rugăm așteptați..."
396
 
397
- #: redirection.php:115 view/admin/group_list.php:118
398
- #: view/admin/item_list.php:113 view/admin/log.php:113
399
- msgid "Are you sure?"
400
- msgstr "Sunteți sigur?"
401
 
402
- #: redirection.php:116 view/admin/group_list.php:117
403
- #: view/admin/item_list.php:112 view/admin/log.php:112
404
- msgid "No items have been selected"
405
- msgstr "Niciun obiect nu a fost selectat"
406
 
407
- #. Plugin Name of the plugin/theme
408
- #: redirection.php:121
409
- msgid "Redirection"
410
- msgstr "Redirection"
411
 
412
- #: redirection.php:159
413
- msgid "Your module was successfully created"
414
- msgstr "Modulul dumneavoastră a fost creat cu succes"
415
 
416
- #: redirection.php:163
417
- msgid "Your module was not created - did you provide a name?"
418
- msgstr "Modulul dumneavoastră nu a fost creat - ați furnizat un nume?"
419
 
420
- #: redirection.php:228
421
- msgid "Your options were updated"
422
- msgstr "Opțiunile dumneavoastră au fost actualizate"
423
 
424
- #: redirection.php:236
425
- msgid "Redirection data has been deleted and the plugin disabled"
426
- msgstr "Datele din Redirection au fost șterse și plugin-ul dezactivat"
427
 
428
- #: redirection.php:246
429
- msgid "%d redirection was successfully imported"
430
- msgid_plural "%d redirections were successfully imported"
431
- msgstr[0] "%d redirecționare a fost importată cu succes"
432
- msgstr[1] "%d redirecționări au fost importate cu succes"
433
- msgstr[2] "%d redirecționări au fost importate cu succes"
434
 
435
- #: redirection.php:248
436
- msgid "No items were imported"
437
- msgstr "Niciun obiect nu a fost importat"
438
 
439
- #: redirection.php:266
440
- msgid "Your logs have been deleted"
441
- msgstr "Înregistrările dumneavoastră au fost șterse"
442
 
443
- #: redirection.php:289
444
- msgid "Your group was added successfully"
445
- msgstr "Grupul dumneavoastră a fost adăugat cu succes"
446
 
447
- #: redirection.php:293
448
- msgid "Please specify a group name"
449
- msgstr " rugăm precizați un nume pentru grup"
450
 
451
- #: redirection.php:330
452
- msgid "Redirection is available in"
453
- msgstr "Redirection este disponibil în"
454
 
455
- #: view/admin/add.php:3
456
- msgid "Add new redirection"
457
- msgstr "Adăugare redirecționare nouă"
458
 
459
- #: view/admin/add.php:6
460
- msgid "Your redirection has been added."
461
- msgstr "Redirecționarea dumneavoastră a fost adăugată."
462
 
463
- #: view/admin/add.php:12 view/admin/item_edit.php:15 view/admin/log.php:68
464
- #: view/admin/log_item_details.php:4
465
- msgid "Source URL"
466
- msgstr "Origine URL"
467
 
468
- #: view/admin/add.php:16
469
- msgid "Match"
470
- msgstr "Corespondență"
471
 
472
- #: view/admin/add.php:22
473
- msgid "Action"
474
- msgstr "Acțiune"
475
 
476
- #: view/admin/add.php:27
477
- msgid "Regular expression"
478
- msgstr "Expresii regulate"
479
 
480
- #: view/admin/add.php:36 view/admin/item_list.php:24 view/admin/log.php:43
481
- msgid "Group"
482
- msgstr "Grup"
483
 
484
- #: view/admin/add.php:43
485
- msgid "Add Redirection"
486
- msgstr "Adăugare redirecționare"
487
 
488
- #: view/admin/group_edit.php:6 view/admin/group_list.php:37
489
- #: view/admin/group_list.php:100 view/admin/module_edit.php:18
490
- #: view/admin/module_list.php:42
491
- msgid "Name"
492
- msgstr "Nume"
493
 
494
- #: view/admin/group_edit.php:10
495
- msgid "Tracked"
496
- msgstr "Urmărit"
497
 
498
- #: view/admin/group_edit.php:11
499
- msgid "Whether to track 'hits' to items"
500
- msgstr "Dacă să se urmărească accesările către obiecte"
501
 
502
- #: view/admin/group_edit.php:14
503
- msgid "Enabled"
504
- msgstr "Activat"
505
 
506
- #: view/admin/group_edit.php:15
507
- msgid "Disabling a group will disable all items contained within it"
508
- msgstr ""
509
- "Dezactivarea unui grup va dezactiva toate obiectele conținute de acesta"
510
 
511
- #: view/admin/group_edit.php:20 view/admin/item_edit.php:27
512
- #: view/admin/module_edit.php:27
513
- msgid "Save"
514
- msgstr "Salvare"
515
 
516
- #: view/admin/group_edit.php:21 view/admin/item_edit.php:28
517
- #: view/admin/module_edit.php:28
518
- msgid "Cancel"
519
- msgstr "Anulare"
520
 
521
- #: view/admin/group_item.php:3
522
- msgid "edit group"
523
- msgstr "editare grup"
524
 
525
- #: view/admin/group_item.php:23 view/admin/item.php:27
526
- msgid "disabled"
527
- msgstr "dezactivat"
528
 
529
- #: view/admin/group_list.php:6
530
- msgid "Groups for module"
531
- msgstr "Grupuri pentru modul"
532
 
533
- #: view/admin/group_list.php:16 view/admin/log.php:38
534
- msgid "Module"
535
- msgstr "Modul"
536
 
537
- #: view/admin/group_list.php:21 view/admin/item_list.php:29
538
- #: view/admin/log.php:16 view/admin/log.php:23
539
  msgid "Search"
540
- msgstr "Căutare"
541
 
542
- #: view/admin/group_list.php:26
543
- msgid "go"
544
- msgstr "începere"
545
-
546
- #: view/admin/group_list.php:36 view/admin/item_list.php:42
547
- #: view/admin/module_list.php:17
548
- msgid "Hits"
549
- msgstr "Accesări"
550
-
551
- #: view/admin/group_list.php:59 view/admin/item_list.php:67
552
- msgid "Select All"
553
- msgstr "Selectează tot"
554
-
555
- #: view/admin/group_list.php:60 view/admin/item_list.php:68
556
- msgid "Toggle"
557
- msgstr "Permutare"
558
-
559
- #: view/admin/group_list.php:61 view/admin/item_list.php:69
560
- msgid "Reset Hits"
561
- msgstr "Resetare accesări"
562
-
563
- #: view/admin/group_list.php:62 view/admin/item_list.php:70
564
- #: view/admin/log.php:30 view/admin/options.php:120
565
- msgid "Delete"
566
- msgstr "Ștergere"
567
-
568
- #: view/admin/group_list.php:64 view/admin/item_list.php:72
569
- msgid "Move To"
570
- msgstr "Mutare la"
571
-
572
- #: view/admin/group_list.php:69 view/admin/item_list.php:34
573
- #: view/admin/item_list.php:77
574
- msgid "Go"
575
- msgstr "Începere"
576
-
577
- #: view/admin/group_list.php:75 view/admin/item_list.php:83
578
- msgid "re-order"
579
- msgstr "re-aranjare"
580
-
581
- #: view/admin/group_list.php:76 view/admin/item_list.php:84
582
- msgid "save order"
583
- msgstr "salvare ordine"
584
-
585
- #: view/admin/group_list.php:89
586
- msgid "You have no groups in this module."
587
- msgstr "Nu aveți niciun grup în acest modul."
588
-
589
- #: view/admin/group_list.php:94
590
- msgid "Add Group"
591
- msgstr "Adăugare grup"
592
-
593
- #: view/admin/group_list.php:105
594
- msgid "Add"
595
- msgstr "Adăugare"
596
 
597
- #: view/admin/item_edit.php:3
598
- msgid "%s by matching %s"
599
- msgstr "%s corespunzând %s"
600
 
601
- #: view/admin/item_edit.php:7
602
- msgid "Title"
603
- msgstr "Titlu"
604
 
605
- #: view/admin/item_edit.php:10
606
- msgid "optional"
607
- msgstr "opțional"
608
 
609
- #: view/admin/item_list.php:7
610
- msgid "Redirections for group"
611
- msgstr "Redirecționări pentru grup"
612
 
613
- #: view/admin/item_list.php:41
614
- msgid "Last Access"
615
- msgstr "Ultima accesare"
616
 
617
- #: view/admin/item_list.php:43 view/admin/module_list.php:46
618
- msgid "Type"
619
- msgstr "Tip"
620
 
621
- #: view/admin/item_list.php:44
622
- msgid "URL"
623
- msgstr "URL"
624
 
625
- #: view/admin/item_list.php:44
626
- msgid "Position"
627
- msgstr "Poziție"
628
 
629
- #: view/admin/item_list.php:88
630
- msgid "You have no redirections."
631
- msgstr "Nu aveți redirecționări."
 
632
 
633
- #: view/admin/log.php:6
634
- msgid "Redirection Log"
635
- msgstr "Registru redirecționări"
636
 
637
- #: view/admin/log.php:29
638
- msgid "Bulk Actions"
639
- msgstr "Acțiuni în masă"
640
 
641
- #: view/admin/log.php:33
642
- msgid "Apply"
643
- msgstr "Aplicare"
 
644
 
645
- #: view/admin/log.php:49
646
- msgid "Filter"
647
- msgstr "Filtrare"
648
 
649
- #: view/admin/log.php:67
650
- msgid "Date"
651
- msgstr "Dată"
 
 
 
652
 
653
- #: view/admin/log.php:70
654
- msgid "IP"
655
- msgstr "IP"
656
 
657
- #: view/admin/log.php:85
658
- msgid "There are no logs to display!"
659
- msgstr "Nu există înregistrări de afișat!"
660
 
661
- #: view/admin/log.php:94
662
- msgid "Process Current Logs"
663
- msgstr "Procesare registre curente"
664
 
665
- #: view/admin/log.php:95
666
- msgid ""
667
- "These actions will affect all currently available logs (i.e. your search "
668
- "phrase will restrict the log items)."
669
- msgstr ""
670
- "Aceste acțiuni vor afecta toate registrele disponibile la acest moment (mai "
671
- "exact, expresia căutată va restricționa intrările din registru). "
672
 
673
- #: view/admin/log.php:100
674
- msgid "Delete Logs"
675
- msgstr "Ștergere registre"
676
 
677
- #: view/admin/log_item_details.php:9
678
- msgid "Redirect to"
679
- msgstr "Redirecționare către"
680
 
681
- #: view/admin/log_item_details.php:15
682
- msgid "Redirected by"
683
- msgstr "Redirecționat de"
684
 
685
- #: view/admin/log_item_details.php:16
686
- msgid "for"
687
- msgstr "pentru"
688
 
689
- #: view/admin/module_item.php:23
690
- msgid "View as"
691
- msgstr "Vizualizare ca"
692
 
693
- #: view/admin/module_item.php:25
694
- msgid "CSV"
695
- msgstr "CSV"
696
 
697
- #: view/admin/module_item.php:26
698
- msgid "XML"
699
- msgstr "XML"
700
 
701
- #: view/admin/module_item.php:28
702
- msgid "RSS"
703
- msgstr "RSS"
704
 
705
- #: view/admin/module_item.php:41
706
- msgid "edit"
707
- msgstr "editare"
708
 
709
- #: view/admin/module_item.php:43
710
- msgid "delete"
711
- msgstr "ștergere"
712
 
713
- #: view/admin/module_item.php:45
714
- msgid "reset"
715
- msgstr "resetare"
716
 
717
- #: view/admin/module_list.php:6 view/admin/submenu.php:16
718
- msgid "Modules"
719
- msgstr "Module"
720
 
721
- #: view/admin/module_list.php:14
722
- msgid "Details"
723
- msgstr "Detalii"
724
 
725
- #: view/admin/module_list.php:15 view/admin/submenu.php:11
726
- msgid "Groups"
727
- msgstr "Grupuri"
728
 
729
- #: view/admin/module_list.php:16
730
- msgid "Items"
731
- msgstr "Obiecte"
732
 
733
- #: view/admin/module_list.php:18
734
- msgid "Operations"
735
- msgstr "Operațiuni"
736
 
737
- #: view/admin/module_list.php:27
738
- msgid "Note: Hits are dependant on log entries"
739
- msgstr "Notă: Accesările depind de intrările din registru"
740
 
741
- #: view/admin/module_list.php:29
742
- msgid "You have no modules defined yet"
743
- msgstr "Nu aveți încă niciun modul definit"
744
 
745
- #: view/admin/module_list.php:34
746
- msgid "Add Module"
747
- msgstr "Adăugare modul"
748
 
749
- #: view/admin/module_list.php:35
750
- msgid ""
751
- "A module is a controlling element that determines how redirections are "
752
- "handled. Elements in a WordPress module are handled by WordPress, elements "
753
- "in an Apache module are handled by <code>.htaccess</code>, and elements in a "
754
- "404 module affect how 404 errors are logged."
755
- msgstr ""
756
- "Un modul este un element de control care determină modul în care se fac "
757
- "redirecționările. Elementele dintr-un modul WordPress sunt controlate de "
758
- "WordPress, elementele dintr-un modul Apache sunt controlate de <code>."
759
- "htaccess</code>, iar elementele dintr-un modul 404 afectează modul în care "
760
- "sunt înregistrate erorile 404."
761
-
762
- #: view/admin/module_list.php:55
763
- msgid "Create"
764
- msgstr "Creare"
765
-
766
- #: view/admin/options.php:6 view/admin/submenu.php:26
767
- msgid "Options"
768
- msgstr "Opțiuni"
769
 
770
- #: view/admin/options.php:15
771
- msgid "Auto-generate URL"
772
- msgstr "Generare automată URL"
773
 
774
- #: view/admin/options.php:19
775
- msgid ""
776
- "This will be used to auto-generate a URL if no URL is given. You can use "
777
- "the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal "
778
- "or hex)"
779
- msgstr ""
780
- "Acesta va fi folosit pentru a genera automat un URL dacă niciun URL nu este "
781
- "precizat. Puteți folosi tag-urile speciale $dec$ sau $hex$ pentru a insera "
782
- "un ID unic (fie zecimal sau hexazecimal)"
783
 
784
- #: view/admin/options.php:24
785
- msgid "IP Lookup Service"
786
- msgstr "Serviciu căutare IP"
787
 
788
- #: view/admin/options.php:30
789
- msgid "Plugin Support"
790
- msgstr "Suport plugin"
791
 
792
- #: view/admin/options.php:33
793
- msgid "I'm a nice person and I have helped support the author of this plugin"
794
- msgstr "Sunt o persoană de treabă și am ajutat autorului acestui plugin"
795
 
796
- #: view/admin/options.php:37
797
- msgid "Logging"
798
- msgstr "Înregistrare"
799
 
800
- #: view/admin/options.php:40
801
- msgid "log redirected requests"
802
- msgstr "înregistrare cereri redirecționate"
 
803
 
804
- #: view/admin/options.php:42
805
- msgid "log 404 Not Found requests"
806
- msgstr "înregistrare cereri 404 Nu există"
807
 
808
- #: view/admin/options.php:43
809
- msgid ""
810
- "Uncheck one or both of these to turn off logging and reduce database load if "
811
- "your redirected URLs are hit very frequently, and/or your site is very busy "
812
- "and pages are often not found."
813
- msgstr ""
814
- "Debifați una sau ambele opțiuni pentru a opri înregistrarea și pentru a "
815
- "reduce supraîncărcarea bazei de date dacă URL-urile redirecționate sunt "
816
- "accesate foarte frecvent și/sau dacă site-ul dvs. este greu accesibil și se "
817
- "întâmplă des ca paginile să nu fie găsite."
818
 
819
- #: view/admin/options.php:47
820
- msgid "Expire Logs"
821
- msgstr "Expirare registre"
822
 
823
- #: view/admin/options.php:50
824
- msgid "days (enter 0 for no expiry)"
825
- msgstr "zile (introduceți 0 dacă nu expiră)"
826
 
827
- #: view/admin/options.php:54
828
- msgid "RSS Token"
829
- msgstr "Jeton RSS"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
 
831
- #: view/admin/options.php:57
832
- msgid ""
833
- "A unique token allowing feed readers access to Redirection RSS (leave blank "
834
- "to auto-generate)"
835
- msgstr ""
836
- "Un jeton unic care permite accesul cititorilor la RSS Redirection (lăsați "
837
- "necompletat pentru generare automată)"
838
 
839
- #: view/admin/options.php:62
840
- msgid "URL Monitoring"
841
- msgstr "Monitorizare URL"
842
 
843
- #: view/admin/options.php:63
844
- msgid ""
845
- "You can have Redirection detect changes in URLs and have an automatic "
846
- "redirection created in a specific group."
847
- msgstr ""
848
- "Puteți alege ca Redirection să detecteze schimbările în URL-uri și să se "
849
- "creeze o redirecționare automată într-un anumit grup."
850
 
851
- #: view/admin/options.php:67
852
- msgid "Post &amp; Page URLs"
853
- msgstr "URL-uri pagini &amp; articole"
854
 
855
- #: view/admin/options.php:70 view/admin/options.php:82
856
- msgid "Don't monitor"
857
- msgstr "Nu se monitorizează"
858
 
859
- #: view/admin/options.php:74
860
- msgid "Monitor new posts"
861
- msgstr "Monitorizare articole noi"
862
 
863
- #: view/admin/options.php:79
864
- msgid "Category URLs"
865
- msgstr "Categorii URL-uri"
866
 
867
- #: view/admin/options.php:89
868
- msgid "Update"
869
- msgstr "Actualizare"
870
 
871
- #: view/admin/options.php:95
872
- msgid "Import"
873
- msgstr "Importare"
874
 
875
- #: view/admin/options.php:97
876
- msgid ""
877
- "Here you can import redirections from an existing .htaccess file, a CSV "
878
- "file, or a Redirection XML."
879
- msgstr ""
880
- "Aici puteți importa redirecționări dintr-un fișier .htaccess existent, dintr-"
881
- "un fișier CSV sau XML Redirection."
882
 
883
- #: view/admin/options.php:104
884
- msgid "Import into"
885
- msgstr "Importare în"
886
 
887
- #: view/admin/options.php:107
888
- msgid "Upload"
889
- msgstr "Încărcare"
890
 
891
- #: view/admin/options.php:110
892
- msgid "Note that the group is ignored when uploading an XML file."
893
- msgstr "Țineți seama că grupul este ignorat când se încarcă un fișier XML."
894
 
895
- #: view/admin/options.php:114
896
- msgid "Delete Redirection"
897
- msgstr "Ștergere Redirection"
898
 
899
- #: view/admin/options.php:115
900
- msgid ""
901
- "Selecting this option will delete all redirections, all logs, and any "
902
- "options associated with the Redirection plugin. Make sure this is what you "
903
- "want to do."
904
- msgstr ""
905
- "Selectarea acestei opțiuni va șterge toate redirecționările, toate "
906
- "registrele și toate opțiunile asociate cu plugin-ul Redirection. Asigurați-"
907
- "vă că asta vreți să faceți."
908
 
909
- #: view/admin/submenu.php:6
910
- msgid "Redirects"
911
- msgstr "Redirecționare"
912
 
913
- #: view/admin/submenu.php:21
914
- msgid "Log"
915
- msgstr "Registru"
916
 
917
- #: view/admin/submenu.php:31
918
- msgid "Support"
919
- msgstr "Suport tehnic"
920
 
921
- #: view/admin/support.php:5
922
- msgid "Redirection Support"
923
- msgstr "Suport tehnic Redirection"
924
 
925
- #: view/admin/support.php:9
926
- msgid ""
927
- "Redirection is free to use - life is wonderful and lovely! However, it has "
928
- "required a great deal of time and effort to develop and if it has been "
929
- "useful you can help support this development by <strong>making a small "
930
- "donation</strong>."
931
- msgstr ""
932
- "Redirection este gratuit - viața e minunată! Totuși, dezvoltarea acestui "
933
- "plugin presupune mult timp și efort depuse din partea mea și dacă v-a fost "
934
- "de folos puteți contribui la acest proiect <strong>făcând o mică donație</"
935
- "strong>."
936
 
937
- #: view/admin/support.php:10
938
- msgid ""
939
- "This will act as an incentive for me to carry on developing, providing "
940
- "countless hours of support, and including new features and suggestions. You "
941
- "get some useful software and I get to carry on making it. Everybody wins."
942
- msgstr ""
943
- "Aceasta mă va motiva să continui să îl dezvolt, oferind nenumărate ore de "
944
- "suport tehnic și adăugând opțiuni și sugestii noi. Voi vă alegeți cu un "
945
- "program util iar eu reușesc să continui să îl fac. Toată lumea câștigă."
946
 
947
- #: view/admin/support.php:13
948
- msgid ""
949
- "If you are using this plugin in a commercial setup, or feel that it's been "
950
- "particularly useful, then you may want to consider a <strong>commercial "
951
- "donation</strong>."
952
- msgstr ""
953
- "Dacă folosiți acest plugin într-un mediu comercial, sau considerați că v-a "
954
- "fost extrem de util, ați putea să vă gândiți la o <strong>donație "
955
- "comercială</strong>."
956
 
957
- #: view/admin/support.php:36
958
- msgid "Individual<br/>Donation"
959
- msgstr "Donație <br/>individuală"
 
960
 
961
- #: view/admin/support.php:56
962
- msgid "Commercial<br/>Donation"
963
- msgstr "Donație<br/>comercială"
964
 
965
- #: view/admin/support.php:60
966
- msgid "Translations"
967
- msgstr "Traduceri"
 
968
 
969
- #: view/admin/support.php:62
970
- msgid ""
971
- "If you're multi-lingual then you may want to consider donating a translation:"
972
- msgstr "Dacă vorbiți mai multe limbi ați putea contribui cu o traducere:"
973
 
974
- #: view/admin/support.php:70
975
- msgid ""
976
- "All translators will have a link to their website placed on the plugin "
977
- "homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/"
978
- "\">UrbanGiraffe</a>, in addition to being an individual supporter."
979
- msgstr ""
980
- "Toți traducătorii vor primi un link către site-ul lor de pe pagina "
981
- "principală a plugin-ului <a href=\"http://urbangiraffe.com/plugins/"
982
- "redirection/\">UrbanGiraffe</a>, pe lângă contribuția individuală."
983
 
984
- #: view/admin/support.php:71
985
- msgid ""
986
- "Full details of producing a translation can be found in this <a href="
987
- "\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/"
988
- "\">guide to translating WordPress plugins</a>."
989
- msgstr ""
990
- "Detaliile despre cum puteți contribui cu o traducere pot fi găsite în acest "
991
- "<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-"
992
- "plugins/\">ghid despre traducerea plugin-urilor WordPress </a>."
993
 
994
- #. Plugin URI of the plugin/theme
995
- msgid "http://urbangiraffe.com/plugins/redirection/"
996
- msgstr "http://urbangiraffe.com/plugins/redirection/"
997
 
998
- #. Description of the plugin/theme
999
- msgid "Manage all your 301 redirects and monitor 404 errors"
1000
- msgstr "Puteți administra toate redirecționările 301 și monitoriza erorile 404"
1001
 
1002
- #. Author of the plugin/theme
1003
- msgid "John Godley"
1004
- msgstr "John Godley"
1005
 
1006
- #. Author URI of the plugin/theme
1007
- msgid "http://urbangiraffe.com"
1008
- msgstr "http://urbangiraffe.com"
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Romanian
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-07-09 16:00:20+0000\n"
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
 
 
 
11
  "Language: ro\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  msgstr ""
 
 
 
 
 
 
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
 
 
 
20
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
 
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+ msgstr[2] ""
108
 
109
+ #: redirection-strings.php:119
110
+ msgid "Select All"
111
+ msgstr ""
112
 
113
+ #: redirection-strings.php:131
114
+ msgid "Sorry but something went wrong loading the data - please try again"
115
+ msgstr ""
116
 
117
+ #: redirection-strings.php:130
118
+ msgid "No results"
119
+ msgstr ""
120
 
121
+ #: redirection-strings.php:26
122
+ msgid "Delete the logs - are you sure?"
123
+ msgstr ""
124
 
125
+ #: redirection-strings.php:25
126
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
127
+ msgstr ""
128
 
129
+ #: redirection-strings.php:24
130
+ msgid "Yes! Delete the logs"
131
+ msgstr ""
132
 
133
+ #: redirection-strings.php:23
134
+ msgid "No! Don't delete the logs"
135
+ msgstr ""
136
 
137
+ #: redirection-admin.php:328
138
+ msgid "Redirection 404"
139
+ msgstr ""
140
 
141
+ #: redirection-strings.php:116
142
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
143
+ msgstr ""
144
 
145
+ #: redirection-strings.php:115 redirection-strings.php:117
146
+ msgid "Newsletter"
147
+ msgstr ""
148
 
149
+ #: redirection-strings.php:114
150
+ msgid "Want to keep up to date with changes to Redirection?"
151
+ msgstr ""
152
 
153
+ #: redirection-strings.php:113
154
+ 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."
155
+ msgstr ""
156
 
157
+ #: redirection-strings.php:112
158
+ msgid "Your email address:"
159
+ msgstr ""
160
 
161
+ #: redirection-strings.php:111
162
+ msgid "I deleted a redirection, why is it still redirecting?"
 
 
163
  msgstr ""
 
 
164
 
165
+ #: redirection-strings.php:110
166
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
167
+ msgstr ""
168
 
169
+ #: redirection-strings.php:109
170
+ msgid "Can I open a redirect in a new tab?"
171
+ msgstr ""
172
 
173
+ #: redirection-strings.php:108
174
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
175
+ msgstr ""
176
 
177
+ #: redirection-strings.php:107
178
+ msgid "Something isn't working!"
179
+ msgstr ""
180
 
181
+ #: redirection-strings.php:106
182
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
183
+ msgstr ""
184
 
185
+ #: redirection-strings.php:105
186
+ msgid "Frequently Asked Questions"
187
+ msgstr ""
188
 
189
+ #: redirection-strings.php:104
190
+ msgid "Need some help? Maybe one of these questions will provide an answer"
191
+ msgstr ""
192
 
193
+ #: redirection-strings.php:103
194
+ msgid "You've already supported this plugin - thank you!"
195
+ msgstr ""
196
 
197
+ #: redirection-strings.php:102
198
+ msgid "I'd like to donate some more"
199
+ msgstr ""
200
 
201
+ #: redirection-strings.php:100
202
+ msgid "You get some useful software and I get to carry on making it better."
203
+ msgstr ""
204
 
205
+ #: redirection-strings.php:99
206
+ msgid "Please note I do not provide support and this is just a donation."
207
+ msgstr ""
208
 
209
+ #: redirection-strings.php:98
210
+ msgid "Yes I'd like to donate"
211
+ msgstr ""
212
 
213
+ #: redirection-strings.php:97
214
+ msgid "Thank you for making a donation!"
215
+ msgstr ""
216
 
217
+ #: redirection-strings.php:91
218
+ msgid "Forever"
219
+ msgstr ""
220
 
221
+ #: redirection-strings.php:88
222
+ msgid "Failed to save data"
223
+ msgstr ""
224
 
225
+ #: redirection-strings.php:75
226
+ msgid "Failed to load data"
227
+ msgstr ""
228
 
229
+ #: redirection-strings.php:71
230
+ msgid "CSV Format"
231
+ msgstr ""
232
 
233
+ #: redirection-strings.php:70
234
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
235
+ msgstr ""
236
 
237
+ #: redirection-strings.php:67
238
+ msgid "Delete the plugin - are you sure?"
239
+ msgstr ""
240
 
241
+ #: redirection-strings.php:66
242
+ 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."
243
+ msgstr ""
244
 
245
+ #: redirection-strings.php:65
246
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
 
 
247
  msgstr ""
 
 
248
 
249
+ #: redirection-strings.php:64
250
+ msgid "Yes! Delete the plugin"
 
 
251
  msgstr ""
 
 
252
 
253
+ #: redirection-strings.php:63
254
+ msgid "No! Don't delete the plugin"
255
+ msgstr ""
256
 
257
+ #: view/item-edit.php:35
258
+ msgid "Advanced Settings"
259
+ msgstr "Setări avansate"
260
 
261
+ #. Author URI of the plugin/theme
262
+ msgid "http://urbangiraffe.com"
263
+ msgstr "http://urbangiraffe.com"
264
 
265
+ #. Author of the plugin/theme
266
+ msgid "John Godley"
267
+ msgstr "John Godley"
268
 
269
+ #. Description of the plugin/theme
270
+ msgid "Manage all your 301 redirects and monitor 404 errors"
271
+ msgstr "Administrează-ți toate redirecționările 301 și monitorizează erorile 404"
272
 
273
+ #. Plugin URI of the plugin/theme
274
+ msgid "http://urbangiraffe.com/plugins/redirection/"
275
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
276
 
277
+ #: redirection-strings.php:101
278
+ 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}}."
279
+ msgstr "Redirecționarea este gratuită - viața e minunată și frumoasă! Totuși, a necesitat mult timp și efort pentru a-l dezvolta și, dacă ți-a fost de folos, poți contribui la acest proiect {{strong}}făcând o mică donație{{/strong}}."
280
 
281
+ #: view/support.php:3
282
+ msgid "Redirection Support"
283
+ msgstr "Suport pentru Redirecționare"
284
 
285
+ #: view/submenu.php:47
286
+ msgid "Support"
287
+ msgstr "Suport"
288
 
289
+ #: view/submenu.php:34
290
+ msgid "404s"
291
+ msgstr "Erori 404"
292
 
293
+ #: view/submenu.php:32
294
+ msgid "404s from %s"
295
+ msgstr "Erori 404 din %s"
 
296
 
297
+ #: view/submenu.php:23
298
+ msgid "Log"
299
+ msgstr "Jurnal"
 
300
 
301
+ #: redirection-strings.php:69
302
+ msgid "Delete Redirection"
303
+ msgstr "Șterge Redirecționare"
 
304
 
305
+ #: redirection-strings.php:72
306
+ msgid "Upload"
307
+ msgstr "Încărcare"
308
 
309
+ #: redirection-strings.php:73
310
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
311
+ msgstr "Aici poți importa redirecționări dintr-un fișier {{code}}.htaccess{{/code}} existent sau dintr-un fișier CSV."
312
 
313
+ #: redirection-strings.php:74
314
+ msgid "Import"
315
+ msgstr "Import"
316
 
317
+ #: redirection-strings.php:76
318
+ msgid "Update"
319
+ msgstr "Actualizare"
320
 
321
+ #: redirection-strings.php:77
322
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
323
+ msgstr "Va fi folosit pentru a genera automat un URL dacă niciun URL nu este dat. Poți folosi tagurile speciale {{code}}$dec${{/code}} sau {{code}}$hex${{/code}} pentru a avea un ID unic inserat (fie zecimal ori hex)"
 
 
 
324
 
325
+ #: redirection-strings.php:78
326
+ msgid "Auto-generate URL"
327
+ msgstr "URL generat automat"
328
 
329
+ #: redirection-strings.php:79
330
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
331
+ msgstr "Un token unic care permite accesul fluxului de cititori la jurnalul RSS de redirecționare (lasă necompletat pentru generare automată)"
332
 
333
+ #: redirection-strings.php:80
334
+ msgid "RSS Token"
335
+ msgstr "Token RSS"
336
 
337
+ #: redirection-strings.php:90
338
+ msgid "Don't monitor"
339
+ msgstr "Nu monitoriza"
340
 
341
+ #: redirection-strings.php:81
342
+ msgid "Monitor changes to posts"
343
+ msgstr "Monitorizează schimbări în articole"
344
 
345
+ #: redirection-strings.php:83
346
+ msgid "404 Logs"
347
+ msgstr "Jurnale 404"
348
 
349
+ #: redirection-strings.php:82 redirection-strings.php:84
350
+ msgid "(time to keep logs for)"
351
+ msgstr "(perioadă de păstrare a jurnalelor)"
352
 
353
+ #: redirection-strings.php:85
354
+ msgid "Redirect Logs"
355
+ msgstr "Jurnale redirecționare"
 
356
 
357
+ #: redirection-strings.php:86
358
+ msgid "I'm a nice person and I have helped support the author of this plugin"
359
+ msgstr "Sunt o persoană de treabă și am sprijinit autorul acestui modul"
360
 
361
+ #: redirection-strings.php:87
362
+ msgid "Plugin support"
363
+ msgstr "Suport modul"
364
 
365
+ #: view/options.php:4 view/submenu.php:42
366
+ msgid "Options"
367
+ msgstr "Opțiuni"
368
 
369
+ #: redirection-strings.php:92
370
+ msgid "Two months"
371
+ msgstr "Două luni"
372
 
373
+ #: redirection-strings.php:93
374
+ msgid "A month"
375
+ msgstr "O lună"
376
 
377
+ #: redirection-strings.php:94
378
+ msgid "A week"
379
+ msgstr "O săptămână"
 
 
380
 
381
+ #: redirection-strings.php:95
382
+ msgid "A day"
383
+ msgstr "O zi"
384
 
385
+ #: redirection-strings.php:96
386
+ msgid "No logs"
387
+ msgstr "Niciun jurnal"
388
 
389
+ #: view/module-list.php:3 view/submenu.php:16
390
+ msgid "Modules"
391
+ msgstr "Extensii"
392
 
393
+ #: redirection-strings.php:28
394
+ msgid "Export to CSV"
395
+ msgstr "Exportă în CSV"
 
396
 
397
+ #: redirection-strings.php:27
398
+ msgid "Delete All"
399
+ msgstr "Șterge tot"
 
400
 
401
+ #: redirection-admin.php:322
402
+ msgid "Redirection Log"
403
+ msgstr "Jurnal redirecționare"
 
404
 
405
+ #: view/item-edit.php:14
406
+ msgid "optional"
407
+ msgstr "opțional"
408
 
409
+ #: view/item-edit.php:11
410
+ msgid "Description"
411
+ msgstr "Descriere"
412
 
413
+ #: redirection-strings.php:5
414
+ 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."
415
+ msgstr "Folosește grupuri pentru a-ți organiza redirecționările. Grupurile sunt atribuite unei extensii, care afectează modul în care redirecționările din acel grup funcționează. Dacă nu ești sigur, atunci lipește extensia WordPress."
416
 
417
+ #: redirection-strings.php:6
418
+ msgid "Add Group"
419
+ msgstr "Adaugă grup"
420
 
421
+ #: redirection-strings.php:132 view/item-list.php:10
 
422
  msgid "Search"
423
+ msgstr "Caută"
424
 
425
+ #: view/group-list.php:3 view/submenu.php:11
426
+ msgid "Groups"
427
+ msgstr "Grupuri"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
 
429
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
430
+ msgid "Save"
431
+ msgstr "Salvează"
432
 
433
+ #: view/add.php:46
434
+ msgid "Add Redirection"
435
+ msgstr "Adaugă redirecționare"
436
 
437
+ #: view/add.php:36 view/item-edit.php:18
438
+ msgid "Group"
439
+ msgstr "Grup"
440
 
441
+ #: view/add.php:28
442
+ msgid "Regular expression"
443
+ msgstr "Expresie uzuală"
444
 
445
+ #: view/add.php:23
446
+ msgid "Action"
447
+ msgstr "Acțiune"
448
 
449
+ #: view/add.php:17
450
+ msgid "Match"
451
+ msgstr "Potrivire"
452
 
453
+ #: view/add.php:7
454
+ msgid "Your redirection has been added."
455
+ msgstr "Redirecționarea ta a fost adăugată."
456
 
457
+ #: view/add.php:4
458
+ msgid "Add new redirection"
459
+ msgstr "Adaugă redirecționare nouă"
460
 
461
+ #: redirection-strings.php:14 redirection-strings.php:44
462
+ #: redirection-strings.php:54 view/item-edit.php:33
463
+ msgid "Cancel"
464
+ msgstr "Anulare"
465
 
466
+ #: redirection-strings.php:55
467
+ msgid "Download"
468
+ msgstr "Descarcă"
469
 
470
+ #: redirection-admin.php:407
471
+ msgid "Sorry, but your redirection was not created"
472
+ msgstr "Regret, dar redirecționarea ta nu s-a creat"
473
 
474
+ #: redirection-admin.php:344 redirection-admin.php:365
475
+ #: redirection-admin.php:387
476
+ msgid "Unable to perform action"
477
+ msgstr "Imposibil de executat acțiunea"
478
 
479
+ #: redirection-admin.php:311
480
+ msgid "No items were imported"
481
+ msgstr "Niciun element n-a fost importat"
482
 
483
+ #: redirection-admin.php:309
484
+ msgid "%d redirection was successfully imported"
485
+ msgid_plural "%d redirections were successfully imported"
486
+ msgstr[0] "%d redirecționare a fost importată cu succes"
487
+ msgstr[1] "%d redirecționări au fost importate cu succes"
488
+ msgstr[2] "%d de redirecționări au fost importate cu succes"
489
 
490
+ #: redirection-strings.php:89
491
+ msgid "Your options were updated"
492
+ msgstr "Opțiunile tale au fost actualizate"
493
 
494
+ #. Plugin Name of the plugin/theme
495
+ msgid "Redirection"
496
+ msgstr "Redirecționare"
497
 
498
+ #: redirection-admin.php:165
499
+ msgid "Settings"
500
+ msgstr "Setări"
501
 
502
+ #: redirection-strings.php:62
503
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
504
+ msgstr "Redirecționări cu sprijinul WordPress. Nu necesită nicio configurare suplimentară și poți urmări vizitele."
 
 
 
 
505
 
506
+ #: redirection-strings.php:60
507
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
508
+ msgstr "Pentru folosire cu server Nginx. Necesită configurare manuală. Redirecționarea se face fără încărcare WordPress. Nicio urmărire a vizitelor. Aceasta este o extensie experimentală."
509
 
510
+ #: redirection-strings.php:61
511
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
512
+ msgstr "Folosește fișiere {{code}}.htaccess{{/code}} Apache. Necesită configurare suplimentară. Redirecționarea se face fără încărcarea WordPress. Nicio urmărire a vizitelor."
513
 
514
+ #: redirection-strings.php:46
515
+ msgid "Automatically remove or add www to your site."
516
+ msgstr "Înlătură sau adaugă automat www la situl tău."
517
 
518
+ #: redirection-strings.php:49
519
+ msgid "Default server"
520
+ msgstr "Server implicit"
521
 
522
+ #: redirection-strings.php:50
523
+ msgid "Canonical URL"
524
+ msgstr "URL canonic"
525
 
526
+ #: redirection-strings.php:51
527
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
528
+ msgstr "WordPress este instalat în: {{code}}%s{{/code}}"
529
 
530
+ #: redirection-strings.php:52
531
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
532
+ msgstr "Dacă vrei ca Redirecționarea să-ți actualizeze automat fișierul {{code}}.htaccess{{/code}}, atunci introdu aici calea completă și numele fișierului. De asemenea, poți descărca fișierul și să-l actualizezi manual."
533
 
534
+ #: redirection-strings.php:53
535
+ msgid ".htaccess Location"
536
+ msgstr "Locație .htaccess"
537
 
538
+ #: models/redirect.php:382
539
+ msgid "Do nothing"
540
+ msgstr "Nu face nimic"
541
 
542
+ #: models/redirect.php:381
543
+ msgid "Error (404)"
544
+ msgstr "Eroare (404)"
545
 
546
+ #: models/redirect.php:380
547
+ msgid "Pass-through"
548
+ msgstr "Trece prin"
549
 
550
+ #: models/redirect.php:379
551
+ msgid "Redirect to random post"
552
+ msgstr "Redirecționează către articol aleatoriu"
553
 
554
+ #: models/redirect.php:378
555
+ msgid "Redirect to URL"
556
+ msgstr "Redirecționează către URL"
557
 
558
+ #: models/redirect.php:216
559
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
560
+ msgstr "Nu se pot adăuga redirecționări noi - șterge Redirecționare din pagina opțiuni și reinstalează"
561
 
562
+ #: models/redirect.php:178
563
+ msgid "Invalid source URL when creating redirect for given match type"
564
+ msgstr "URL sursă invalid la crearea redirecționării pentru tipul de potrivire dat"
565
 
566
+ #: models/redirect.php:174
567
+ msgid "Invalid group when creating redirect"
568
+ msgstr "Grup invalid la crearea redirecționării"
569
 
570
+ #: models/redirect.php:166
571
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
572
+ msgstr "Poți redirecționa numai de la un URL relativ (<code>%s</code>) pe acest domeniu (<code>%s</code>)."
573
 
574
+ #: models/redirect.php:160
575
+ msgid "Source and target URL must be different"
576
+ msgstr "Sursa și URL-ul de destinație trebuie să fie diferite"
577
 
578
+ #: redirection-strings.php:59
579
+ msgid "Configure"
580
+ msgstr "Configurare"
581
 
582
+ #: redirection-strings.php:34 redirection-strings.php:41
583
+ msgid "Show only this IP"
584
+ msgstr "Arată numai acest IP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
 
586
+ #: redirection-strings.php:30 redirection-strings.php:37
587
+ msgid "IP"
588
+ msgstr "IP"
589
 
590
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
591
+ #: view/item-edit.php:4
592
+ msgid "Source URL"
593
+ msgstr "URL sursă"
 
 
 
 
 
594
 
595
+ #: redirection-strings.php:33 redirection-strings.php:40
596
+ msgid "Date"
597
+ msgstr "Dată"
598
 
599
+ #: redirection-strings.php:42
600
+ msgid "Add Redirect"
601
+ msgstr "Adaugă redirecționare"
602
 
603
+ #: redirection-strings.php:7
604
+ msgid "All modules"
605
+ msgstr "Toate extensiile"
606
 
607
+ #: redirection-strings.php:20
608
+ msgid "View Redirects"
609
+ msgstr "Vizualizare redirecționări"
610
 
611
+ #: redirection-strings.php:11 redirection-strings.php:16
612
+ #: redirection-strings.php:58
613
+ msgid "Module"
614
+ msgstr "Extensie"
615
 
616
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
617
+ msgid "Redirects"
618
+ msgstr "Redirecționări"
619
 
620
+ #: redirection-strings.php:4 redirection-strings.php:13
621
+ #: redirection-strings.php:17
622
+ msgid "Name"
623
+ msgstr "Nume"
 
 
 
 
 
 
624
 
625
+ #: models/pager.php:164 redirection-strings.php:118
626
+ msgid "Filter"
627
+ msgstr "Filtru"
628
 
629
+ #: models/pager.php:151
630
+ msgid "No group filter"
631
+ msgstr "Niciun filtru pentru grup"
632
 
633
+ #: models/pager.php:104
634
+ msgid "Reset Hits"
635
+ msgstr "Resetare vizite"
636
+
637
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
638
+ #: redirection-strings.php:18
639
+ msgid "Enable"
640
+ msgstr "Activare"
641
+
642
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
643
+ #: redirection-strings.php:19
644
+ msgid "Disable"
645
+ msgstr "Dezactivare"
646
+
647
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
648
+ #: redirection-strings.php:21 redirection-strings.php:29
649
+ #: redirection-strings.php:35 redirection-strings.php:36
650
+ #: redirection-strings.php:43 redirection-strings.php:68
651
+ msgid "Delete"
652
+ msgstr "Șterge"
653
 
654
+ #: models/pager.php:53 redirection-strings.php:22
655
+ msgid "Edit"
656
+ msgstr "Editare"
 
 
 
 
657
 
658
+ #: models/pager.php:31
659
+ msgid "Last Access"
660
+ msgstr "Ultima vizită"
661
 
662
+ #: models/pager.php:30
663
+ msgid "Hits"
664
+ msgstr "Vizite"
 
 
 
 
665
 
666
+ #: models/pager.php:29
667
+ msgid "URL"
668
+ msgstr "URL"
669
 
670
+ #: models/pager.php:28
671
+ msgid "Type"
672
+ msgstr "Tip"
673
 
674
+ #: models/database.php:121
675
+ msgid "Modified Posts"
676
+ msgstr "Articole modificate"
677
 
678
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
679
+ msgid "Redirections"
680
+ msgstr "Redirecționări"
681
 
682
+ #: matches/user-agent.php:51
683
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
684
+ msgstr "Vizitatorul va fi redirecționat de la URL-ul sursă dacă agentul utilizator se potrivește. Poți specifica un URL de destinație <em>potrivit</em> ca adresă pentru a trimite vizitatorii dacă se potrivesc și unul <em>nepotrivit</em> dacă nu se potrivesc. Lăsând un URL necompletat înseamnă că vizitatorul nu este redirecționat. <strong>Toate potrivirile sunt executate ca expresii uzuale</strong>.\n"
685
 
686
+ #: matches/user-agent.php:25
687
+ msgid "User Agent"
688
+ msgstr "Agent utilizator"
689
 
690
+ #: matches/user-agent.php:20
691
+ msgid "Nintendo Wii"
692
+ msgstr "Nintendo Wii"
 
 
 
 
693
 
694
+ #: matches/user-agent.php:19
695
+ msgid "Android"
696
+ msgstr "Android"
697
 
698
+ #: matches/user-agent.php:18
699
+ msgid "iPad"
700
+ msgstr "iPad"
701
 
702
+ #: matches/user-agent.php:17
703
+ msgid "iPhone"
704
+ msgstr "iPhone"
705
 
706
+ #: matches/user-agent.php:16
707
+ msgid "Safari"
708
+ msgstr "Safari"
709
 
710
+ #: matches/user-agent.php:15
711
+ msgid "Opera"
712
+ msgstr "Opera"
 
 
 
 
 
 
713
 
714
+ #: matches/user-agent.php:14
715
+ msgid "FireFox"
716
+ msgstr "FireFox"
717
 
718
+ #: matches/user-agent.php:13
719
+ msgid "Internet Explorer"
720
+ msgstr "Internet Explorer"
721
 
722
+ #: matches/user-agent.php:12
723
+ msgid "FeedBurner"
724
+ msgstr "FeedBurner"
725
 
726
+ #: matches/user-agent.php:7
727
+ msgid "URL and user agent"
728
+ msgstr "URL și agent utilizator"
729
 
730
+ #: matches/url.php:12 view/add.php:32
731
+ msgid "Target URL"
732
+ msgstr "URL de destinație"
 
 
 
 
 
 
 
 
733
 
734
+ #: matches/url.php:5
735
+ msgid "URL only"
736
+ msgstr "Numai URL"
 
 
 
 
 
 
737
 
738
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
739
+ #: matches/user-agent.php:70
740
+ msgid "Not matched"
741
+ msgstr "Nepotrivit"
 
 
 
 
 
742
 
743
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
744
+ #: matches/user-agent.php:60
745
+ msgid "Matched"
746
+ msgstr "Potrivit"
747
 
748
+ #: matches/referrer.php:40
749
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
750
+ msgstr "Vizitatorul va fi redirecționat de la URL-ul sursă dacă referentul se potrivește. Poți specifica un URL de destinație <em>potrivit</em> ca adresă pentru a trimite vizitatorii dacă se potrivesc și unul <em>nepotrivit</em> dacă nu se potrivesc. Lăsând un URL necompletat înseamnă că vizitatorul nu este redirecționat."
751
 
752
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
753
+ #: matches/user-agent.php:38
754
+ msgid "HTTP Code"
755
+ msgstr "Cod HTTP"
756
 
757
+ #: matches/referrer.php:24 view/item-edit.php:7
758
+ msgid "Regex"
759
+ msgstr "Expresie uzuală"
 
760
 
761
+ #: matches/referrer.php:21 redirection-strings.php:31
762
+ #: redirection-strings.php:38
763
+ msgid "Referrer"
764
+ msgstr "Referent"
 
 
 
 
 
765
 
766
+ #: matches/referrer.php:8
767
+ msgid "URL and referrer"
768
+ msgstr "URL și referent"
 
 
 
 
 
 
769
 
770
+ #: matches/login.php:35 matches/login.php:37
771
+ msgid "Logged Out"
772
+ msgstr "Dezautentificat"
773
 
774
+ #: matches/login.php:23 matches/login.php:25
775
+ msgid "Logged In"
776
+ msgstr "Autentificat"
777
 
778
+ #: matches/login.php:16
779
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
780
+ msgstr "URL-ul de destinație va fi ales din unul dintre următoarele URL-uri, în funcție dacă utilizatorul este autentificat sau nu. Lăsând un URL necompletat înseamnă că utilizatorul nu este redirecționat."
781
 
782
+ #: matches/login.php:7
783
+ msgid "URL and login status"
784
+ msgstr "URL și stare autentificare"
locale/redirection-ru_RU.mo CHANGED
Binary file
locale/redirection-ru_RU.po CHANGED
@@ -1,986 +1,784 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2009 Grib <grib69@gmail.com>
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: Redirection 2.1.20\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
10
- "POT-Creation-Date: 2011-07-17 10:14:58+00:00\n"
11
- "PO-Revision-Date: 2011-08-08 10:21+0500\n"
12
- "Last-Translator: \n"
13
- "Language-Team: www.wp-ru.ru <grib69@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
 
 
 
18
 
19
- #: fileio/csv.php:21
20
- msgid "module_%d.csv"
21
- msgstr "module_%d.csv"
22
-
23
- #: fileio/xml.php:32
24
- msgid "module_%d.xml"
25
- msgstr "module_%d.xml"
26
-
27
- #: fileio/xml.php:105
28
- msgid "%s imported on %s at %s"
29
- msgstr "%s импортировано %s в %s"
30
-
31
- #: fileio/xml.php:168
32
- msgid "XML importing is only available with PHP5 - you have PHP4."
33
- msgstr "Импорт XML доступен только с PHP5, у вас установлен PHP4"
34
-
35
- #: view/admin/group_list.php:6
36
- msgid "Groups for module"
37
- msgstr "Группы для модуля"
38
-
39
- #: view/admin/group_list.php:16
40
- #: view/admin/log.php:38
41
- msgid "Module"
42
- msgstr "Модуль"
43
-
44
- #: view/admin/group_list.php:21
45
- #: view/admin/log.php:16
46
- #: view/admin/log.php:23
47
- #: view/admin/item_list.php:29
48
- msgid "Search"
49
- msgstr "Поиск"
50
-
51
- #: view/admin/group_list.php:26
52
- msgid "go"
53
- msgstr "вперед"
54
-
55
- #: view/admin/group_list.php:36
56
- #: view/admin/item_list.php:42
57
- #: view/admin/module_list.php:17
58
- msgid "Hits"
59
- msgstr "Счетчик"
60
-
61
- #: view/admin/group_list.php:37
62
- #: view/admin/group_list.php:100
63
- #: view/admin/module_edit.php:18
64
- #: view/admin/module_list.php:42
65
- #: view/admin/group_edit.php:6
66
- msgid "Name"
67
- msgstr "Название"
68
-
69
- #: view/admin/group_list.php:59
70
- #: view/admin/item_list.php:67
71
- msgid "Select All"
72
- msgstr "Выбрать все"
73
-
74
- #: view/admin/group_list.php:60
75
- #: view/admin/item_list.php:68
76
- msgid "Toggle"
77
- msgstr "Вкл/Выкл"
78
-
79
- #: view/admin/group_list.php:61
80
- #: view/admin/item_list.php:69
81
- msgid "Reset Hits"
82
- msgstr "Обнулить счетчик"
83
-
84
- #: view/admin/group_list.php:62
85
- #: view/admin/log.php:30
86
- #: view/admin/item_list.php:70
87
- #: view/admin/options.php:120
88
- msgid "Delete"
89
- msgstr "Удалить"
90
-
91
- #: view/admin/group_list.php:64
92
- #: view/admin/item_list.php:72
93
- msgid "Move To"
94
- msgstr "Переместить"
95
 
96
- #: view/admin/group_list.php:69
97
- #: view/admin/item_list.php:34
98
- #: view/admin/item_list.php:77
99
- msgid "Go"
100
- msgstr "Вперед"
101
 
102
- #: view/admin/group_list.php:75
103
- #: view/admin/item_list.php:83
104
- msgid "re-order"
105
- msgstr "поменять местами"
106
 
107
- #: view/admin/group_list.php:76
108
- #: view/admin/item_list.php:84
109
- msgid "save order"
110
- msgstr "сохранить порядок"
111
 
112
- #: view/admin/group_list.php:89
113
- msgid "You have no groups in this module."
114
- msgstr "Нет групп в данном модуле"
115
 
116
- #: view/admin/group_list.php:94
117
- msgid "Add Group"
118
- msgstr "Добавить группу"
119
 
120
- #: view/admin/group_list.php:105
121
- msgid "Add"
122
- msgstr "Добавить"
123
-
124
- #: view/admin/group_list.php:117
125
- #: view/admin/log.php:112
126
- #: view/admin/item_list.php:112
127
- #: redirection.php:116
128
- msgid "No items have been selected"
129
- msgstr "Ничего не выбрано"
130
-
131
- #: view/admin/group_list.php:118
132
- #: view/admin/log.php:113
133
- #: view/admin/item_list.php:113
134
- #: redirection.php:115
135
- msgid "Are you sure?"
136
- msgstr "Вы уверены?"
137
-
138
- #: view/admin/submenu.php:6
139
- msgid "Redirects"
140
- msgstr "Перенаправления"
141
 
142
- #: view/admin/submenu.php:11
143
- #: view/admin/module_list.php:15
144
- msgid "Groups"
145
- msgstr "Группы"
146
 
147
- #: view/admin/submenu.php:16
148
- #: view/admin/module_list.php:6
149
- msgid "Modules"
150
- msgstr "Модули"
151
 
152
- #: view/admin/submenu.php:21
153
- msgid "Log"
154
- msgstr "Журнал"
155
 
156
- #: view/admin/submenu.php:26
157
- #: view/admin/options.php:6
158
- msgid "Options"
159
- msgstr "Настройки"
160
 
161
- #: view/admin/submenu.php:31
162
- msgid "Support"
163
- msgstr "Поддержка"
164
 
165
- #: view/admin/module_item.php:23
166
- msgid "View as"
167
- msgstr "Посмотреть как"
168
 
169
- #: view/admin/module_item.php:25
170
- msgid "CSV"
171
- msgstr "CSV"
172
 
173
- #: view/admin/module_item.php:26
174
- msgid "XML"
175
- msgstr "XML"
176
 
177
- #: view/admin/module_item.php:27
178
- #: models/module.php:160
179
- #: models/database.php:95
180
- msgid "Apache"
181
- msgstr "Apache"
182
 
183
- #: view/admin/module_item.php:28
184
- msgid "RSS"
185
- msgstr "RSS"
186
 
187
- #: view/admin/module_item.php:41
188
- msgid "edit"
189
- msgstr "править"
190
 
191
- #: view/admin/module_item.php:43
192
- msgid "delete"
193
- msgstr "удалить"
194
 
195
- #: view/admin/module_item.php:45
196
- msgid "reset"
197
- msgstr "сбросить"
198
 
199
- #: view/admin/log.php:6
200
- msgid "Redirection Log"
201
- msgstr "Журнал перенаправлений"
202
 
203
- #: view/admin/log.php:29
204
- msgid "Bulk Actions"
205
- msgstr "Массовые действия"
206
 
207
- #: view/admin/log.php:33
208
- msgid "Apply"
209
- msgstr "Применить"
 
 
 
210
 
211
- #: view/admin/log.php:43
212
- #: view/admin/item_list.php:24
213
- #: view/admin/add.php:36
214
- msgid "Group"
215
- msgstr "Группа"
216
 
217
- #: view/admin/log.php:49
218
- msgid "Filter"
219
- msgstr "Фильтр"
220
 
221
- #: view/admin/log.php:67
222
- msgid "Date"
223
- msgstr "Дата"
224
 
225
- #: view/admin/log.php:68
226
- #: view/admin/log_item_details.php:4
227
- #: view/admin/item_edit.php:15
228
- #: view/admin/add.php:12
229
- msgid "Source URL"
230
- msgstr "URL источника"
231
 
232
- #: view/admin/log.php:69
233
- #: matches/referrer.php:40
234
- msgid "Referrer"
235
- msgstr "Реферер"
236
 
237
- #: view/admin/log.php:70
238
- msgid "IP"
239
- msgstr "IP"
240
 
241
- #: view/admin/log.php:85
242
- msgid "There are no logs to display!"
243
- msgstr "Журналы отсутствуют!"
244
 
245
- #: view/admin/log.php:94
246
- msgid "Process Current Logs"
247
- msgstr "Действия с текущим журналом"
248
 
249
- #: view/admin/log.php:95
250
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
251
- msgstr "Эти действия коснутся всех имеющихся в настоящее время журналов (поиск по журналу будет ограничен)"
252
 
253
- #: view/admin/log.php:100
254
- msgid "Delete Logs"
255
- msgstr "Удалить журналы"
256
 
257
- #: view/admin/item_list.php:7
258
- msgid "Redirections for group"
259
- msgstr "Перенаправление для группы"
260
 
261
- #: view/admin/item_list.php:41
262
- msgid "Last Access"
263
- msgstr "Последний"
264
 
265
- #: view/admin/item_list.php:43
266
- #: view/admin/module_list.php:46
267
- msgid "Type"
268
- msgstr "Тип"
269
 
270
- #: view/admin/item_list.php:44
271
- msgid "URL"
272
- msgstr "URL"
273
 
274
- #: view/admin/item_list.php:44
275
- msgid "Position"
276
- msgstr "Сортировка"
277
 
278
- #: view/admin/item_list.php:88
279
- msgid "You have no redirections."
280
- msgstr "Нет перенаправлений"
281
 
282
- #: view/admin/log_item_details.php:9
283
- msgid "Redirect to"
284
- msgstr "Перенаправить на"
285
 
286
- #: view/admin/log_item_details.php:15
287
- msgid "Redirected by"
288
- msgstr "Перенаправлено"
289
 
290
- #: view/admin/log_item_details.php:16
291
- msgid "for"
292
- msgstr "для"
293
 
294
- #: view/admin/log_item_details.php:20
295
- #: matches/user_agent.php:43
296
- msgid "User Agent"
297
- msgstr "User-Agent"
298
 
299
- #: view/admin/item.php:27
300
- #: view/admin/group_item.php:23
301
- msgid "disabled"
302
- msgstr "отключено"
303
 
304
- #: view/admin/item_edit.php:3
305
- msgid "%s by matching %s"
306
- msgstr "%s сопоставление %s"
307
 
308
- #: view/admin/item_edit.php:7
309
- msgid "Title"
310
- msgstr "Название"
311
 
312
- #: view/admin/item_edit.php:10
313
- msgid "optional"
314
- msgstr "не обязательно"
315
 
316
- #: view/admin/item_edit.php:18
317
- #: matches/referrer.php:43
318
- msgid "Regex"
319
- msgstr "Регулярное выражение"
320
 
321
- #: view/admin/item_edit.php:27
322
- #: view/admin/module_edit.php:27
323
- #: view/admin/group_edit.php:20
324
- msgid "Save"
325
- msgstr "Сохранить"
326
 
327
- #: view/admin/item_edit.php:28
328
- #: view/admin/module_edit.php:28
329
- #: view/admin/group_edit.php:21
330
- msgid "Cancel"
331
- msgstr "Отмена"
332
 
333
- #: view/admin/add.php:3
334
- msgid "Add new redirection"
335
- msgstr "Добавить новое перенаправление"
336
 
337
- #: view/admin/add.php:6
338
- msgid "Your redirection has been added."
339
- msgstr "Ваше правило перенаправления добавлено."
340
 
341
- #: view/admin/add.php:16
342
- msgid "Match"
343
- msgstr "Совпадение"
344
 
345
- #: view/admin/add.php:22
346
- msgid "Action"
347
- msgstr "Действие"
348
 
349
- #: view/admin/add.php:27
350
- msgid "Regular expression"
351
- msgstr "Регулярное выражение"
352
 
353
- #: view/admin/add.php:31
354
- #: matches/url.php:32
355
- msgid "Target URL"
356
- msgstr "URL назначения"
357
 
358
- #: view/admin/add.php:43
359
- msgid "Add Redirection"
360
- msgstr "Добавить перенаправление"
361
 
362
- #: view/admin/group_item.php:3
363
- msgid "edit group"
364
- msgstr "править группу"
365
 
366
- #: view/admin/module_list.php:14
367
- msgid "Details"
368
- msgstr "Детали"
369
 
370
- #: view/admin/module_list.php:16
371
- msgid "Items"
372
- msgstr "Элементы"
373
 
374
- #: view/admin/module_list.php:18
375
- msgid "Operations"
376
- msgstr "Действия"
377
 
378
- #: view/admin/module_list.php:27
379
- msgid "Note: Hits are dependant on log entries"
380
- msgstr "Примечание: показания счетчика зависят от записей в журнале"
381
 
382
- #: view/admin/module_list.php:29
383
- msgid "You have no modules defined yet"
384
- msgstr "Вы не определили модули"
385
 
386
- #: view/admin/module_list.php:34
387
- msgid "Add Module"
388
- msgstr "Добавить модуль"
389
 
390
- #: view/admin/module_list.php:35
391
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
392
- msgstr "Модуль представляет собой элемент управления, который определяет как обрабатываются перенаправления. Элементы модуля WordPress обрабатываются WordPress, элементы модуля Apache обрабатываются файлом <code>.htaccess</code> и элементы модуля 404 влияют на журналирование ошибок 404"
393
 
394
- #: view/admin/module_list.php:55
395
- msgid "Create"
396
- msgstr "Создать"
397
 
398
- #: view/admin/support.php:5
399
  msgid "Redirection Support"
400
  msgstr "Поддержка"
401
 
402
- #: view/admin/support.php:9
403
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
404
- msgstr "Этот плагин абсолютно свободен для использования - жизнь прекрасна и удивительна! Тем не менее, он требует много времени и усилий в разработке и если он был вам полезен, вы можете поддержать его дальнейшее развитие, <strong>сделав небольшое пожертвование</strong>."
405
 
406
- #: view/admin/support.php:10
407
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
408
- msgstr "Это будет для меня стимулом продолжать заниматься разработкой данного плагина, тратить много времени на оказание поддержки, в том числе на реализацию новых предложенных возможностей. Вы получаете новые программы, а я продолжаю этим заниматься. Все остаются в выигрыше."
409
 
410
- #: view/admin/support.php:13
411
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
412
- msgstr "Если вы используете данный плагин в коммерческих проектах или считаете, что он был вам особенно полезен, то вполне возможно, что вы захотите сделать <strong>коммерческий взнос</strong>."
413
 
414
- #: view/admin/support.php:36
415
- msgid "Individual<br/>Donation"
416
- msgstr "Индивидуальный<br/>взнос"
 
 
 
 
417
 
418
- #: view/admin/support.php:56
419
- msgid "Commercial<br/>Donation"
420
- msgstr "Коммерческий<br/>взнос"
421
 
422
- #: view/admin/support.php:60
423
- msgid "Translations"
424
- msgstr "Переводчики"
425
 
426
- #: view/admin/support.php:62
427
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
428
- msgstr "Если вы владеете другим языком, вы можете оказать помощь, сделав перевод:"
429
 
430
- #: view/admin/support.php:70
431
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
432
- msgstr "Все переводчики получают ссылку на свой сайт с домашней страницы плагина на <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> и <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, а также имеют возможность получать индивидуальную поддержку."
433
 
434
- #: view/admin/support.php:71
435
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
436
- msgstr "Полную информацию о подготовке перевода можно найти в <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">руководстве по переводу плагинов для WordPress</a>."
437
 
438
- #: view/admin/options.php:15
439
  msgid "Auto-generate URL"
440
  msgstr "Автоматическая генерация URL"
441
 
442
- #: view/admin/options.php:19
443
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
444
- msgstr "Используется для автоматической генерации URL, если URL не представлен. Вы можете использовать специальные тэги $dec$ или $hex$ для вставки уникального ID (десятичные или шестнадцатиричные)"
445
-
446
- #: view/admin/options.php:24
447
- msgid "IP Lookup Service"
448
- msgstr "Сервис разрешения имен по IP"
449
-
450
- #: view/admin/options.php:30
451
- msgid "Plugin Support"
452
- msgstr "Поддержка плагина"
453
-
454
- #: view/admin/options.php:33
455
- msgid "I'm a nice person and I have helped support the author of this plugin"
456
- msgstr "Я - хороший человек и я поддержал автора данного плагина"
457
-
458
- #: view/admin/options.php:37
459
- msgid "Logging"
460
- msgstr "Журнал"
461
-
462
- #: view/admin/options.php:40
463
- msgid "log redirected requests"
464
- msgstr "вести журнал запросов перенаправлений"
465
-
466
- #: view/admin/options.php:42
467
- msgid "log 404 Not Found requests"
468
- msgstr "вести журнал запросов 404"
469
-
470
- #: view/admin/options.php:43
471
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
472
- msgstr "Если ваши перенаправленные URL посещаются очень часто и/или ваш сайт очень загружен и страницы часто бывают не найдены, снимите флажок с одной или обеих этих опций чтобы отключить ведение журнала и тем самым снизить загрузку базы данных."
473
 
474
- #: view/admin/options.php:47
475
- msgid "Expire Logs"
476
- msgstr "Время жизни журнала"
477
-
478
- #: view/admin/options.php:50
479
- msgid "days (enter 0 for no expiry)"
480
- msgstr "дней (введите 0 для неограниченного времени)"
481
-
482
- #: view/admin/options.php:54
483
  msgid "RSS Token"
484
  msgstr "Токен RSS"
485
 
486
- #: view/admin/options.php:57
487
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
488
- msgstr "Уникальная строка для доступа к RSS фиду плагина (оставьте пустой для автоматической генерации)"
489
-
490
- #: view/admin/options.php:62
491
- msgid "URL Monitoring"
492
- msgstr "Отслеживание URL"
493
-
494
- #: view/admin/options.php:63
495
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
496
- msgstr "Вы можете включить слежение за изменением URL и автоматически создавать перенаправление в определенной группе."
497
-
498
- #: view/admin/options.php:67
499
- msgid "Post &amp; Page URLs"
500
- msgstr "URL записей и страниц"
501
-
502
- #: view/admin/options.php:70
503
- #: view/admin/options.php:82
504
  msgid "Don't monitor"
505
  msgstr "Не отслеживать"
506
 
507
- #: view/admin/options.php:74
508
- msgid "Monitor new posts"
509
- msgstr "Отслеживание новых записей"
510
 
511
- #: view/admin/options.php:79
512
- msgid "Category URLs"
513
- msgstr "URL категории"
514
 
515
- #: view/admin/options.php:89
516
- msgid "Update"
517
- msgstr "Обновить"
518
 
519
- #: view/admin/options.php:95
520
- msgid "Import"
521
- msgstr "Импорт"
522
 
523
- #: view/admin/options.php:97
524
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
525
- msgstr "Вы можете импортировать правила перенаправлений из существующих .htaccess, CSV или XML файлов"
526
 
527
- #: view/admin/options.php:104
528
- msgid "Import into"
529
- msgstr "Импортировать в"
530
 
531
- #: view/admin/options.php:107
532
- msgid "Upload"
533
- msgstr "Загрузить"
534
 
535
- #: view/admin/options.php:110
536
- msgid "Note that the group is ignored when uploading an XML file."
537
- msgstr "Примечание: группа будет проигнорирована при загрузке XML-файла."
538
 
539
- #: view/admin/options.php:114
540
- msgid "Delete Redirection"
541
- msgstr "Удалить плагин"
542
 
543
- #: view/admin/options.php:115
544
- 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."
545
- msgstr "Выбор данной опции удалит все настроенные перенаправления, все журналы и все другие настройки, связанные с данным плагином. Убедитесь, что это именно то, чего вы желаете."
546
 
547
- #: view/admin/group_edit.php:10
548
- msgid "Tracked"
549
- msgstr "Слежение"
550
 
551
- #: view/admin/group_edit.php:11
552
- msgid "Whether to track 'hits' to items"
553
- msgstr "Отслеживать кол-во срабатываний"
554
 
555
- #: view/admin/group_edit.php:14
556
- msgid "Enabled"
557
- msgstr "Включено"
558
 
559
- #: view/admin/group_edit.php:15
560
- msgid "Disabling a group will disable all items contained within it"
561
- msgstr "Отключение группы приведет к отключению всех пунктов, содержащихся в ней"
562
 
563
- #: modules/404.php:37
564
- msgid "Log 404s"
565
- msgstr "Журналирование 404"
566
 
567
- #: modules/404.php:46
568
- #: modules/wordpress.php:121
569
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
570
- msgstr "<strong>Отключено: Перед использованием должны быть включены <a href=\"options-permalink.php\">ЧПУ</a>"
571
 
572
- #: modules/404.php:57
573
- msgid "<small>No options have been set</small>"
574
- msgstr "<small>Нет настраиваемых параметров</small>"
575
 
576
- #: modules/apache.php:77
577
- msgid "Location"
578
- msgstr "Расположение"
579
 
580
- #: modules/apache.php:82
581
- msgid "WordPress is installed in: <code>%s</code>"
582
- msgstr "WordPress установлен в: <code>%s</code>"
583
 
584
- #: modules/apache.php:87
585
- msgid "Canonical"
586
- msgstr "Основа"
587
 
588
- #: modules/apache.php:90
589
- #: modules/apache.php:96
590
- msgid "Leave as is"
591
- msgstr "Оставить как есть"
592
 
593
- #: modules/apache.php:90
594
- msgid "Strip WWW (%s)"
595
- msgstr "Вырезать WWW (%s)"
596
 
597
- #: modules/apache.php:90
598
- msgid "Force WWW (www.%s)"
599
- msgstr "Принудительно использовать WWW (www.%s)"
600
 
601
- #: modules/apache.php:94
602
- msgid "Strip Index"
603
- msgstr "Удаление индекса"
604
 
605
- #: modules/apache.php:96
606
- msgid "Strip index files (html,php)"
607
- msgstr "Удалить файлы index (html,php) "
608
 
609
- #: modules/apache.php:101
610
- msgid "Memory Limit"
611
- msgstr "Лимит памяти"
612
 
613
- #: modules/apache.php:104
614
- #: modules/apache.php:109
615
- msgid "Server default"
616
- msgstr "Настройки сервера"
617
 
618
- #: modules/apache.php:107
619
- msgid "Error Level"
620
- msgstr "Уровень ошибок"
621
 
622
- #: modules/apache.php:109
623
- msgid "No errors"
624
- msgstr "Без ошибок"
625
 
626
- #: modules/apache.php:109
627
- msgid "Show errors"
628
- msgstr "Показывать ошибки"
629
 
630
- #: modules/apache.php:114
631
- msgid "Ban IPs"
632
- msgstr "Блокировать IP"
 
633
 
634
- #: modules/apache.php:120
635
- msgid "Allow IPs"
636
- msgstr "Разрешить IP"
637
 
638
- #: modules/apache.php:126
639
- msgid "Raw .htaccess"
640
- msgstr "Необработанный .htaccess"
641
 
642
- #: modules/apache.php:132
643
- msgid "Site URL"
644
- msgstr "URL сайта"
 
645
 
646
- #: modules/apache.php:135
647
- msgid "Advanced: For management of external sites"
648
- msgstr "Дополнительно: для управления внешними сайтами"
649
 
650
- #: modules/apache.php:150
651
- msgid "<strong>Location is invalid - check that path exists</strong>"
652
- msgstr "<strong>Неправильное расположение - проверьте что путь существует</strong>"
 
 
 
653
 
654
- #: modules/apache.php:156
655
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
656
- msgstr "<strong>Невозможно записать файл <code>.htaccess</code> - проверьте права доступа</strong>"
657
 
658
- #: modules/apache.php:163
659
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
660
- msgstr "<strong>Отключено: укажите положение файла <code>.htaccess</code> или приведите его в рабочее состояние</strong>"
661
 
662
- #: modules/apache.php:168
663
- msgid "strip WWW"
664
- msgstr "вырезать WWW"
665
 
666
- #: modules/apache.php:168
667
- msgid "force WWW"
668
- msgstr "принудительно использовать WWW"
669
 
670
- #: modules/apache.php:171
671
- msgid "strip index"
672
- msgstr "удалить index"
673
 
674
- #: modules/apache.php:174
675
- msgid "memory limit at %dMB"
676
- msgstr "лимит памяти %dMB"
677
 
678
- #: modules/apache.php:177
679
- msgid "no errors"
680
- msgstr "нет ошибок"
681
 
682
- #: modules/apache.php:177
683
- msgid "show errors"
684
- msgstr "показать ошибки"
685
 
686
- #: modules/apache.php:180
687
- msgid "IPs are banned"
688
- msgstr "Запрещенные IP"
689
 
690
- #: modules/apache.php:183
691
- msgid "IPs are allowed"
692
- msgstr "Разрешенные IP"
693
 
694
- #: models/redirect.php:386
695
- msgid "Redirect to URL"
696
- msgstr "Перенаправить на URL"
697
 
698
- #: models/redirect.php:387
699
- msgid "Redirect to random post"
700
- msgstr "Перенаправить на случайную запись"
701
 
702
- #: models/redirect.php:388
703
- msgid "Pass-through"
704
- msgstr "Транзит (pass-through)"
705
 
706
- #: models/redirect.php:389
707
  msgid "Error (404)"
708
  msgstr "Ошибка 404"
709
 
710
- #: models/redirect.php:390
711
- msgid "Do nothing"
712
- msgstr "Ничего не делать"
713
 
714
- #: models/module.php:161
715
- #: models/database.php:94
716
- msgid "WordPress"
717
- msgstr "WordPress"
718
 
719
- #: models/module.php:162
720
- msgid "404 Errors"
721
- msgstr "Ошибки 404"
722
 
723
- #: models/module.php:187
724
- msgid "Strip WWW"
725
- msgstr "Вырезать WWW"
726
 
727
- #: models/module.php:187
728
- msgid "Force WWW"
729
- msgstr "Принудительно использовать WWW"
730
 
731
- #: models/module.php:192
732
- msgid "Strip index.php"
733
- msgstr "Удалить index.php"
734
 
735
- #: models/database.php:96
736
- msgid "404"
737
- msgstr "404"
738
 
739
- #: models/database.php:101
740
- msgid "Redirections"
741
- msgstr "Перенаправления"
742
 
743
- #: models/database.php:102
744
- msgid "Modified Posts"
745
- msgstr "Измененные записи"
746
 
747
- #: models/pager.php:404
748
- msgid "Previous"
749
- msgstr "Предыдущий"
750
 
751
- #: models/pager.php:405
752
- msgid "Next"
753
- msgstr "Следующий"
754
-
755
- #: models/pager.php:463
756
- msgid "%d per-page"
757
- msgstr "%d на страницу"
758
 
759
- #: models/pager.php:472
760
- msgid "Displaying %s&#8211;%s of %s"
761
- msgstr "Показано %s&#8211;%s из %s"
 
762
 
763
- #: models/group.php:194
764
- msgid "Yes"
765
- msgstr "Да"
766
 
767
- #: models/group.php:195
768
- msgid "No"
769
- msgstr "Нет"
770
 
771
- #: ajax.php:370
772
- msgid "Sorry, but your redirection was not created"
773
- msgstr "Извините, перенаправление не было создано"
774
 
775
- #: redirection.php:94
776
- msgid "Settings"
777
- msgstr "Настройки"
778
 
779
- #: redirection.php:112
780
- msgid "Please wait..."
781
- msgstr "Пожалуйста подождите..."
 
782
 
783
- #. #-#-#-#-# plugin.pot (Redirection 2.2.5) #-#-#-#-#
784
- #. Plugin Name of the plugin/theme
785
- #: redirection.php:121
786
- msgid "Redirection"
787
  msgstr "Перенаправления"
788
 
789
- #: redirection.php:159
790
- msgid "Your module was successfully created"
791
- msgstr "Модуль успешно создан"
 
792
 
793
- #: redirection.php:163
794
- msgid "Your module was not created - did you provide a name?"
795
- msgstr "Модуль не был создан - не указали имя?"
796
 
797
- #: redirection.php:228
798
- msgid "Your options were updated"
799
- msgstr "Ваши настройки были обновлены"
800
 
801
- #: redirection.php:236
802
- msgid "Redirection data has been deleted and the plugin disabled"
803
- msgstr "Все настройки перенаправлений были удалены, а плагин отключен"
804
 
805
- #: redirection.php:246
806
- msgid "%d redirection was successfully imported"
807
- msgid_plural "%d redirections were successfully imported"
808
- msgstr[0] "%d перенаправление было успешно импортировано"
809
- msgstr[1] "%d перенаправления были успешно импортированы"
810
 
811
- #: redirection.php:248
812
- msgid "No items were imported"
813
- msgstr "Ничего не импортировано"
 
814
 
815
- #: redirection.php:266
816
- msgid "Your logs have been deleted"
817
- msgstr "Ваши журналы были удалены"
 
 
 
818
 
819
- #: redirection.php:289
820
- msgid "Your group was added successfully"
821
- msgstr "Ваша группа успешно добавлена"
822
 
823
- #: redirection.php:293
824
- msgid "Please specify a group name"
825
- msgstr "Пожалуйста, определите имя группы"
826
 
827
- #: redirection.php:330
828
- msgid "Redirection is available in"
829
- msgstr "Перенаправления доступны в"
830
 
831
- #: matches/url.php:25
832
- msgid "URL only"
833
- msgstr "Только URL"
834
 
835
- #: matches/url.php:40
836
- #: matches/user_agent.php:55
837
- #: matches/referrer.php:47
838
- msgid "HTTP Code"
839
- msgstr "Код HTTP"
840
 
841
- #: matches/login.php:25
842
- msgid "URL and login status"
843
- msgstr "URL и статус входа"
844
 
845
- #: matches/login.php:33
846
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
847
- msgstr "Будет выбран один из следующих URL-адресов в зависимости от того, войдет пользователь в систему или нет. Если оставить поле пустым - пользователь перенаправляться не будет."
848
 
849
- #: matches/login.php:39
850
- #: matches/login.php:41
851
- msgid "Logged In"
852
- msgstr "Залогинен"
853
 
854
- #: matches/login.php:51
855
- #: matches/login.php:53
856
- msgid "Logged Out"
857
- msgstr "Разлогинен"
858
 
859
- #: matches/user_agent.php:27
860
- msgid "URL and user agent"
861
- msgstr "URL и User-Agent"
862
 
863
- #: matches/user_agent.php:32
864
- msgid "FeedBurner"
865
- msgstr "FeedBurner"
866
 
867
- #: matches/user_agent.php:33
868
- msgid "Internet Explorer"
869
- msgstr "Internet Explorer"
870
 
871
- #: matches/user_agent.php:34
872
- msgid "FireFox"
873
- msgstr "FireFox"
874
 
875
- #: matches/user_agent.php:35
 
 
 
 
876
  msgid "Opera"
877
  msgstr "Opera"
878
 
879
- #: matches/user_agent.php:36
880
- msgid "Safari"
881
- msgstr "Safari"
882
 
883
- #: matches/user_agent.php:37
884
- msgid "iPhone"
885
- msgstr "iPhone"
886
 
887
- #: matches/user_agent.php:38
888
- msgid "Nintendo Wii"
889
- msgstr "Nintendo Wii"
890
 
891
- #: matches/user_agent.php:66
892
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
893
- msgstr "Посетитель будет перенаправлен при совпадении User-Agent. Вы можете определить различные целевые URL при совпадении или не совпадении. Если оставить поле пустым, то посетитель никуда перенаправляться не будет. <strong>Все условия вводятся как регулярные выражения</strong>.\n"
894
 
895
- #: matches/user_agent.php:73
896
- #: matches/user_agent.php:75
897
- #: matches/referrer.php:63
898
- #: matches/referrer.php:65
899
- msgid "Matched"
900
- msgstr "Совпадают"
 
901
 
902
- #: matches/user_agent.php:83
903
- #: matches/user_agent.php:85
904
- #: matches/referrer.php:73
905
- #: matches/referrer.php:75
906
  msgid "Not matched"
907
  msgstr "Не совпадают"
908
 
909
- #: matches/referrer.php:28
910
- msgid "URL and referrer"
911
- msgstr "URL и реферер"
 
912
 
913
- #: matches/referrer.php:57
914
  msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
915
  msgstr "Посетитель будет перенапрвлен на URL источника при совпадении реферера. Вы можете определить различные целевые URL при совпадении и не совпадении. Если оставить поле пустым, посетитель никуда перенаправляться не будет."
916
 
917
- #. Plugin URI of the plugin/theme
918
- msgid "http://urbangiraffe.com/plugins/redirection/"
919
- msgstr "http://urbangiraffe.com/plugins/redirection/"
920
-
921
- #. Description of the plugin/theme
922
- msgid "Manage all your 301 redirects and monitor 404 errors"
923
- msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
924
-
925
- #. Author of the plugin/theme
926
- msgid "John Godley"
927
- msgstr "Джон Годли"
928
-
929
- #. Author URI of the plugin/theme
930
- msgid "http://urbangiraffe.com"
931
- msgstr "http://urbangiraffe.com"
932
-
933
- #~ msgid " for external site: <code>%s</code>"
934
- #~ msgstr " для внешнего сайта: <code>%s</code>"
935
-
936
- #~ msgid "1 minute"
937
- #~ msgstr "1 минута"
938
-
939
- #~ msgid "2 minutes"
940
- #~ msgstr "2 минуты"
941
-
942
- #~ msgid "30 seconds"
943
- #~ msgstr "30 секунд"
944
-
945
- #~ msgid "5 minutes"
946
- #~ msgstr "5 минут"
947
-
948
- #~ msgid "As long as possible"
949
- #~ msgstr "Как можно дольше"
950
-
951
- #~ msgid "Export to CSV"
952
- #~ msgstr "Экспорт в CSV"
953
-
954
- #~ msgid ""
955
- #~ "Please read the documentation and FAQ, and check the bug tracker, before "
956
- #~ "asking a question."
957
- #~ msgstr ""
958
- #~ "Пожалуйста, прочтите документацию и FAQ, а также проверьте ошибку на "
959
- #~ "трекере, прежде чем задать вопрос."
960
-
961
- #~ msgid "Redirection Bug Tracker"
962
- #~ msgstr "Сообщить об ошибках"
963
-
964
- #~ msgid "Redirection Documentation"
965
- #~ msgstr "Документация по плагину"
966
 
967
- #~ msgid "Redirection FAQ"
968
- #~ msgstr "Часто задаваемые вопросы (FAQ)"
 
969
 
970
- #~ msgid "Redirection Help"
971
- #~ msgstr "Помощь"
 
 
972
 
973
- #~ msgid "Redirection Support Forum"
974
- #~ msgstr "Форум поддержки"
 
975
 
976
- #~ msgid "Strip index files (html,php,asp)"
977
- #~ msgstr "Удалить файлы index (html,php,asp)"
 
978
 
979
- #~ msgid "Time Limit"
980
- #~ msgstr "Лимит времени"
 
981
 
982
- #~ msgid "time limit at %ss"
983
- #~ msgstr "лимит времени %ss"
 
984
 
985
- #~ msgid "time limit set as long as possible"
986
- #~ msgstr "лимит времени установлен на максимально возможный"
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Russian
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: 2016-08-24 17:24:44+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: ru\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
 
 
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
 
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
 
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
 
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
 
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
 
 
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+ msgstr[2] ""
108
 
109
+ #: redirection-strings.php:119
110
+ msgid "Select All"
111
+ msgstr ""
 
 
112
 
113
+ #: redirection-strings.php:131
114
+ msgid "Sorry but something went wrong loading the data - please try again"
115
+ msgstr ""
116
 
117
+ #: redirection-strings.php:130
118
+ msgid "No results"
119
+ msgstr ""
120
 
121
+ #: redirection-strings.php:26
122
+ msgid "Delete the logs - are you sure?"
123
+ msgstr ""
 
 
 
124
 
125
+ #: redirection-strings.php:25
126
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
127
+ msgstr ""
 
128
 
129
+ #: redirection-strings.php:24
130
+ msgid "Yes! Delete the logs"
131
+ msgstr ""
132
 
133
+ #: redirection-strings.php:23
134
+ msgid "No! Don't delete the logs"
135
+ msgstr ""
136
 
137
+ #: redirection-admin.php:328
138
+ msgid "Redirection 404"
139
+ msgstr ""
140
 
141
+ #: redirection-strings.php:116
142
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
143
+ msgstr ""
144
 
145
+ #: redirection-strings.php:115 redirection-strings.php:117
146
+ msgid "Newsletter"
147
+ msgstr ""
148
 
149
+ #: redirection-strings.php:114
150
+ msgid "Want to keep up to date with changes to Redirection?"
151
+ msgstr ""
152
 
153
+ #: redirection-strings.php:113
154
+ 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."
155
+ msgstr ""
156
 
157
+ #: redirection-strings.php:112
158
+ msgid "Your email address:"
159
+ msgstr ""
 
160
 
161
+ #: redirection-strings.php:111
162
+ msgid "I deleted a redirection, why is it still redirecting?"
163
+ msgstr ""
164
 
165
+ #: redirection-strings.php:110
166
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
167
+ msgstr ""
168
 
169
+ #: redirection-strings.php:109
170
+ msgid "Can I open a redirect in a new tab?"
171
+ msgstr ""
172
 
173
+ #: redirection-strings.php:108
174
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
175
+ msgstr ""
176
 
177
+ #: redirection-strings.php:107
178
+ msgid "Something isn't working!"
179
+ msgstr ""
180
 
181
+ #: redirection-strings.php:106
182
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
183
+ msgstr ""
184
 
185
+ #: redirection-strings.php:105
186
+ msgid "Frequently Asked Questions"
187
+ msgstr ""
 
188
 
189
+ #: redirection-strings.php:104
190
+ msgid "Need some help? Maybe one of these questions will provide an answer"
191
+ msgstr ""
 
192
 
193
+ #: redirection-strings.php:103
194
+ msgid "You've already supported this plugin - thank you!"
195
+ msgstr ""
196
 
197
+ #: redirection-strings.php:102
198
+ msgid "I'd like to donate some more"
199
+ msgstr ""
200
 
201
+ #: redirection-strings.php:100
202
+ msgid "You get some useful software and I get to carry on making it better."
203
+ msgstr ""
204
 
205
+ #: redirection-strings.php:99
206
+ msgid "Please note I do not provide support and this is just a donation."
207
+ msgstr ""
 
208
 
209
+ #: redirection-strings.php:98
210
+ msgid "Yes I'd like to donate"
211
+ msgstr ""
 
 
212
 
213
+ #: redirection-strings.php:97
214
+ msgid "Thank you for making a donation!"
215
+ msgstr ""
 
 
216
 
217
+ #: redirection-strings.php:91
218
+ msgid "Forever"
219
+ msgstr ""
220
 
221
+ #: redirection-strings.php:88
222
+ msgid "Failed to save data"
223
+ msgstr ""
224
 
225
+ #: redirection-strings.php:75
226
+ msgid "Failed to load data"
227
+ msgstr ""
228
 
229
+ #: redirection-strings.php:71
230
+ msgid "CSV Format"
231
+ msgstr ""
232
 
233
+ #: redirection-strings.php:70
234
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
235
+ msgstr ""
236
 
237
+ #: redirection-strings.php:67
238
+ msgid "Delete the plugin - are you sure?"
239
+ msgstr ""
 
240
 
241
+ #: redirection-strings.php:66
242
+ 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."
243
+ msgstr ""
244
 
245
+ #: redirection-strings.php:65
246
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
247
+ msgstr ""
248
 
249
+ #: redirection-strings.php:64
250
+ msgid "Yes! Delete the plugin"
251
+ msgstr ""
252
 
253
+ #: redirection-strings.php:63
254
+ msgid "No! Don't delete the plugin"
255
+ msgstr ""
256
 
257
+ #: view/item-edit.php:35
258
+ msgid "Advanced Settings"
259
+ msgstr "Расширенные параметры"
260
 
261
+ #. Author URI of the plugin/theme
262
+ msgid "http://urbangiraffe.com"
263
+ msgstr "http://urbangiraffe.com"
264
 
265
+ #. Author of the plugin/theme
266
+ msgid "John Godley"
267
+ msgstr "Джон Годли"
268
 
269
+ #. Description of the plugin/theme
270
+ msgid "Manage all your 301 redirects and monitor 404 errors"
271
+ msgstr "Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"
272
 
273
+ #. Plugin URI of the plugin/theme
274
+ msgid "http://urbangiraffe.com/plugins/redirection/"
275
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
276
 
277
+ #: redirection-strings.php:101
278
+ 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}}."
279
+ msgstr ""
280
 
281
+ #: view/support.php:3
282
  msgid "Redirection Support"
283
  msgstr "Поддержка"
284
 
285
+ #: view/submenu.php:47
286
+ msgid "Support"
287
+ msgstr "Поддержка"
288
 
289
+ #: view/submenu.php:34
290
+ msgid "404s"
291
+ msgstr "404 ошибки"
292
 
293
+ #: view/submenu.php:32
294
+ msgid "404s from %s"
295
+ msgstr "ошибки 404 от %s"
296
 
297
+ #: view/submenu.php:23
298
+ msgid "Log"
299
+ msgstr "Журнал"
300
+
301
+ #: redirection-strings.php:69
302
+ msgid "Delete Redirection"
303
+ msgstr "Удалить плагин"
304
 
305
+ #: redirection-strings.php:72
306
+ msgid "Upload"
307
+ msgstr "Загрузить"
308
 
309
+ #: redirection-strings.php:73
310
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
311
+ msgstr ""
312
 
313
+ #: redirection-strings.php:74
314
+ msgid "Import"
315
+ msgstr "Импорт"
316
 
317
+ #: redirection-strings.php:76
318
+ msgid "Update"
319
+ msgstr "Обновить"
320
 
321
+ #: redirection-strings.php:77
322
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
323
+ msgstr ""
324
 
325
+ #: redirection-strings.php:78
326
  msgid "Auto-generate URL"
327
  msgstr "Автоматическая генерация URL"
328
 
329
+ #: redirection-strings.php:79
330
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
331
+ msgstr "Уникальный токен разрешающий RSS-ридерам доступ к RSS журналу перенаправлений (оставьте пустым для автогенерации)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
 
333
+ #: redirection-strings.php:80
 
 
 
 
 
 
 
 
334
  msgid "RSS Token"
335
  msgstr "Токен RSS"
336
 
337
+ #: redirection-strings.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Don't monitor"
339
  msgstr "Не отслеживать"
340
 
341
+ #: redirection-strings.php:81
342
+ msgid "Monitor changes to posts"
343
+ msgstr "Наблюдать за изменениями в записях"
344
 
345
+ #: redirection-strings.php:83
346
+ msgid "404 Logs"
347
+ msgstr "Журналы 404"
348
 
349
+ #: redirection-strings.php:82 redirection-strings.php:84
350
+ msgid "(time to keep logs for)"
351
+ msgstr "(время хранения журналов)"
352
 
353
+ #: redirection-strings.php:85
354
+ msgid "Redirect Logs"
355
+ msgstr "Журналы перенаправлений"
356
 
357
+ #: redirection-strings.php:86
358
+ msgid "I'm a nice person and I have helped support the author of this plugin"
359
+ msgstr "Я - хороший человек и я поддержал автора данного плагина"
360
 
361
+ #: redirection-strings.php:87
362
+ msgid "Plugin support"
363
+ msgstr ""
364
 
365
+ #: view/options.php:4 view/submenu.php:42
366
+ msgid "Options"
367
+ msgstr "Настройки"
368
 
369
+ #: redirection-strings.php:92
370
+ msgid "Two months"
371
+ msgstr "Два месяца"
372
 
373
+ #: redirection-strings.php:93
374
+ msgid "A month"
375
+ msgstr "Месяц"
376
 
377
+ #: redirection-strings.php:94
378
+ msgid "A week"
379
+ msgstr "Неделя"
380
 
381
+ #: redirection-strings.php:95
382
+ msgid "A day"
383
+ msgstr "День"
384
 
385
+ #: redirection-strings.php:96
386
+ msgid "No logs"
387
+ msgstr "Экспорт в CSV"
388
 
389
+ #: view/module-list.php:3 view/submenu.php:16
390
+ msgid "Modules"
391
+ msgstr "Модули"
392
 
393
+ #: redirection-strings.php:28
394
+ msgid "Export to CSV"
395
+ msgstr ""
396
 
397
+ #: redirection-strings.php:27
398
+ msgid "Delete All"
399
+ msgstr "Удалить все"
400
 
401
+ #: redirection-admin.php:322
402
+ msgid "Redirection Log"
403
+ msgstr "Журнал перенаправлений"
 
404
 
405
+ #: view/item-edit.php:14
406
+ msgid "optional"
407
+ msgstr "не обязательно"
408
 
409
+ #: view/item-edit.php:11
410
+ msgid "Description"
411
+ msgstr "Описание"
412
 
413
+ #: redirection-strings.php:5
414
+ 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."
415
+ msgstr "Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress"
416
 
417
+ #: redirection-strings.php:6
418
+ msgid "Add Group"
419
+ msgstr "Добавить группу"
420
 
421
+ #: redirection-strings.php:132 view/item-list.php:10
422
+ msgid "Search"
423
+ msgstr "Поиск"
 
424
 
425
+ #: view/group-list.php:3 view/submenu.php:11
426
+ msgid "Groups"
427
+ msgstr "Группы"
428
 
429
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
430
+ msgid "Save"
431
+ msgstr "Сохранить"
432
 
433
+ #: view/add.php:46
434
+ msgid "Add Redirection"
435
+ msgstr "Добавить перенаправление"
436
 
437
+ #: view/add.php:36 view/item-edit.php:18
438
+ msgid "Group"
439
+ msgstr "Группа"
440
 
441
+ #: view/add.php:28
442
+ msgid "Regular expression"
443
+ msgstr "Регулярное выражение"
444
 
445
+ #: view/add.php:23
446
+ msgid "Action"
447
+ msgstr "Действие"
 
448
 
449
+ #: view/add.php:17
450
+ msgid "Match"
451
+ msgstr "Совпадение"
452
 
453
+ #: view/add.php:7
454
+ msgid "Your redirection has been added."
455
+ msgstr "Ваше правило перенаправления добавлено."
456
 
457
+ #: view/add.php:4
458
+ msgid "Add new redirection"
459
+ msgstr "Добавить новое перенаправление"
460
 
461
+ #: redirection-strings.php:14 redirection-strings.php:44
462
+ #: redirection-strings.php:54 view/item-edit.php:33
463
+ msgid "Cancel"
464
+ msgstr "Отмена"
465
 
466
+ #: redirection-strings.php:55
467
+ msgid "Download"
468
+ msgstr "Скачать"
469
 
470
+ #: redirection-admin.php:407
471
+ msgid "Sorry, but your redirection was not created"
472
+ msgstr "Извините, перенаправление не было создано"
473
 
474
+ #: redirection-admin.php:344 redirection-admin.php:365
475
+ #: redirection-admin.php:387
476
+ msgid "Unable to perform action"
477
+ msgstr "Невозможно совершить действие"
478
 
479
+ #: redirection-admin.php:311
480
+ msgid "No items were imported"
481
+ msgstr "Ничего не импортировано"
482
 
483
+ #: redirection-admin.php:309
484
+ msgid "%d redirection was successfully imported"
485
+ msgid_plural "%d redirections were successfully imported"
486
+ msgstr[0] "%d перенаправление было успешно импортировано"
487
+ msgstr[1] "%d перенаправления были успешно импортированы"
488
+ msgstr[2] ""
489
 
490
+ #: redirection-strings.php:89
491
+ msgid "Your options were updated"
492
+ msgstr "Ваши настройки были обновлены"
493
 
494
+ #. Plugin Name of the plugin/theme
495
+ msgid "Redirection"
496
+ msgstr "Перенаправления"
497
 
498
+ #: redirection-admin.php:165
499
+ msgid "Settings"
500
+ msgstr "Настройки"
501
 
502
+ #: redirection-strings.php:62
503
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
504
+ msgstr "Редирект через WordPress. Дополнительная конфигурация не требуется и можно отслеживать количество переходов"
505
 
506
+ #: redirection-strings.php:60
507
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
508
+ msgstr "Используется с вебсервером NGINX, требуется ручная конфигурация. Редирект происходит без загрузки WordPress. Количество переходов не отслеживается. Это экспериментальный модуль"
509
 
510
+ #: redirection-strings.php:61
511
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
512
+ msgstr ""
513
 
514
+ #: redirection-strings.php:46
515
+ msgid "Automatically remove or add www to your site."
516
+ msgstr "Автоматически удалять или добавлять WWW к вашему сайту"
517
 
518
+ #: redirection-strings.php:49
519
+ msgid "Default server"
520
+ msgstr "Сервер по умолчанию"
521
 
522
+ #: redirection-strings.php:50
523
+ msgid "Canonical URL"
524
+ msgstr "Канонические URL"
525
 
526
+ #: redirection-strings.php:51
527
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
528
+ msgstr ""
529
 
530
+ #: redirection-strings.php:52
531
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
532
+ msgstr ""
533
 
534
+ #: redirection-strings.php:53
535
+ msgid ".htaccess Location"
536
+ msgstr "Расположение .htaccess"
537
 
538
+ #: models/redirect.php:382
539
+ msgid "Do nothing"
540
+ msgstr "Ничего не делать"
541
 
542
+ #: models/redirect.php:381
543
  msgid "Error (404)"
544
  msgstr "Ошибка 404"
545
 
546
+ #: models/redirect.php:380
547
+ msgid "Pass-through"
548
+ msgstr "Транзит (pass-through)"
549
 
550
+ #: models/redirect.php:379
551
+ msgid "Redirect to random post"
552
+ msgstr "Перенаправить на случайную запись"
 
553
 
554
+ #: models/redirect.php:378
555
+ msgid "Redirect to URL"
556
+ msgstr "Перенаправить на URL"
557
 
558
+ #: models/redirect.php:216
559
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
560
+ msgstr "Непозвожно добавить новое перенаправление, удалите Redirection из страницы настроек и переустановите"
561
 
562
+ #: models/redirect.php:178
563
+ msgid "Invalid source URL when creating redirect for given match type"
564
+ msgstr "Неверный исходный URL при создании перенаправления для заданного типа"
565
 
566
+ #: models/redirect.php:174
567
+ msgid "Invalid group when creating redirect"
568
+ msgstr "Неверная группа при создании перенаправления"
569
 
570
+ #: models/redirect.php:166
571
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
572
+ msgstr "Можно перенаправлять только с относительного URL (<code>%s</code>) для этого домена (<code>%s</code>)."
573
 
574
+ #: models/redirect.php:160
575
+ msgid "Source and target URL must be different"
576
+ msgstr "Исходный и целевой URL должны отличаться"
577
 
578
+ #: redirection-strings.php:59
579
+ msgid "Configure"
580
+ msgstr "Настроить"
581
 
582
+ #: redirection-strings.php:34 redirection-strings.php:41
583
+ msgid "Show only this IP"
584
+ msgstr "Показать только этот IP"
585
 
586
+ #: redirection-strings.php:30 redirection-strings.php:37
587
+ msgid "IP"
588
+ msgstr "IP"
 
 
 
 
589
 
590
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
591
+ #: view/item-edit.php:4
592
+ msgid "Source URL"
593
+ msgstr "URL источника"
594
 
595
+ #: redirection-strings.php:33 redirection-strings.php:40
596
+ msgid "Date"
597
+ msgstr "Дата"
598
 
599
+ #: redirection-strings.php:42
600
+ msgid "Add Redirect"
601
+ msgstr ""
602
 
603
+ #: redirection-strings.php:7
604
+ msgid "All modules"
605
+ msgstr "Все модули"
606
 
607
+ #: redirection-strings.php:20
608
+ msgid "View Redirects"
609
+ msgstr "Посмотреть перенаправления"
610
 
611
+ #: redirection-strings.php:11 redirection-strings.php:16
612
+ #: redirection-strings.php:58
613
+ msgid "Module"
614
+ msgstr "Модуль"
615
 
616
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
617
+ msgid "Redirects"
 
 
618
  msgstr "Перенаправления"
619
 
620
+ #: redirection-strings.php:4 redirection-strings.php:13
621
+ #: redirection-strings.php:17
622
+ msgid "Name"
623
+ msgstr "Название"
624
 
625
+ #: models/pager.php:164 redirection-strings.php:118
626
+ msgid "Filter"
627
+ msgstr "Фильтр"
628
 
629
+ #: models/pager.php:151
630
+ msgid "No group filter"
631
+ msgstr "Без группового фильтра"
632
 
633
+ #: models/pager.php:104
634
+ msgid "Reset Hits"
635
+ msgstr "Обнулить счетчик"
636
 
637
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
638
+ #: redirection-strings.php:18
639
+ msgid "Enable"
640
+ msgstr "Включено"
 
641
 
642
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
643
+ #: redirection-strings.php:19
644
+ msgid "Disable"
645
+ msgstr "Отключено"
646
 
647
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
648
+ #: redirection-strings.php:21 redirection-strings.php:29
649
+ #: redirection-strings.php:35 redirection-strings.php:36
650
+ #: redirection-strings.php:43 redirection-strings.php:68
651
+ msgid "Delete"
652
+ msgstr "Удалить"
653
 
654
+ #: models/pager.php:53 redirection-strings.php:22
655
+ msgid "Edit"
656
+ msgstr "Изменить"
657
 
658
+ #: models/pager.php:31
659
+ msgid "Last Access"
660
+ msgstr "Последний"
661
 
662
+ #: models/pager.php:30
663
+ msgid "Hits"
664
+ msgstr "Счетчик"
665
 
666
+ #: models/pager.php:29
667
+ msgid "URL"
668
+ msgstr "URL"
669
 
670
+ #: models/pager.php:28
671
+ msgid "Type"
672
+ msgstr "Тип"
 
 
673
 
674
+ #: models/database.php:121
675
+ msgid "Modified Posts"
676
+ msgstr "Измененные записи"
677
 
678
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
679
+ msgid "Redirections"
680
+ msgstr "Перенаправления"
681
 
682
+ #: matches/user-agent.php:51
683
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
684
+ msgstr "Посетитель будет перенаправлен при совпадении User-Agent. Вы можете определить различные целевые URL при совпадении или не совпадении. Если оставить поле пустым, то посетитель никуда перенаправляться не будет. <strong>Все условия вводятся как регулярные выражения</strong>.\n"
 
685
 
686
+ #: matches/user-agent.php:25
687
+ msgid "User Agent"
688
+ msgstr "User-Agent"
 
689
 
690
+ #: matches/user-agent.php:20
691
+ msgid "Nintendo Wii"
692
+ msgstr "Nintendo Wii"
693
 
694
+ #: matches/user-agent.php:19
695
+ msgid "Android"
696
+ msgstr "Android"
697
 
698
+ #: matches/user-agent.php:18
699
+ msgid "iPad"
700
+ msgstr "iPad"
701
 
702
+ #: matches/user-agent.php:17
703
+ msgid "iPhone"
704
+ msgstr "iPhone"
705
 
706
+ #: matches/user-agent.php:16
707
+ msgid "Safari"
708
+ msgstr "Safari"
709
+
710
+ #: matches/user-agent.php:15
711
  msgid "Opera"
712
  msgstr "Opera"
713
 
714
+ #: matches/user-agent.php:14
715
+ msgid "FireFox"
716
+ msgstr "FireFox"
717
 
718
+ #: matches/user-agent.php:13
719
+ msgid "Internet Explorer"
720
+ msgstr "Internet Explorer"
721
 
722
+ #: matches/user-agent.php:12
723
+ msgid "FeedBurner"
724
+ msgstr "FeedBurner"
725
 
726
+ #: matches/user-agent.php:7
727
+ msgid "URL and user agent"
728
+ msgstr "URL и User-Agent"
729
 
730
+ #: matches/url.php:12 view/add.php:32
731
+ msgid "Target URL"
732
+ msgstr "URL назначения"
733
+
734
+ #: matches/url.php:5
735
+ msgid "URL only"
736
+ msgstr "Только URL"
737
 
738
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
739
+ #: matches/user-agent.php:70
 
 
740
  msgid "Not matched"
741
  msgstr "Не совпадают"
742
 
743
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
744
+ #: matches/user-agent.php:60
745
+ msgid "Matched"
746
+ msgstr "Совпадают"
747
 
748
+ #: matches/referrer.php:40
749
  msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
750
  msgstr "Посетитель будет перенапрвлен на URL источника при совпадении реферера. Вы можете определить различные целевые URL при совпадении и не совпадении. Если оставить поле пустым, посетитель никуда перенаправляться не будет."
751
 
752
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
753
+ #: matches/user-agent.php:38
754
+ msgid "HTTP Code"
755
+ msgstr "Код HTTP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756
 
757
+ #: matches/referrer.php:24 view/item-edit.php:7
758
+ msgid "Regex"
759
+ msgstr "Регулярное выражение"
760
 
761
+ #: matches/referrer.php:21 redirection-strings.php:31
762
+ #: redirection-strings.php:38
763
+ msgid "Referrer"
764
+ msgstr "Реферер"
765
 
766
+ #: matches/referrer.php:8
767
+ msgid "URL and referrer"
768
+ msgstr "URL и реферер"
769
 
770
+ #: matches/login.php:35 matches/login.php:37
771
+ msgid "Logged Out"
772
+ msgstr "Разлогинен"
773
 
774
+ #: matches/login.php:23 matches/login.php:25
775
+ msgid "Logged In"
776
+ msgstr "Залогинен"
777
 
778
+ #: matches/login.php:16
779
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
780
+ msgstr "Будет выбран один из следующих URL-адресов в зависимости от того, войдет пользователь в систему или нет. Если оставить поле пустым - пользователь перенаправляться не будет."
781
 
782
+ #: matches/login.php:7
783
+ msgid "URL and login status"
784
+ msgstr "URL и статус входа"
locale/redirection-sk_SK.mo ADDED
Binary file
locale/redirection-sk_SK.po ADDED
@@ -0,0 +1,786 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Slovak
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: 2016-06-15 09:49:02+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: sk\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
+
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
+
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
+
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
+
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
29
+
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
+
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
+
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
+
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
+
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
+
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
+
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
+
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
+
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
+
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
+
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
+
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
+
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
+
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
+
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
+
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
+
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
+
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
+
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
+ msgstr[2] ""
108
+
109
+ #: redirection-strings.php:119
110
+ msgid "Select All"
111
+ msgstr ""
112
+
113
+ #: redirection-strings.php:131
114
+ msgid "Sorry but something went wrong loading the data - please try again"
115
+ msgstr ""
116
+
117
+ #: redirection-strings.php:130
118
+ msgid "No results"
119
+ msgstr ""
120
+
121
+ #: redirection-strings.php:26
122
+ msgid "Delete the logs - are you sure?"
123
+ msgstr ""
124
+
125
+ #: redirection-strings.php:25
126
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
127
+ msgstr ""
128
+
129
+ #: redirection-strings.php:24
130
+ msgid "Yes! Delete the logs"
131
+ msgstr ""
132
+
133
+ #: redirection-strings.php:23
134
+ msgid "No! Don't delete the logs"
135
+ msgstr ""
136
+
137
+ #: redirection-admin.php:328
138
+ msgid "Redirection 404"
139
+ msgstr ""
140
+
141
+ #: redirection-strings.php:116
142
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
143
+ msgstr ""
144
+
145
+ #: redirection-strings.php:115 redirection-strings.php:117
146
+ msgid "Newsletter"
147
+ msgstr ""
148
+
149
+ #: redirection-strings.php:114
150
+ msgid "Want to keep up to date with changes to Redirection?"
151
+ msgstr ""
152
+
153
+ #: redirection-strings.php:113
154
+ 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."
155
+ msgstr ""
156
+
157
+ #: redirection-strings.php:112
158
+ msgid "Your email address:"
159
+ msgstr ""
160
+
161
+ #: redirection-strings.php:111
162
+ msgid "I deleted a redirection, why is it still redirecting?"
163
+ msgstr ""
164
+
165
+ #: redirection-strings.php:110
166
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
167
+ msgstr ""
168
+
169
+ #: redirection-strings.php:109
170
+ msgid "Can I open a redirect in a new tab?"
171
+ msgstr ""
172
+
173
+ #: redirection-strings.php:108
174
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
175
+ msgstr ""
176
+
177
+ #: redirection-strings.php:107
178
+ msgid "Something isn't working!"
179
+ msgstr ""
180
+
181
+ #: redirection-strings.php:106
182
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
183
+ msgstr ""
184
+
185
+ #: redirection-strings.php:105
186
+ msgid "Frequently Asked Questions"
187
+ msgstr ""
188
+
189
+ #: redirection-strings.php:104
190
+ msgid "Need some help? Maybe one of these questions will provide an answer"
191
+ msgstr ""
192
+
193
+ #: redirection-strings.php:103
194
+ msgid "You've already supported this plugin - thank you!"
195
+ msgstr ""
196
+
197
+ #: redirection-strings.php:102
198
+ msgid "I'd like to donate some more"
199
+ msgstr ""
200
+
201
+ #: redirection-strings.php:100
202
+ msgid "You get some useful software and I get to carry on making it better."
203
+ msgstr ""
204
+
205
+ #: redirection-strings.php:99
206
+ msgid "Please note I do not provide support and this is just a donation."
207
+ msgstr ""
208
+
209
+ #: redirection-strings.php:98
210
+ msgid "Yes I'd like to donate"
211
+ msgstr ""
212
+
213
+ #: redirection-strings.php:97
214
+ msgid "Thank you for making a donation!"
215
+ msgstr ""
216
+
217
+ #: redirection-strings.php:91
218
+ msgid "Forever"
219
+ msgstr ""
220
+
221
+ #: redirection-strings.php:88
222
+ msgid "Failed to save data"
223
+ msgstr ""
224
+
225
+ #: redirection-strings.php:75
226
+ msgid "Failed to load data"
227
+ msgstr ""
228
+
229
+ #: redirection-strings.php:71
230
+ msgid "CSV Format"
231
+ msgstr ""
232
+
233
+ #: redirection-strings.php:70
234
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
235
+ msgstr ""
236
+
237
+ #: redirection-strings.php:67
238
+ msgid "Delete the plugin - are you sure?"
239
+ msgstr ""
240
+
241
+ #: redirection-strings.php:66
242
+ 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."
243
+ msgstr ""
244
+
245
+ #: redirection-strings.php:65
246
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
247
+ msgstr ""
248
+
249
+ #: redirection-strings.php:64
250
+ msgid "Yes! Delete the plugin"
251
+ msgstr ""
252
+
253
+ #: redirection-strings.php:63
254
+ msgid "No! Don't delete the plugin"
255
+ msgstr ""
256
+
257
+ #: view/item-edit.php:35
258
+ msgid "Advanced Settings"
259
+ msgstr "Rozšírené nastavenia"
260
+
261
+ #. Author URI of the plugin/theme
262
+ msgid "http://urbangiraffe.com"
263
+ msgstr "http://urbangiraffe.com"
264
+
265
+ #. Author of the plugin/theme
266
+ msgid "John Godley"
267
+ msgstr "John Godley"
268
+
269
+ #. Description of the plugin/theme
270
+ msgid "Manage all your 301 redirects and monitor 404 errors"
271
+ msgstr "Spravujte všetky vaše 301 presmerovania a monitorujte 404 chyby"
272
+
273
+ #. Plugin URI of the plugin/theme
274
+ msgid "http://urbangiraffe.com/plugins/redirection/"
275
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
276
+
277
+ #: redirection-strings.php:101
278
+ 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}}."
279
+ msgstr ""
280
+
281
+ #: view/support.php:3
282
+ msgid "Redirection Support"
283
+ msgstr ""
284
+
285
+ #: view/submenu.php:47
286
+ msgid "Support"
287
+ msgstr "Podpora"
288
+
289
+ #: view/submenu.php:34
290
+ msgid "404s"
291
+ msgstr "404"
292
+
293
+ #: view/submenu.php:32
294
+ msgid "404s from %s"
295
+ msgstr "404 z %s"
296
+
297
+ #: view/submenu.php:23
298
+ msgid "Log"
299
+ msgstr "Záznam"
300
+
301
+ #: redirection-strings.php:69
302
+ msgid "Delete Redirection"
303
+ msgstr "Vymazať presmerovanie"
304
+
305
+ #: redirection-strings.php:72
306
+ msgid "Upload"
307
+ msgstr "Nahrať"
308
+
309
+ #: redirection-strings.php:73
310
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
311
+ msgstr ""
312
+
313
+ #: redirection-strings.php:74
314
+ msgid "Import"
315
+ msgstr "Import"
316
+
317
+ #: redirection-strings.php:76
318
+ msgid "Update"
319
+ msgstr "Aktualizovať"
320
+
321
+ #: redirection-strings.php:77
322
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
323
+ msgstr ""
324
+
325
+ #: redirection-strings.php:78
326
+ msgid "Auto-generate URL"
327
+ msgstr "Automatické generovanie URL"
328
+
329
+ #: redirection-strings.php:79
330
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
331
+ msgstr ""
332
+
333
+ #: redirection-strings.php:80
334
+ msgid "RSS Token"
335
+ msgstr "RSS Token"
336
+
337
+ #: redirection-strings.php:90
338
+ msgid "Don't monitor"
339
+ msgstr "Nesledovať"
340
+
341
+ #: redirection-strings.php:81
342
+ msgid "Monitor changes to posts"
343
+ msgstr "Sledovať zmeny v článkoch"
344
+
345
+ #: redirection-strings.php:83
346
+ msgid "404 Logs"
347
+ msgstr "Zaznamenávanie 404"
348
+
349
+ #: redirection-strings.php:82 redirection-strings.php:84
350
+ msgid "(time to keep logs for)"
351
+ msgstr "(ako dlho uchovávať záznamy)"
352
+
353
+ #: redirection-strings.php:85
354
+ msgid "Redirect Logs"
355
+ msgstr "Zaznamenávanie presmerovaní"
356
+
357
+ #: redirection-strings.php:86
358
+ msgid "I'm a nice person and I have helped support the author of this plugin"
359
+ msgstr "Som dobrý človek a podporil som autora tohto modulu"
360
+
361
+ #: redirection-strings.php:87
362
+ msgid "Plugin support"
363
+ msgstr ""
364
+
365
+ #: view/options.php:4 view/submenu.php:42
366
+ msgid "Options"
367
+ msgstr "Možnosti"
368
+
369
+ #: redirection-strings.php:92
370
+ msgid "Two months"
371
+ msgstr "Dva mesiace"
372
+
373
+ #: redirection-strings.php:93
374
+ msgid "A month"
375
+ msgstr "Mesiac"
376
+
377
+ #: redirection-strings.php:94
378
+ msgid "A week"
379
+ msgstr "Týždeň"
380
+
381
+ #: redirection-strings.php:95
382
+ msgid "A day"
383
+ msgstr "Deň"
384
+
385
+ #: redirection-strings.php:96
386
+ msgid "No logs"
387
+ msgstr "Žiadne zaznamenávanie"
388
+
389
+ #: view/module-list.php:3 view/submenu.php:16
390
+ msgid "Modules"
391
+ msgstr "Moduly"
392
+
393
+ #: redirection-strings.php:28
394
+ msgid "Export to CSV"
395
+ msgstr ""
396
+
397
+ #: redirection-strings.php:27
398
+ msgid "Delete All"
399
+ msgstr "Vymazať všetko"
400
+
401
+ #: redirection-admin.php:322
402
+ msgid "Redirection Log"
403
+ msgstr "Záznamy presmerovaní"
404
+
405
+ #: view/item-edit.php:14
406
+ msgid "optional"
407
+ msgstr "voliteľné"
408
+
409
+ #: view/item-edit.php:11
410
+ msgid "Description"
411
+ msgstr "Popis"
412
+
413
+ #: redirection-strings.php:5
414
+ 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."
415
+ msgstr "Používajte skupiny na organizovanie presmerovaní. Skupiny sú priradené k modulu, ktorý určuje, ako budú presmerovania v tejto skupine fungovať. Ak si nie ste istí, držte sa WordPress modulu."
416
+
417
+ #: redirection-strings.php:6
418
+ msgid "Add Group"
419
+ msgstr "Pridať typ údaju"
420
+
421
+ #: redirection-strings.php:132 view/item-list.php:10
422
+ msgid "Search"
423
+ msgstr "Hľadať"
424
+
425
+ #: view/group-list.php:3 view/submenu.php:11
426
+ msgid "Groups"
427
+ msgstr "Skupiny"
428
+
429
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
430
+ msgid "Save"
431
+ msgstr "Uložiť"
432
+
433
+ #: view/add.php:46
434
+ msgid "Add Redirection"
435
+ msgstr "Pridať presmerovanie"
436
+
437
+ #: view/add.php:36 view/item-edit.php:18
438
+ msgid "Group"
439
+ msgstr "Skupina"
440
+
441
+ #: view/add.php:28
442
+ msgid "Regular expression"
443
+ msgstr "Regulárny výraz"
444
+
445
+ #: view/add.php:23
446
+ msgid "Action"
447
+ msgstr "Akcia"
448
+
449
+ #: view/add.php:17
450
+ msgid "Match"
451
+ msgstr "Zhoda"
452
+
453
+ #: view/add.php:7
454
+ msgid "Your redirection has been added."
455
+ msgstr "Vaše presmerovanie bolo pridané."
456
+
457
+ #: view/add.php:4
458
+ msgid "Add new redirection"
459
+ msgstr "Pridať nové presmerovanie"
460
+
461
+ #: redirection-strings.php:14 redirection-strings.php:44
462
+ #: redirection-strings.php:54 view/item-edit.php:33
463
+ msgid "Cancel"
464
+ msgstr "Zrušiť"
465
+
466
+ #: redirection-strings.php:55
467
+ msgid "Download"
468
+ msgstr "Stiahnuť"
469
+
470
+ #: redirection-admin.php:407
471
+ msgid "Sorry, but your redirection was not created"
472
+ msgstr "Prepáčte, presmerovanie nebolo vytvorené"
473
+
474
+ #: redirection-admin.php:344 redirection-admin.php:365
475
+ #: redirection-admin.php:387
476
+ msgid "Unable to perform action"
477
+ msgstr "Nie je možné vykonať akciu"
478
+
479
+ #: redirection-admin.php:311
480
+ msgid "No items were imported"
481
+ msgstr "Žiadne položky neboli importované"
482
+
483
+ #: redirection-admin.php:309
484
+ msgid "%d redirection was successfully imported"
485
+ msgid_plural "%d redirections were successfully imported"
486
+ msgstr[0] "%d presmerovanie bolo úspešne importované"
487
+ msgstr[1] "%d presmerovania boli úspešne importované"
488
+ msgstr[2] "%d presmerovaní bolo úspešne importovaných"
489
+
490
+ #: redirection-strings.php:89
491
+ msgid "Your options were updated"
492
+ msgstr "Vaše možnosti boli aktualizované"
493
+
494
+ #. Plugin Name of the plugin/theme
495
+ msgid "Redirection"
496
+ msgstr "Presmerovanie"
497
+
498
+ #: redirection-admin.php:165
499
+ msgid "Settings"
500
+ msgstr "Nastavenia"
501
+
502
+ #: redirection-strings.php:62
503
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
504
+ msgstr "Presmerovania podporované WordPress-om. Nevyžaduje žiadnu ďalšiu konfiguráciu a viete sledovať aj štatistiky."
505
+
506
+ #: redirection-strings.php:60
507
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
508
+ msgstr "Pre použitie s Nginx servermi vyžaduje manuálnu konfiguráciu. Presmerovania nastanú bez načítania WordPress-u. Nesleduje štatistiky. Toto je experimentálny modul."
509
+
510
+ #: redirection-strings.php:61
511
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
512
+ msgstr ""
513
+
514
+ #: redirection-strings.php:46
515
+ msgid "Automatically remove or add www to your site."
516
+ msgstr "Automaticky pridať alebo odstrániť www k vašej webovej stránke."
517
+
518
+ #: redirection-strings.php:49
519
+ msgid "Default server"
520
+ msgstr ""
521
+
522
+ #: redirection-strings.php:50
523
+ msgid "Canonical URL"
524
+ msgstr ""
525
+
526
+ #: redirection-strings.php:51
527
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
528
+ msgstr ""
529
+
530
+ #: redirection-strings.php:52
531
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
532
+ msgstr ""
533
+
534
+ #: redirection-strings.php:53
535
+ msgid ".htaccess Location"
536
+ msgstr ".htaccess umiestnenie"
537
+
538
+ #: models/redirect.php:382
539
+ msgid "Do nothing"
540
+ msgstr "Nerobiť nič"
541
+
542
+ #: models/redirect.php:381
543
+ msgid "Error (404)"
544
+ msgstr "Chyba (404)"
545
+
546
+ #: models/redirect.php:380
547
+ msgid "Pass-through"
548
+ msgstr ""
549
+
550
+ #: models/redirect.php:379
551
+ msgid "Redirect to random post"
552
+ msgstr "Presmerovať na náhodný článok"
553
+
554
+ #: models/redirect.php:378
555
+ msgid "Redirect to URL"
556
+ msgstr "Presmerovať na URL"
557
+
558
+ #: models/redirect.php:216
559
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
560
+ msgstr "Nemožno pridať nové presmerovanie - zmažte Presmerovanie zo stránky modulov a preinštalujte"
561
+
562
+ #: models/redirect.php:178
563
+ msgid "Invalid source URL when creating redirect for given match type"
564
+ msgstr "Neplatná zdrojová URL adresa pri vytváraní presmerovania pre daný typ zhody"
565
+
566
+ #: models/redirect.php:174
567
+ msgid "Invalid group when creating redirect"
568
+ msgstr "Neplatná skupina pri vytváraní presmerovania"
569
+
570
+ #: models/redirect.php:166
571
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
572
+ msgstr "Môžete presmerovať len z relatívnych URL adries (<code>%s</code>) na tejto dómene (<code>%s</code>)."
573
+
574
+ #: models/redirect.php:160
575
+ msgid "Source and target URL must be different"
576
+ msgstr "Zdrojová a cieľová URL musia byť odlišné"
577
+
578
+ #: redirection-strings.php:59
579
+ msgid "Configure"
580
+ msgstr "Konfigurácia"
581
+
582
+ #: redirection-strings.php:34 redirection-strings.php:41
583
+ msgid "Show only this IP"
584
+ msgstr "Ukázať len túto IP adresu"
585
+
586
+ #: redirection-strings.php:30 redirection-strings.php:37
587
+ msgid "IP"
588
+ msgstr "IP"
589
+
590
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
591
+ #: view/item-edit.php:4
592
+ msgid "Source URL"
593
+ msgstr "Zdrojová URL"
594
+
595
+ #: redirection-strings.php:33 redirection-strings.php:40
596
+ msgid "Date"
597
+ msgstr "Dátum"
598
+
599
+ #: redirection-strings.php:42
600
+ msgid "Add Redirect"
601
+ msgstr ""
602
+
603
+ #: redirection-strings.php:7
604
+ msgid "All modules"
605
+ msgstr "Všetky moduly"
606
+
607
+ #: redirection-strings.php:20
608
+ msgid "View Redirects"
609
+ msgstr "Zobraziť presmerovania"
610
+
611
+ #: redirection-strings.php:11 redirection-strings.php:16
612
+ #: redirection-strings.php:58
613
+ msgid "Module"
614
+ msgstr "Modul"
615
+
616
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
617
+ msgid "Redirects"
618
+ msgstr "Presmerovania"
619
+
620
+ #: redirection-strings.php:4 redirection-strings.php:13
621
+ #: redirection-strings.php:17
622
+ msgid "Name"
623
+ msgstr "Názov"
624
+
625
+ #: models/pager.php:164 redirection-strings.php:118
626
+ msgid "Filter"
627
+ msgstr "Filtrovať"
628
+
629
+ #: models/pager.php:151
630
+ msgid "No group filter"
631
+ msgstr "Všetky skupiny"
632
+
633
+ #: models/pager.php:104
634
+ msgid "Reset Hits"
635
+ msgstr "Resetovať štatistiky"
636
+
637
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
638
+ #: redirection-strings.php:18
639
+ msgid "Enable"
640
+ msgstr "Povoliť"
641
+
642
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
643
+ #: redirection-strings.php:19
644
+ msgid "Disable"
645
+ msgstr "Zakázať"
646
+
647
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
648
+ #: redirection-strings.php:21 redirection-strings.php:29
649
+ #: redirection-strings.php:35 redirection-strings.php:36
650
+ #: redirection-strings.php:43 redirection-strings.php:68
651
+ msgid "Delete"
652
+ msgstr "Vymazať"
653
+
654
+ #: models/pager.php:53 redirection-strings.php:22
655
+ msgid "Edit"
656
+ msgstr "Upraviť"
657
+
658
+ #: models/pager.php:31
659
+ msgid "Last Access"
660
+ msgstr "Posledný prístup"
661
+
662
+ #: models/pager.php:30
663
+ msgid "Hits"
664
+ msgstr "Štatistika"
665
+
666
+ #: models/pager.php:29
667
+ msgid "URL"
668
+ msgstr "URL"
669
+
670
+ #: models/pager.php:28
671
+ msgid "Type"
672
+ msgstr "Typ"
673
+
674
+ #: models/database.php:121
675
+ msgid "Modified Posts"
676
+ msgstr "Upravené články"
677
+
678
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
679
+ msgid "Redirections"
680
+ msgstr "Presmerovania"
681
+
682
+ #: matches/user-agent.php:51
683
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
684
+ msgstr ""
685
+ "Návštevník bude presmerovaný z URL ak sa zhoduje agent používateľa (user agent). Môžete špecifikovať <em>zhodujúcu sa</em> cieľovú URL ako adresu kam presmerovať návštevníka, ak sa agent používateľa zhoduje. A <em>nezhodujúce sa</em> ak sa nezhoduje. Ak necháte URL prázdne, návštevník nebude presmerovaný. <strong>Všetky zhody sú vyhodnocované ako regulárne výrazy</strong>.\n"
686
+ "\n"
687
+
688
+ #: matches/user-agent.php:25
689
+ msgid "User Agent"
690
+ msgstr "Agent používateľa (user agent)"
691
+
692
+ #: matches/user-agent.php:20
693
+ msgid "Nintendo Wii"
694
+ msgstr "Nintendo Wii"
695
+
696
+ #: matches/user-agent.php:19
697
+ msgid "Android"
698
+ msgstr "Android"
699
+
700
+ #: matches/user-agent.php:18
701
+ msgid "iPad"
702
+ msgstr "iPad"
703
+
704
+ #: matches/user-agent.php:17
705
+ msgid "iPhone"
706
+ msgstr "iPhone"
707
+
708
+ #: matches/user-agent.php:16
709
+ msgid "Safari"
710
+ msgstr "Safari"
711
+
712
+ #: matches/user-agent.php:15
713
+ msgid "Opera"
714
+ msgstr "Opera"
715
+
716
+ #: matches/user-agent.php:14
717
+ msgid "FireFox"
718
+ msgstr "FireFox"
719
+
720
+ #: matches/user-agent.php:13
721
+ msgid "Internet Explorer"
722
+ msgstr "Internet Explorer"
723
+
724
+ #: matches/user-agent.php:12
725
+ msgid "FeedBurner"
726
+ msgstr "FeedBurner"
727
+
728
+ #: matches/user-agent.php:7
729
+ msgid "URL and user agent"
730
+ msgstr "URL a agent používateľa (user agent)"
731
+
732
+ #: matches/url.php:12 view/add.php:32
733
+ msgid "Target URL"
734
+ msgstr "Cieľová URL"
735
+
736
+ #: matches/url.php:5
737
+ msgid "URL only"
738
+ msgstr "Len URL"
739
+
740
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
741
+ #: matches/user-agent.php:70
742
+ msgid "Not matched"
743
+ msgstr "Nezhodná"
744
+
745
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
746
+ #: matches/user-agent.php:60
747
+ msgid "Matched"
748
+ msgstr "Zhodná"
749
+
750
+ #: matches/referrer.php:40
751
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
752
+ msgstr "Návštevník bude presmerovaný zo zdrojovej URL adresy ak sa referrer zhoduje. Môžete špecifikovať <em>zhodnú</em> cieľovú URL adresu ako adresu, kam posielate návštevníkov ak sa údaje zhodujú. Alebo <em>nezhodnú</em> ak sa nezhodujú. Ponechaním prázdneho poľa URL znamená, že návštevník nie je presmerovaný."
753
+
754
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
755
+ #: matches/user-agent.php:38
756
+ msgid "HTTP Code"
757
+ msgstr "HTTP kód"
758
+
759
+ #: matches/referrer.php:24 view/item-edit.php:7
760
+ msgid "Regex"
761
+ msgstr "Regex"
762
+
763
+ #: matches/referrer.php:21 redirection-strings.php:31
764
+ #: redirection-strings.php:38
765
+ msgid "Referrer"
766
+ msgstr "Referrer"
767
+
768
+ #: matches/referrer.php:8
769
+ msgid "URL and referrer"
770
+ msgstr "URL a referrer"
771
+
772
+ #: matches/login.php:35 matches/login.php:37
773
+ msgid "Logged Out"
774
+ msgstr "Odhlásený"
775
+
776
+ #: matches/login.php:23 matches/login.php:25
777
+ msgid "Logged In"
778
+ msgstr "Prihlásený"
779
+
780
+ #: matches/login.php:16
781
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
782
+ msgstr "Cieľová URL bude zvolená z nasledujúcich URL adries na základe toho, či používateľ je prihlásený alebo nie. Ak necháte URL prázdne, používateľ nebude presmerovaný."
783
+
784
+ #: matches/login.php:7
785
+ msgid "URL and login status"
786
+ msgstr "URL a status prihlásenia"
locale/redirection-tr_TR.mo CHANGED
Binary file
locale/redirection-tr_TR.po CHANGED
@@ -1,968 +1,782 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Redirect\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 20:25-0300\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Fatih Cevik <fatihdu77@gmail.com>\n"
8
- "Language-Team: wpp.pp.ua <wordpress.ua@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Ukrainian\n"
13
- "X-Poedit-Country: UKRAINE\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-Basepath: c:/temp/redirection/\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
 
18
- #: c:/temp/redirection/ajax.php:51
19
- msgid "<p style=\"color: red\">You are not allowed access to this resource</p>"
20
- msgstr "<p style=\"color: red\">Bu kaynağa ulaşma hakkınız yoktur.</p>"
21
 
22
- #: c:/temp/redirection/ajax.php:59
23
- msgid "<p style=\"color: red\">That function is not defined</p>"
24
- msgstr "<p style=\"color: red\">Bu işlem tanımsızdır.</p>"
25
 
26
- #: c:/temp/redirection/ajax.php:76
27
- msgid "Sorry, but your redirection was not created"
28
- msgstr "Üzgünüm, yönlendirileceğiniz alan oluşturulmamıştır."
29
 
30
- #: c:/temp/redirection/ajax.php:234
31
- #: c:/temp/redirection/ajax.php:243
32
- #: c:/temp/redirection/ajax.php:270
33
- #: c:/temp/redirection/ajax.php:317
34
- #: c:/temp/redirection/ajax.php:332
35
- #: c:/temp/redirection/ajax.php:356
36
- msgid "Failed to retrieve group data"
37
- msgstr "Grup bilgisi alınırken hata oluştu"
38
 
39
- #: c:/temp/redirection/ajax.php:307
40
- msgid "Failed to retrieve module data"
41
- msgstr "Modüle bilgisi alınırken hata oluştu"
42
 
43
- #: c:/temp/redirection/plugin.php:648
44
- msgid "How many widgets would you like?"
45
- msgstr "Kaç tane bileşen istiyorsunuz?"
46
 
47
- #: c:/temp/redirection/plugin.php:655
48
- msgid "Save"
49
- msgstr "Kaydet"
50
 
51
- #: c:/temp/redirection/redirection.php:122
52
- msgid "Redirection Help"
53
- msgstr "Redirection Yardım"
54
 
55
- #: c:/temp/redirection/redirection.php:123
56
- msgid "Redirection Documentation"
57
- msgstr "Redirection Yardım Dosyaları"
58
 
59
- #: c:/temp/redirection/redirection.php:124
60
- msgid "Redirection Support Forum"
61
- msgstr "Redirection Yardım Forumu"
62
 
63
- #: c:/temp/redirection/redirection.php:125
64
- msgid "Redirection Bug Tracker"
65
- msgstr "Redirection Hata Ayıklayıcısı"
66
 
67
- #: c:/temp/redirection/redirection.php:126
68
- msgid "Redirection FAQ"
69
- msgstr "Redirection S.S.S"
70
 
71
- #: c:/temp/redirection/redirection.php:127
72
- msgid "Please read the documentation and FAQ, and check the bug tracker, before asking a question."
73
- msgstr "Lütfen, soru sormadan önce Redirection Yardım Dosyaları, Sıkça Sorulan Sorular(S.S.S) ve Hata Ayıklayıcıyı inceleyiniz."
74
 
75
- #: c:/temp/redirection/redirection.php:186
76
- msgid "Redirection"
77
- msgstr "Redirection"
78
 
79
- #: c:/temp/redirection/redirection.php:249
80
- msgid "Your module was successfully created"
81
- msgstr "Modülünüz başarıyla oluşturuldu"
82
 
83
- #: c:/temp/redirection/redirection.php:253
84
- msgid "Your module was not created - did you provide a name?"
85
- msgstr "Modülünüz oluşturulamadı, isim yazdığınızdan emin misiniz?"
86
 
87
- #: c:/temp/redirection/redirection.php:317
88
- msgid "Your options were updated"
89
- msgstr "Ayarlarınız güncellendi"
90
 
91
- #: c:/temp/redirection/redirection.php:326
92
- msgid "Redirection data has been deleted and the plugin disabled"
93
- msgstr "Redirection bilgileri silindi ve eklenti etkisizleştirildi"
94
 
95
- #: c:/temp/redirection/redirection.php:339
96
- msgid "No items were imported"
97
- msgstr "Hiçbir eleman içeri aktarılmadı"
98
 
99
- #: c:/temp/redirection/redirection.php:359
100
- msgid "Your logs have been deleted"
101
- msgstr "İşlem geçmişiniz kaydedildi"
102
 
103
- #: c:/temp/redirection/redirection.php:385
104
- msgid "Your group was added successfully"
105
- msgstr "Grup başarıyla kaydedildi"
106
 
107
- #: c:/temp/redirection/redirection.php:389
108
- msgid "Please specify a group name"
109
- msgstr "Lütfen bir grup ismi belirtiniz"
110
 
111
- #: c:/temp/redirection/fileio/csv.php:21
112
- #, php-format
113
- msgid "module_%d.csv"
114
- msgstr "module_%d.csv"
 
115
 
116
- #: c:/temp/redirection/fileio/xml.php:32
117
- #, php-format
118
- msgid "module_%d.xml"
119
- msgstr "module_%d.xml"
120
 
121
- #: c:/temp/redirection/fileio/xml.php:105
122
- #, php-format
123
- msgid "%s imported on %s at %s"
124
- msgstr "%s aktarıldığı tarih %s в %s"
125
 
126
- #: c:/temp/redirection/fileio/xml.php:168
127
- msgid "XML importing is only available with PHP5 - you have PHP4."
128
- msgstr "İçeri XML aktarmak sadece PHP5 ile yapılabilir, sizde ise PHP4 bulunmaktadır."
129
 
130
- #: c:/temp/redirection/matches/login.php:25
131
- msgid "URL and login status"
132
- msgstr "URL ve giriş bilgileri"
133
 
134
- #: c:/temp/redirection/matches/login.php:32
135
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
136
- msgstr "Hedef URL, sıradaki URL'lerin içinden seçilecek, ve kullanıcının giriş yapıp yapmamış olmasına göre değişiklik gösterir. Boş bir URL yazmak ise kullanıcının yönlendirilmeyeceği anlamına gelir."
137
 
138
- #: c:/temp/redirection/matches/login.php:37
139
- #: c:/temp/redirection/matches/login.php:39
140
- msgid "Logged In"
141
- msgstr "Giriş Yapıldı"
142
 
143
- #: c:/temp/redirection/matches/login.php:47
144
- #: c:/temp/redirection/matches/login.php:49
145
- msgid "Logged Out"
146
- msgstr "Çıkış Yapıldı"
147
 
148
- #: c:/temp/redirection/matches/referrer.php:28
149
- msgid "URL and referrer"
150
- msgstr "URL ve ziyaretçi gönderen"
151
 
152
- #: c:/temp/redirection/matches/referrer.php:40
153
- msgid "Referrer"
154
- msgstr "Ziyaretçi gönderen"
155
 
156
- #: c:/temp/redirection/matches/referrer.php:43
157
- msgid "Regex"
158
- msgstr "Regex"
159
 
160
- #: c:/temp/redirection/matches/referrer.php:47
161
- #: c:/temp/redirection/matches/url.php:40
162
- #: c:/temp/redirection/matches/user_agent.php:56
163
- msgid "HTTP Code"
164
- msgstr "HTTP Kodu"
165
 
166
- #: c:/temp/redirection/matches/referrer.php:57
167
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
168
- msgstr "Ziyaretçi yönlendirmede eşleşme oluyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir."
169
 
170
- #: c:/temp/redirection/matches/referrer.php:63
171
- #: c:/temp/redirection/matches/referrer.php:65
172
- #: c:/temp/redirection/matches/user_agent.php:74
173
- #: c:/temp/redirection/matches/user_agent.php:76
174
- msgid "Matched"
175
- msgstr "Karşılaştırıldı"
176
 
177
- #: c:/temp/redirection/matches/referrer.php:73
178
- #: c:/temp/redirection/matches/referrer.php:75
179
- #: c:/temp/redirection/matches/user_agent.php:84
180
- #: c:/temp/redirection/matches/user_agent.php:86
181
- msgid "Not matched"
182
- msgstr "Karşılaştırılamadı"
183
 
184
- #: c:/temp/redirection/matches/url.php:25
185
- msgid "URL only"
186
- msgstr "Yalnız URL"
187
 
188
- #: c:/temp/redirection/matches/url.php:32
189
- msgid "Target URL"
190
- msgstr "Hedef URL"
191
 
192
- #: c:/temp/redirection/matches/user_agent.php:27
193
- msgid "URL and user agent"
194
- msgstr "URL ve kullanıcı bilgileri"
195
 
196
- #: c:/temp/redirection/matches/user_agent.php:33
197
- msgid "FeedBurner"
198
- msgstr "FeedBurner"
199
 
200
- #: c:/temp/redirection/matches/user_agent.php:34
201
- msgid "Internet Explorer"
202
- msgstr "Internet Explorer"
203
 
204
- #: c:/temp/redirection/matches/user_agent.php:35
205
- msgid "FireFox"
206
- msgstr "FireFox"
207
 
208
- #: c:/temp/redirection/matches/user_agent.php:36
209
- msgid "Opera"
210
- msgstr "Opera"
211
 
212
- #: c:/temp/redirection/matches/user_agent.php:37
213
- msgid "Safari"
214
- msgstr "Safari"
215
 
216
- #: c:/temp/redirection/matches/user_agent.php:38
217
- msgid "iPhone"
218
- msgstr "iPhone"
219
 
220
- #: c:/temp/redirection/matches/user_agent.php:39
221
- msgid "Nintendo Wii"
222
- msgstr "Nintendo Wii"
223
 
224
- #: c:/temp/redirection/matches/user_agent.php:44
225
- msgid "User Agent"
226
- msgstr "Kullanıcı Bilgileri"
227
 
228
- #: c:/temp/redirection/matches/user_agent.php:67
229
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
230
- msgstr "Ziyaretçi kullanıcı arayüzü eşleşiyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir. <strong>Tüm karşılaştırmalarda düzenli ifadeler olarak uygulanmaktadır.</strong>.\n"
231
 
232
- #: c:/temp/redirection/models/database.php:110
233
- #: c:/temp/redirection/models/module.php:168
234
- msgid "WordPress"
235
- msgstr "WordPress"
236
 
237
- #: c:/temp/redirection/models/database.php:111
238
- #: c:/temp/redirection/models/module.php:167
239
- msgid "Apache"
240
- msgstr "Apache"
241
 
242
- #: c:/temp/redirection/models/database.php:112
243
- #: c:/temp/redirection/models/module.php:169
244
- msgid "404 Errors"
245
- msgstr "404 Hataları"
246
 
247
- #: c:/temp/redirection/models/database.php:118
248
- msgid "Redirections"
249
- msgstr "Yönlendirmeler"
250
 
251
- #: c:/temp/redirection/models/database.php:119
252
- msgid "Modified posts"
253
- msgstr "Değiştirilmiş Yazı"
254
 
255
- #: c:/temp/redirection/models/module.php:192
256
- msgid "Strip WWW"
257
- msgstr "Kes WWW"
258
 
259
- #: c:/temp/redirection/models/module.php:192
260
- msgid "Force WWW"
261
- msgstr "Zorlama WWW"
262
 
263
- #: c:/temp/redirection/models/module.php:198
264
- msgid "Strip index.php"
265
- msgstr "Kes index.php"
266
 
267
- #: c:/temp/redirection/models/pager.php:402
268
- msgid "Previous"
269
- msgstr "Geri"
270
 
271
- #: c:/temp/redirection/models/pager.php:403
272
- msgid "Next"
273
- msgstr "İleri"
274
 
275
- #: c:/temp/redirection/models/pager.php:461
276
- #, php-format
277
- msgid "%d per-page"
278
- msgstr "%d sayfa-basi"
279
 
280
- #: c:/temp/redirection/models/pager.php:470
281
- #, php-format
282
- msgid "Displaying %s&#8211;%s of %s"
283
- msgstr "Gösterilen %s&#8211;%s of %s"
284
 
285
- #: c:/temp/redirection/models/redirect.php:387
286
- msgid "Redirect to URL"
287
- msgstr "URL'ye Yönlendir"
288
 
289
- #: c:/temp/redirection/models/redirect.php:388
290
- msgid "Redirect to random post"
291
- msgstr "Rastgele bir yazıya yönlendir"
292
 
293
- #: c:/temp/redirection/models/redirect.php:389
294
- msgid "Pass-through"
295
- msgstr "Doğrudan"
296
 
297
- #: c:/temp/redirection/models/redirect.php:390
298
- msgid "Error (404)"
299
- msgstr "Hata (404)"
300
 
301
- #: c:/temp/redirection/models/redirect.php:391
302
- msgid "Do nothing"
303
- msgstr "Hiçbir şey yapma"
304
 
305
- #: c:/temp/redirection/modules/404.php:37
306
- msgid "Log 404s"
307
- msgstr "404 Kayıtları"
308
-
309
- #: c:/temp/redirection/modules/404.php:46
310
- #: c:/temp/redirection/modules/wordpress.php:223
311
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
312
- msgstr "<strong>Aktif değil: Kullanmadan önce aktif etmelisiniz <a href=\"options-permalink.php\">kalıcı bağlantılar</a></strong>"
313
-
314
- #: c:/temp/redirection/modules/404.php:57
315
- #: c:/temp/redirection/modules/wordpress.php:247
316
- msgid "<small>No options have been set</small>"
317
- msgstr "<small>Hiçbir özellik ayarlanmadı</small>"
318
-
319
- #: c:/temp/redirection/modules/apache.php:65
320
- msgid "Location"
321
- msgstr "Yer"
322
-
323
- #: c:/temp/redirection/modules/apache.php:70
324
- #, php-format
325
- msgid "WordPress is installed in: <code>%s</code>"
326
- msgstr "WordPress yüklendi: <code>%s</code>"
327
-
328
- #: c:/temp/redirection/modules/apache.php:75
329
- #: c:/temp/redirection/modules/wordpress.php:184
330
- msgid "Canonical"
331
- msgstr "Yasal"
332
-
333
- #: c:/temp/redirection/modules/apache.php:78
334
- #: c:/temp/redirection/modules/apache.php:84
335
- #: c:/temp/redirection/modules/wordpress.php:187
336
- #: c:/temp/redirection/modules/wordpress.php:192
337
- msgid "Leave as is"
338
- msgstr "Olduğu gibi bırak"
339
-
340
- #: c:/temp/redirection/modules/apache.php:78
341
- #: c:/temp/redirection/modules/wordpress.php:187
342
- #, php-format
343
- msgid "Strip WWW (%s)"
344
- msgstr "Parçala WWW (%s)"
345
-
346
- #: c:/temp/redirection/modules/apache.php:78
347
- #: c:/temp/redirection/modules/wordpress.php:187
348
- #, php-format
349
- msgid "Force WWW (www.%s)"
350
- msgstr "Zorlama WWW (www.%s)"
351
-
352
- #: c:/temp/redirection/modules/apache.php:82
353
- msgid "Strip Index"
354
- msgstr "Parçala Index"
355
-
356
- #: c:/temp/redirection/modules/apache.php:84
357
- msgid "Strip index files (html,php)"
358
- msgstr "Anasayfa dosyalarını parçala (html, php)"
359
-
360
- #: c:/temp/redirection/modules/apache.php:89
361
- msgid "Memory Limit"
362
- msgstr "Hafıza Limiti"
363
-
364
- #: c:/temp/redirection/modules/apache.php:92
365
- #: c:/temp/redirection/modules/apache.php:97
366
- #: c:/temp/redirection/modules/wordpress.php:200
367
- #: c:/temp/redirection/modules/wordpress.php:205
368
- msgid "Server default"
369
- msgstr "Varsayılan sunucu"
370
 
371
- #: c:/temp/redirection/modules/apache.php:95
372
- msgid "Error Level"
373
- msgstr "Hata Derecesi"
374
-
375
- #: c:/temp/redirection/modules/apache.php:97
376
- msgid "No errors"
377
- msgstr "Hiçbir hata yok"
378
-
379
- #: c:/temp/redirection/modules/apache.php:97
380
- msgid "Show errors"
381
- msgstr "Hataları göster"
382
-
383
- #: c:/temp/redirection/modules/apache.php:102
384
- msgid "Ban IPs"
385
- msgstr "IP'yi Engelle"
386
-
387
- #: c:/temp/redirection/modules/apache.php:108
388
- msgid "Allow IPs"
389
- msgstr "IP'ye İzin ver"
390
-
391
- #: c:/temp/redirection/modules/apache.php:114
392
- msgid "Raw .htaccess"
393
- msgstr "Değiştirilmemiş .htaccess"
394
-
395
- #: c:/temp/redirection/modules/apache.php:120
396
- msgid "Site URL"
397
- msgstr "Site URL"
398
-
399
- #: c:/temp/redirection/modules/apache.php:123
400
- msgid "Advanced: For management of external sites"
401
- msgstr "Gelişmiş: Harici sitelerin yönetimi için"
402
-
403
- #: c:/temp/redirection/modules/apache.php:138
404
- msgid "<strong>Location is invalid - check that path exists</strong>"
405
- msgstr "<strong>Adres geçersiz - adresin var olup olmadığını kontrol ediniz</strong>"
406
-
407
- #: c:/temp/redirection/modules/apache.php:144
408
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
409
- msgstr "<strong>Yapılandırılmış <code>.htaccess</code> dosyasının üzerine yazamaszınız. Lütfen dosya kullanım izinlerini kontrol ediniz.</strong>"
410
-
411
- #: c:/temp/redirection/modules/apache.php:151
412
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
413
- msgstr "<strong>Aktif değil: aktif olabilmesi için herhangi bir <code>.htaccess</code> dosyasının adresini giriniz.</strong>"
414
-
415
- #: c:/temp/redirection/modules/apache.php:156
416
- msgid "strip WWW"
417
- msgstr "parçala WWW"
418
-
419
- #: c:/temp/redirection/modules/apache.php:156
420
- msgid "force WWW"
421
- msgstr "zorlama WWW"
422
-
423
- #: c:/temp/redirection/modules/apache.php:159
424
- #: c:/temp/redirection/modules/wordpress.php:231
425
- msgid "strip index"
426
- msgstr "parçala index"
427
-
428
- #: c:/temp/redirection/modules/apache.php:162
429
- #, php-format
430
- msgid "memory limit at %dMB"
431
- msgstr "hafıza limiti %dMB"
432
-
433
- #: c:/temp/redirection/modules/apache.php:165
434
- #: c:/temp/redirection/modules/wordpress.php:242
435
- msgid "no errors"
436
- msgstr "hatasız"
437
-
438
- #: c:/temp/redirection/modules/apache.php:165
439
- #: c:/temp/redirection/modules/wordpress.php:242
440
- msgid "show errors"
441
- msgstr "hataları göster"
442
-
443
- #: c:/temp/redirection/modules/apache.php:168
444
- msgid "IPs are banned"
445
- msgstr "IP'ler engellendi"
446
-
447
- #: c:/temp/redirection/modules/apache.php:171
448
- msgid "IPs are allowed"
449
- msgstr "IP'lere izin verildi"
450
-
451
- #: c:/temp/redirection/modules/apache.php:179
452
- #, php-format
453
- msgid " for external site: <code>%s</code>"
454
- msgstr "başka bir site için: <code>%s</code>"
455
-
456
- #: c:/temp/redirection/modules/wordpress.php:192
457
- msgid "Strip index files (html,php,asp)"
458
- msgstr "Index dosyasını parçala (html,php,asp)"
459
-
460
- #: c:/temp/redirection/modules/wordpress.php:200
461
- msgid "30 seconds"
462
- msgstr "30 saniye"
463
-
464
- #: c:/temp/redirection/modules/wordpress.php:200
465
- msgid "1 minute"
466
- msgstr "1 dakika"
467
-
468
- #: c:/temp/redirection/modules/wordpress.php:200
469
- msgid "2 minutes"
470
- msgstr "2 dakika"
471
-
472
- #: c:/temp/redirection/modules/wordpress.php:200
473
- msgid "5 minutes"
474
- msgstr "5 dakika"
475
-
476
- #: c:/temp/redirection/modules/wordpress.php:200
477
- msgid "As long as possible"
478
- msgstr "Mümkün olduğu sürece"
479
-
480
- #: c:/temp/redirection/modules/wordpress.php:236
481
- msgid "time limit set as long as possible"
482
- msgstr "zaman limitini olabildiğince en büyüğe ayarla"
483
-
484
- #: c:/temp/redirection/modules/wordpress.php:238
485
- #, php-format
486
- msgid "time limit at %ss"
487
- msgstr "zaman limiti %ss"
488
-
489
- #: c:/temp/redirection/view/admin/add.php:3
490
- msgid "Add new redirection"
491
- msgstr "Yeni yönlendirme ekle"
492
 
493
- #: c:/temp/redirection/view/admin/add.php:6
494
- msgid "Your redirection has been added."
495
- msgstr "Yeni yönlendirmeniz eklenmiştir."
496
 
497
- #: c:/temp/redirection/view/admin/add.php:12
498
- msgid "Source URL"
499
- msgstr "Kaynak URL"
500
 
501
- #: c:/temp/redirection/view/admin/add.php:16
502
- msgid "Match"
503
- msgstr "Karşılaştır"
504
 
505
- #: c:/temp/redirection/view/admin/add.php:22
506
- msgid "Action"
507
- msgstr "İşlem"
508
 
509
- #: c:/temp/redirection/view/admin/add.php:27
510
- msgid "Regular expression"
511
- msgstr "Düzenli İfadeler"
512
 
513
- #: c:/temp/redirection/view/admin/add.php:36
514
- msgid "Group"
515
- msgstr "Grup"
516
 
517
- #: c:/temp/redirection/view/admin/add.php:43
518
- msgid "Add Redirection"
519
- msgstr "Yönlendirme Ekle"
520
 
521
- #: c:/temp/redirection/view/admin/group_edit.php:6
522
- #: c:/temp/redirection/view/admin/group_list.php:31
523
- #: c:/temp/redirection/view/admin/group_list.php:93
524
- #: c:/temp/redirection/view/admin/module_edit.php:17
525
- #: c:/temp/redirection/view/admin/module_list.php:37
526
- msgid "Name"
527
- msgstr "İsim"
528
 
529
- #: c:/temp/redirection/view/admin/group_edit.php:10
530
- msgid "Tracked"
531
- msgstr "İzlendi"
532
 
533
- #: c:/temp/redirection/view/admin/group_edit.php:11
534
- msgid "Whether to track 'hits' to items"
535
- msgstr "Nesnenin izlenip izlenmediği"
536
 
537
- #: c:/temp/redirection/view/admin/group_edit.php:14
538
- msgid "Enabled"
539
- msgstr "Aktif"
540
 
541
- #: c:/temp/redirection/view/admin/group_edit.php:15
542
- msgid "Disabling a group will disable all items contained within it"
543
- msgstr "Bir grubu etkisizleştirmek, grup içindeki bütün elemanları etkisiz hâle getirir."
544
 
545
- #: c:/temp/redirection/view/admin/group_edit.php:21
546
- #: c:/temp/redirection/view/admin/item_edit.php:28
547
- #: c:/temp/redirection/view/admin/module_edit.php:27
548
- msgid "Cancel"
549
- msgstr "İptal"
550
 
551
- #: c:/temp/redirection/view/admin/group_item.php:4
552
- msgid "edit group"
553
- msgstr "grup düzenle"
554
 
555
- #: c:/temp/redirection/view/admin/group_item.php:20
556
- #: c:/temp/redirection/view/admin/item.php:27
557
- msgid "disabled"
558
- msgstr "aktif değil"
559
 
560
- #: c:/temp/redirection/view/admin/group_list.php:2
561
- msgid "Groups for module"
562
- msgstr "Grup için modül"
563
 
564
- #: c:/temp/redirection/view/admin/group_list.php:10
565
- #: c:/temp/redirection/view/admin/log.php:34
566
- msgid "Module"
567
- msgstr "Modüle"
568
 
569
- #: c:/temp/redirection/view/admin/group_list.php:15
570
- #: c:/temp/redirection/view/admin/item_list.php:18
571
- #: c:/temp/redirection/view/admin/log.php:12
572
- #: c:/temp/redirection/view/admin/log.php:19
573
- msgid "Search"
574
- msgstr "Ara"
575
 
576
- #: c:/temp/redirection/view/admin/group_list.php:20
577
- msgid "go"
578
- msgstr "git"
579
 
580
- #: c:/temp/redirection/view/admin/group_list.php:30
581
- #: c:/temp/redirection/view/admin/item_list.php:31
582
- #: c:/temp/redirection/view/admin/module_list.php:12
583
- msgid "Hits"
584
- msgstr "Hitler"
585
 
586
- #: c:/temp/redirection/view/admin/group_list.php:53
587
- #: c:/temp/redirection/view/admin/item_list.php:56
588
- msgid "Select All"
589
- msgstr "Hepsini Seç"
590
 
591
- #: c:/temp/redirection/view/admin/group_list.php:54
592
- #: c:/temp/redirection/view/admin/item_list.php:57
593
- msgid "Toggle"
594
- msgstr "Bağla"
595
 
596
- #: c:/temp/redirection/view/admin/group_list.php:55
597
- #: c:/temp/redirection/view/admin/item_list.php:58
598
- msgid "Reset Hits"
599
- msgstr "Hitleri Sıfırla"
600
 
601
- #: c:/temp/redirection/view/admin/group_list.php:56
602
- #: c:/temp/redirection/view/admin/item_list.php:59
603
- #: c:/temp/redirection/view/admin/log.php:26
604
- #: c:/temp/redirection/view/admin/options.php:105
605
- msgid "Delete"
606
- msgstr "Sil"
607
 
608
- #: c:/temp/redirection/view/admin/group_list.php:58
609
- #: c:/temp/redirection/view/admin/item_list.php:61
610
- msgid "Move To"
611
- msgstr "Taşı"
612
 
613
- #: c:/temp/redirection/view/admin/group_list.php:68
614
- #: c:/temp/redirection/view/admin/item_list.php:72
615
- msgid "re-order"
616
- msgstr "tekrar sırala"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
 
618
- #: c:/temp/redirection/view/admin/group_list.php:69
619
- #: c:/temp/redirection/view/admin/item_list.php:73
620
- msgid "save order"
621
- msgstr "sıralamayı kaydet"
622
 
623
- #: c:/temp/redirection/view/admin/group_list.php:82
624
- msgid "You have no groups in this module."
625
- msgstr "Bu modüle altında hiçbir grup bulunmamaktadır."
626
 
627
- #: c:/temp/redirection/view/admin/group_list.php:87
628
  msgid "Add Group"
629
  msgstr "Yeni Grup Ekle"
630
 
631
- #: c:/temp/redirection/view/admin/group_list.php:98
632
- msgid "Add"
633
- msgstr "Ekle"
634
 
635
- #: c:/temp/redirection/view/admin/head.php:4
636
- msgid "Please wait..."
637
- msgstr "Lütfen bekleyiniz..."
638
 
639
- #: c:/temp/redirection/view/admin/head.php:7
640
- msgid "Are you sure?"
641
- msgstr "Emin misiniz?"
642
 
643
- #: c:/temp/redirection/view/admin/head.php:8
644
- msgid "No items have been selected"
645
- msgstr "Hiçbir eleman seçilmemiştir"
646
 
647
- #: c:/temp/redirection/view/admin/item_edit.php:3
648
- #, php-format
649
- msgid "%s by matching %s"
650
- msgstr "%s karsilik gelen %s"
651
 
652
- #: c:/temp/redirection/view/admin/item_edit.php:7
653
- msgid "Title"
654
- msgstr "Başlık"
655
 
656
- #: c:/temp/redirection/view/admin/item_edit.php:10
657
- msgid "optional"
658
- msgstr "Opsiyonal"
659
 
660
- #: c:/temp/redirection/view/admin/item_list.php:3
661
- msgid "Redirections for group"
662
- msgstr "Gruplar için yönlendirme"
663
 
664
- #: c:/temp/redirection/view/admin/item_list.php:23
665
- msgid "Go"
666
- msgstr "Git"
667
 
668
- #: c:/temp/redirection/view/admin/item_list.php:30
669
- msgid "Last Access"
670
- msgstr "Son Giriş"
671
 
672
- #: c:/temp/redirection/view/admin/item_list.php:32
673
- #: c:/temp/redirection/view/admin/module_list.php:41
674
- msgid "Type"
675
- msgstr "Tür"
676
 
677
- #: c:/temp/redirection/view/admin/item_list.php:33
678
- msgid "URL"
679
- msgstr "URL"
680
 
681
- #: c:/temp/redirection/view/admin/item_list.php:33
682
- msgid "Position"
683
- msgstr "Pozisyon"
684
 
685
- #: c:/temp/redirection/view/admin/item_list.php:77
686
- msgid "You have no redirections."
687
- msgstr "Hiçbir yönlendirmeniz bulunmamaktadır."
 
688
 
689
- #: c:/temp/redirection/view/admin/log.php:2
690
- msgid "Redirection Log"
691
- msgstr "Yönlendirme Kayıtları"
692
 
693
- #: c:/temp/redirection/view/admin/log.php:25
694
- msgid "Bulk Actions"
695
- msgstr "Toplu İşlem"
 
 
696
 
697
- #: c:/temp/redirection/view/admin/log.php:29
698
- msgid "Apply"
699
- msgstr "Uygula"
700
 
701
- #: c:/temp/redirection/view/admin/log.php:45
702
- msgid "Filter"
703
- msgstr "Filtrele"
704
 
705
- #: c:/temp/redirection/view/admin/log.php:63
706
- msgid "Date"
707
- msgstr "Tarih"
708
 
709
- #: c:/temp/redirection/view/admin/log.php:66
710
- msgid "IP"
711
- msgstr "IP"
 
 
 
 
712
 
713
- #: c:/temp/redirection/view/admin/log.php:79
714
- msgid "There are no logs to display!"
715
- msgstr "Gösterilecek başka kayıt bulunmamaktadır!"
 
 
 
 
716
 
717
- #: c:/temp/redirection/view/admin/log.php:88
718
- msgid "Process Current Logs"
719
- msgstr "Güncel Kayıtlara Uygula"
720
 
721
- #: c:/temp/redirection/view/admin/log.php:89
722
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
723
- msgstr "Bu işlem bütün güncel kayıtlara uygulanacaktır.(mesela, arama yaparken kullandığınız cümle, diğer kayıtlara sınırlama getirecektir.)"
724
 
725
- #: c:/temp/redirection/view/admin/log.php:94
726
- msgid "Delete Logs"
727
- msgstr "Kayıtları Sil"
728
 
729
- #: c:/temp/redirection/view/admin/log.php:95
730
- msgid "Export to CSV"
731
- msgstr "CSV'ye aktar"
 
 
 
 
732
 
733
- #: c:/temp/redirection/view/admin/log_item_details.php:9
734
- msgid "Redirect to"
735
- msgstr "Buraya yönlendir"
736
 
737
- #: c:/temp/redirection/view/admin/log_item_details.php:15
738
- msgid "Redirected by"
739
- msgstr "Tarafından yönlendirildi"
740
 
741
- #: c:/temp/redirection/view/admin/log_item_details.php:16
742
- msgid "for"
743
- msgstr "/"
744
 
745
- #: c:/temp/redirection/view/admin/module_item.php:23
746
- msgid "View as"
747
- msgstr "Olarak görüntüle"
748
 
749
- #: c:/temp/redirection/view/admin/module_item.php:25
750
- msgid "CSV"
751
- msgstr "CSV"
752
 
753
- #: c:/temp/redirection/view/admin/module_item.php:26
754
- msgid "XML"
755
- msgstr "XML"
756
 
757
- #: c:/temp/redirection/view/admin/module_item.php:28
758
- msgid "RSS"
759
- msgstr "RSS"
760
 
761
- #: c:/temp/redirection/view/admin/module_item.php:41
762
- msgid "edit"
763
- msgstr "düzenle"
764
 
765
- #: c:/temp/redirection/view/admin/module_item.php:44
766
- msgid "delete"
767
- msgstr "sil"
768
 
769
- #: c:/temp/redirection/view/admin/module_item.php:47
770
- msgid "reset"
771
- msgstr "sıfırla"
772
 
773
- #: c:/temp/redirection/view/admin/module_list.php:2
774
- #: c:/temp/redirection/view/admin/submenu.php:6
775
- msgid "Modules"
776
- msgstr "Modüller"
777
 
778
- #: c:/temp/redirection/view/admin/module_list.php:9
779
- msgid "Details"
780
- msgstr "Detaylar"
781
 
782
- #: c:/temp/redirection/view/admin/module_list.php:10
783
- #: c:/temp/redirection/view/admin/submenu.php:5
784
- msgid "Groups"
785
- msgstr "Gruplar"
786
 
787
- #: c:/temp/redirection/view/admin/module_list.php:11
788
- msgid "Items"
789
- msgstr "Elemanlar"
 
790
 
791
- #: c:/temp/redirection/view/admin/module_list.php:13
792
- msgid "Operations"
793
- msgstr "Operasyonlar"
794
 
795
- #: c:/temp/redirection/view/admin/module_list.php:22
796
- msgid "Note: Hits are dependant on log entries"
797
- msgstr "Not: Hitler, giriş kayıtlarına göre değişiklik gösterir."
798
 
799
- #: c:/temp/redirection/view/admin/module_list.php:24
800
- msgid "You have no modules defined yet"
801
- msgstr "Henüz, tanımlı bir modülünüz bulunmamaktadır"
802
 
803
- #: c:/temp/redirection/view/admin/module_list.php:29
804
- msgid "Add Module"
805
- msgstr "Modüle Ekle"
806
 
807
- #: c:/temp/redirection/view/admin/module_list.php:30
808
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
809
- msgstr "Bu modül yönlendirmelerin nasıl ele alınacağını belirleyen bir kontrol unsurudur. WordPress modülünde elementin WordPress tarafından işlendiğini, bir Apache modülü içindeki elemanların<code>.htaccess</code> tarafından nasıl ele alındığını ve 404 modülü içindeki elementlerin nasıl etkileşim gösterdiği kayıt edilir."
 
810
 
811
- #: c:/temp/redirection/view/admin/module_list.php:50
812
- msgid "Create"
813
- msgstr "Oluştur"
814
 
815
- #: c:/temp/redirection/view/admin/options.php:2
816
- #: c:/temp/redirection/view/admin/submenu.php:8
817
- msgid "Options"
818
- msgstr "Ayarlar"
819
 
820
- #: c:/temp/redirection/view/admin/options.php:11
821
- msgid "Auto-generate URL"
822
- msgstr "URL'yi otomatik oluştur"
823
 
824
- #: c:/temp/redirection/view/admin/options.php:15
825
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
826
- msgstr "Eğer URL adresi girmemişseniz, bu URL otomatik oluşturulmuş bir URL olarak kullanılacaktır. Etiketlerin karışmaması için $dec$ veya $hex$ gibi özel etiketler kullanabilirsiniz."
827
 
828
- #: c:/temp/redirection/view/admin/options.php:20
829
- msgid "IP Lookup Service"
830
- msgstr "IP Arama Servisi"
831
 
832
- #: c:/temp/redirection/view/admin/options.php:26
833
- msgid "Plugin Support"
834
- msgstr "Plugin'i Destekle"
 
835
 
836
- #: c:/temp/redirection/view/admin/options.php:29
837
- msgid "I'm a nice person and I have helped support the author of this plugin"
838
- msgstr "Ben iyi birisiyim ve bu eklentiyi yazan kişiyi desteklemeliyim."
 
839
 
840
- #: c:/temp/redirection/view/admin/options.php:33
841
- msgid "Expire Logs"
842
- msgstr "Kayıtları Sonlandır"
 
 
 
843
 
844
- #: c:/temp/redirection/view/admin/options.php:36
845
- msgid "days (enter 0 for no expiry)"
846
- msgstr "gün (sınırsız olması için 0 giriniz)"
847
 
848
- #: c:/temp/redirection/view/admin/options.php:40
849
- msgid "RSS Token"
850
- msgstr "Alınan RSS"
851
 
852
- #: c:/temp/redirection/view/admin/options.php:43
853
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
854
- msgstr "Sadece tek bir besleme okuyucuya Redirection'un RSS adresini okuma izni vardır. (Otomatik belirlenmesi için bos bırakınız)"
855
 
856
- #: c:/temp/redirection/view/admin/options.php:48
857
- msgid "URL Monitoring"
858
- msgstr "URL Takibi"
859
 
860
- #: c:/temp/redirection/view/admin/options.php:49
861
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
862
- msgstr "Redirection'un otomatik olarak tespit ettiği URL'leri ve belirlenmiş URL gruplarını görebilirsiniz."
863
 
864
- #: c:/temp/redirection/view/admin/options.php:53
865
- msgid "Post &amp; Page URLs"
866
- msgstr "Yazı &amp; Sayfa URLleri"
867
 
868
- #: c:/temp/redirection/view/admin/options.php:56
869
- #: c:/temp/redirection/view/admin/options.php:67
870
- msgid "Don't monitor"
871
- msgstr "URL Takip etme"
872
 
873
- #: c:/temp/redirection/view/admin/options.php:60
874
- msgid "Monitor new posts"
875
- msgstr "Yeni yazıları takip et"
876
 
877
- #: c:/temp/redirection/view/admin/options.php:64
878
- msgid "Category URLs"
879
- msgstr "URL'leri kategorize et"
880
 
881
- #: c:/temp/redirection/view/admin/options.php:74
882
- msgid "Update"
883
- msgstr "Güncelle"
884
 
885
- #: c:/temp/redirection/view/admin/options.php:80
886
- msgid "Import"
887
- msgstr "Aktar"
888
 
889
- #: c:/temp/redirection/view/admin/options.php:82
890
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
891
- msgstr "Burada, daha önce oluşturulmuş bir .htaccess dosyası, CSV dosyası veya XML Yönlendirme dosyasından içeri bilgi aktarabilirsiniz."
892
 
893
- #: c:/temp/redirection/view/admin/options.php:89
894
- msgid "Import into"
895
- msgstr "İçeri Aktar"
896
 
897
- #: c:/temp/redirection/view/admin/options.php:92
898
- msgid "Upload"
899
- msgstr "Yükle"
900
 
901
- #: c:/temp/redirection/view/admin/options.php:95
902
- msgid "Note that the group is ignored when uploading an XML file."
903
- msgstr "Grup, bir XML dosyası yüklemesine açık değildir."
904
 
905
- #: c:/temp/redirection/view/admin/options.php:99
906
- msgid "Delete Redirection"
907
- msgstr "Yönlendirmeyi sil"
908
 
909
- #: c:/temp/redirection/view/admin/options.php:100
910
- 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."
911
- msgstr "Bu özelliği seçmek bütün yönlendirmeleri, kayıtları ve Redirection eklentisiyle ilgili bütün ayarları silecektir. Lütfen, bunu yapmak istediğinizden emin olunuz."
912
 
913
- #: c:/temp/redirection/view/admin/submenu.php:4
914
- msgid "Redirects"
915
- msgstr "Yönlendirmeler"
916
 
917
- #: c:/temp/redirection/view/admin/submenu.php:7
918
- msgid "Log"
919
- msgstr "Kayıtlar"
920
 
921
- #: c:/temp/redirection/view/admin/support.php:2
922
- msgid "Redirection Support"
923
- msgstr "Redirection Destek"
924
 
925
- #: c:/temp/redirection/view/admin/support.php:4
926
- msgid "Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested."
927
- msgstr "Redirection'u geliştirmek için çok büyük zaman ve çaba harcandı. Eğer <strong>8$'lik bir bağışta</strong> bulunursanız benim için cok faydalı olacaktır. Bu sayede plugin'i geliştirmeye devam edecek ve sizlere daha iyisini sunmaya çalışacağım. Teşekkürler."
928
 
929
- #: c:/temp/redirection/view/admin/support.php:25
930
- msgid "Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>."
931
- msgstr "Alternatif olarak, eğer birçok dil konuşabiliyorsanız. Bu plugin'i başka dillere çevirebilirsiniz. Bütün gerekli bilgileri de şu adreste ki yazımda açıkladım.<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">Buraya tıklayın.</a>"
 
932
 
933
- #: c:/temp/redirection/view/admin/support.php:27
934
- msgid "Other plugins"
935
- msgstr "Diğer eklentiler"
 
936
 
937
- #: c:/temp/redirection/view/admin/support.php:29
938
- msgid "You may also be interested in some of my other plugins:"
939
- msgstr "Belki yaptığım diğer plugin'ler ilginizi çekebilir:"
940
 
941
- #: c:/temp/redirection/view/admin/support.php:32
942
- msgid "HeadSpace"
943
- msgstr "Headspace"
 
944
 
945
- #: c:/temp/redirection/view/admin/support.php:32
946
- msgid "The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!"
947
- msgstr "Wordpres için eksiksiz en iyi SEO meta-data yöneticisi ve ultra amaçlı bir plugin."
948
 
949
- #: c:/temp/redirection/view/admin/support.php:33
950
- msgid "Search Unleashed"
951
- msgstr "Arama kısıtlandı"
 
952
 
953
- #: c:/temp/redirection/view/admin/support.php:33
954
- msgid "Attractive searches that go beyond the default WordPress search and increase the usefulness of your site."
955
- msgstr "Etkileyici aramalar Wordpress arama özelliğini daha cazip kılar ve sitenin kullanılırlığını büyük ölçüde arttırır."
956
 
957
- #: c:/temp/redirection/view/admin/support.php:34
958
- msgid "Sniplets"
959
- msgstr "Sniplets"
960
 
961
- #: c:/temp/redirection/view/admin/support.php:34
962
- msgid "very flexible and powerful text insertion that allows you to insert what you want, wherever you want it."
963
- msgstr "çok esnek ve güçlü yazı ekleme fonksiyonlarını içeriyor ve istediğiniz her yazıyı ekleme olanağı sunuyor."
964
 
965
- #: c:/temp/redirection/view/admin/support.php:37
966
- msgid "This notice will only be shown at periodic intervals."
967
- msgstr "Bu uyarı sadece periyodik aralıklarla gösterilecektir."
968
 
 
 
 
1
+ # Translation of Plugins - Redirection - Stable (latest release) in Turkish
2
+ # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-02-21 12:07:48+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: tr\n"
12
+ "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
 
13
 
14
+ #: redirection-strings.php:141
15
+ msgid "Something went wrong 🙁"
16
+ msgstr ""
17
 
18
+ #: redirection-strings.php:140
19
+ msgid "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!"
20
+ msgstr ""
21
 
22
+ #: redirection-strings.php:139
23
+ msgid "It didn't work when I tried again"
24
+ msgstr ""
25
 
26
+ #: redirection-strings.php:138
27
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
+ msgstr ""
 
 
 
 
 
29
 
30
+ #: redirection-strings.php:137
31
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
+ msgstr ""
33
 
34
+ #: redirection-strings.php:136
35
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
+ msgstr ""
37
 
38
+ #: redirection-strings.php:135
39
+ msgid "Important details for the thing you just did"
40
+ msgstr ""
41
 
42
+ #: redirection-strings.php:134
43
+ msgid "Please include these details in your report"
44
+ msgstr ""
45
 
46
+ #: redirection-admin.php:180
47
+ msgid "Log entries (100 max)"
48
+ msgstr ""
49
 
50
+ #: redirection-strings.php:56
51
+ msgid "Failed to load"
52
+ msgstr ""
53
 
54
+ #: redirection-strings.php:48
55
+ msgid "Remove WWW"
56
+ msgstr ""
57
 
58
+ #: redirection-strings.php:47
59
+ msgid "Add WWW"
60
+ msgstr ""
61
 
62
+ #: redirection-strings.php:133
63
+ msgid "Search by IP"
64
+ msgstr ""
65
 
66
+ #: redirection-strings.php:129
67
+ msgid "Select bulk action"
68
+ msgstr ""
69
 
70
+ #: redirection-strings.php:128
71
+ msgid "Bulk Actions"
72
+ msgstr ""
73
 
74
+ #: redirection-strings.php:127
75
+ msgid "Apply"
76
+ msgstr ""
77
 
78
+ #: redirection-strings.php:126
79
+ msgid "First page"
80
+ msgstr ""
81
 
82
+ #: redirection-strings.php:125
83
+ msgid "Prev page"
84
+ msgstr ""
85
 
86
+ #: redirection-strings.php:124
87
+ msgid "Current Page"
88
+ msgstr ""
89
 
90
+ #: redirection-strings.php:123
91
+ msgid "of %(page)s"
92
+ msgstr ""
93
 
94
+ #: redirection-strings.php:122
95
+ msgid "Next page"
96
+ msgstr ""
97
 
98
+ #: redirection-strings.php:121
99
+ msgid "Last page"
100
+ msgstr ""
101
 
102
+ #: redirection-strings.php:120
103
+ msgid "%s item"
104
+ msgid_plural "%s items"
105
+ msgstr[0] ""
106
+ msgstr[1] ""
107
 
108
+ #: redirection-strings.php:119
109
+ msgid "Select All"
110
+ msgstr ""
 
111
 
112
+ #: redirection-strings.php:131
113
+ msgid "Sorry but something went wrong loading the data - please try again"
114
+ msgstr ""
 
115
 
116
+ #: redirection-strings.php:130
117
+ msgid "No results"
118
+ msgstr ""
119
 
120
+ #: redirection-strings.php:26
121
+ msgid "Delete the logs - are you sure?"
122
+ msgstr ""
123
 
124
+ #: redirection-strings.php:25
125
+ msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
+ msgstr ""
127
 
128
+ #: redirection-strings.php:24
129
+ msgid "Yes! Delete the logs"
130
+ msgstr ""
 
131
 
132
+ #: redirection-strings.php:23
133
+ msgid "No! Don't delete the logs"
134
+ msgstr ""
 
135
 
136
+ #: redirection-admin.php:328
137
+ msgid "Redirection 404"
138
+ msgstr ""
139
 
140
+ #: redirection-strings.php:116
141
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
+ msgstr ""
143
 
144
+ #: redirection-strings.php:115 redirection-strings.php:117
145
+ msgid "Newsletter"
146
+ msgstr ""
147
 
148
+ #: redirection-strings.php:114
149
+ msgid "Want to keep up to date with changes to Redirection?"
150
+ msgstr ""
 
 
151
 
152
+ #: redirection-strings.php:113
153
+ 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."
154
+ msgstr ""
155
 
156
+ #: redirection-strings.php:112
157
+ msgid "Your email address:"
158
+ msgstr ""
 
 
 
159
 
160
+ #: redirection-strings.php:111
161
+ msgid "I deleted a redirection, why is it still redirecting?"
162
+ msgstr ""
 
 
 
163
 
164
+ #: redirection-strings.php:110
165
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
+ msgstr ""
167
 
168
+ #: redirection-strings.php:109
169
+ msgid "Can I open a redirect in a new tab?"
170
+ msgstr ""
171
 
172
+ #: redirection-strings.php:108
173
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
+ msgstr ""
175
 
176
+ #: redirection-strings.php:107
177
+ msgid "Something isn't working!"
178
+ msgstr ""
179
 
180
+ #: redirection-strings.php:106
181
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
+ msgstr ""
183
 
184
+ #: redirection-strings.php:105
185
+ msgid "Frequently Asked Questions"
186
+ msgstr ""
187
 
188
+ #: redirection-strings.php:104
189
+ msgid "Need some help? Maybe one of these questions will provide an answer"
190
+ msgstr ""
191
 
192
+ #: redirection-strings.php:103
193
+ msgid "You've already supported this plugin - thank you!"
194
+ msgstr ""
195
 
196
+ #: redirection-strings.php:102
197
+ msgid "I'd like to donate some more"
198
+ msgstr ""
199
 
200
+ #: redirection-strings.php:100
201
+ msgid "You get some useful software and I get to carry on making it better."
202
+ msgstr ""
203
 
204
+ #: redirection-strings.php:99
205
+ msgid "Please note I do not provide support and this is just a donation."
206
+ msgstr ""
207
 
208
+ #: redirection-strings.php:98
209
+ msgid "Yes I'd like to donate"
210
+ msgstr ""
211
 
212
+ #: redirection-strings.php:97
213
+ msgid "Thank you for making a donation!"
214
+ msgstr ""
 
215
 
216
+ #: redirection-strings.php:91
217
+ msgid "Forever"
218
+ msgstr ""
 
219
 
220
+ #: redirection-strings.php:88
221
+ msgid "Failed to save data"
222
+ msgstr ""
 
223
 
224
+ #: redirection-strings.php:75
225
+ msgid "Failed to load data"
226
+ msgstr ""
227
 
228
+ #: redirection-strings.php:71
229
+ msgid "CSV Format"
230
+ msgstr ""
231
 
232
+ #: redirection-strings.php:70
233
+ msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
+ msgstr ""
235
 
236
+ #: redirection-strings.php:67
237
+ msgid "Delete the plugin - are you sure?"
238
+ msgstr ""
239
 
240
+ #: redirection-strings.php:66
241
+ 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."
242
+ msgstr ""
243
 
244
+ #: redirection-strings.php:65
245
+ msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
+ msgstr ""
247
 
248
+ #: redirection-strings.php:64
249
+ msgid "Yes! Delete the plugin"
250
+ msgstr ""
251
 
252
+ #: redirection-strings.php:63
253
+ msgid "No! Don't delete the plugin"
254
+ msgstr ""
 
255
 
256
+ #: view/item-edit.php:35
257
+ msgid "Advanced Settings"
258
+ msgstr "Genel Ayarlar"
 
259
 
260
+ #. Author URI of the plugin/theme
261
+ msgid "http://urbangiraffe.com"
262
+ msgstr "http://urbangiraffe.com"
263
 
264
+ #. Author of the plugin/theme
265
+ msgid "John Godley"
266
+ msgstr "John Godley"
267
 
268
+ #. Description of the plugin/theme
269
+ msgid "Manage all your 301 redirects and monitor 404 errors"
270
+ msgstr "Tüm 301 yönlendirmelerinizi yönetin ve 404 hatalarını görüntüleyin"
271
 
272
+ #. Plugin URI of the plugin/theme
273
+ msgid "http://urbangiraffe.com/plugins/redirection/"
274
+ msgstr "http://urbangiraffe.com/plugins/redirection/"
275
 
276
+ #: redirection-strings.php:101
277
+ 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}}."
278
+ msgstr ""
279
 
280
+ #: view/support.php:3
281
+ msgid "Redirection Support"
282
+ msgstr "Redirection Destek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
 
284
+ #: view/submenu.php:47
285
+ msgid "Support"
286
+ msgstr "Destek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
 
288
+ #: view/submenu.php:34
289
+ msgid "404s"
290
+ msgstr "404'ler"
291
 
292
+ #: view/submenu.php:32
293
+ msgid "404s from %s"
294
+ msgstr ""
295
 
296
+ #: view/submenu.php:23
297
+ msgid "Log"
298
+ msgstr "Kayıtlar"
299
 
300
+ #: redirection-strings.php:69
301
+ msgid "Delete Redirection"
302
+ msgstr "Yönlendirmeyi sil"
303
 
304
+ #: redirection-strings.php:72
305
+ msgid "Upload"
306
+ msgstr "Yükle"
307
 
308
+ #: redirection-strings.php:73
309
+ msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
+ msgstr ""
311
 
312
+ #: redirection-strings.php:74
313
+ msgid "Import"
314
+ msgstr "Aktar"
315
 
316
+ #: redirection-strings.php:76
317
+ msgid "Update"
318
+ msgstr "Güncelle"
 
 
 
 
319
 
320
+ #: redirection-strings.php:77
321
+ msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
+ msgstr ""
323
 
324
+ #: redirection-strings.php:78
325
+ msgid "Auto-generate URL"
326
+ msgstr "URL'yi otomatik oluştur"
327
 
328
+ #: redirection-strings.php:79
329
+ msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
+ msgstr ""
331
 
332
+ #: redirection-strings.php:80
333
+ msgid "RSS Token"
334
+ msgstr "Alınan RSS"
335
 
336
+ #: redirection-strings.php:90
337
+ msgid "Don't monitor"
338
+ msgstr "URL Takip etme"
 
 
339
 
340
+ #: redirection-strings.php:81
341
+ msgid "Monitor changes to posts"
342
+ msgstr ""
343
 
344
+ #: redirection-strings.php:83
345
+ msgid "404 Logs"
346
+ msgstr ""
 
347
 
348
+ #: redirection-strings.php:82 redirection-strings.php:84
349
+ msgid "(time to keep logs for)"
350
+ msgstr ""
351
 
352
+ #: redirection-strings.php:85
353
+ msgid "Redirect Logs"
354
+ msgstr ""
 
355
 
356
+ #: redirection-strings.php:86
357
+ msgid "I'm a nice person and I have helped support the author of this plugin"
358
+ msgstr "Ben iyi birisiyim ve bu eklentiyi yazan kişiyi desteklemeliyim."
 
 
 
359
 
360
+ #: redirection-strings.php:87
361
+ msgid "Plugin support"
362
+ msgstr "Eklenti desteği"
363
 
364
+ #: view/options.php:4 view/submenu.php:42
365
+ msgid "Options"
366
+ msgstr "Ayarlar"
 
 
367
 
368
+ #: redirection-strings.php:92
369
+ msgid "Two months"
370
+ msgstr "İki ay"
 
371
 
372
+ #: redirection-strings.php:93
373
+ msgid "A month"
374
+ msgstr "Bir ay"
 
375
 
376
+ #: redirection-strings.php:94
377
+ msgid "A week"
378
+ msgstr "Bir hafta"
 
379
 
380
+ #: redirection-strings.php:95
381
+ msgid "A day"
382
+ msgstr "Bir gün"
 
 
 
383
 
384
+ #: redirection-strings.php:96
385
+ msgid "No logs"
386
+ msgstr ""
 
387
 
388
+ #: view/module-list.php:3 view/submenu.php:16
389
+ msgid "Modules"
390
+ msgstr "Modüller"
391
+
392
+ #: redirection-strings.php:28
393
+ msgid "Export to CSV"
394
+ msgstr "CSV'ye aktar"
395
+
396
+ #: redirection-strings.php:27
397
+ msgid "Delete All"
398
+ msgstr "Hepsini sil"
399
+
400
+ #: redirection-admin.php:322
401
+ msgid "Redirection Log"
402
+ msgstr "Yönlendirme Kayıtları"
403
+
404
+ #: view/item-edit.php:14
405
+ msgid "optional"
406
+ msgstr "Opsiyonal"
407
 
408
+ #: view/item-edit.php:11
409
+ msgid "Description"
410
+ msgstr "Açıklama"
 
411
 
412
+ #: redirection-strings.php:5
413
+ 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."
414
+ msgstr ""
415
 
416
+ #: redirection-strings.php:6
417
  msgid "Add Group"
418
  msgstr "Yeni Grup Ekle"
419
 
420
+ #: redirection-strings.php:132 view/item-list.php:10
421
+ msgid "Search"
422
+ msgstr "Ara"
423
 
424
+ #: view/group-list.php:3 view/submenu.php:11
425
+ msgid "Groups"
426
+ msgstr "Gruplar"
427
 
428
+ #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
+ msgid "Save"
430
+ msgstr "Kaydet"
431
 
432
+ #: view/add.php:46
433
+ msgid "Add Redirection"
434
+ msgstr "Yönlendirme Ekle"
435
 
436
+ #: view/add.php:36 view/item-edit.php:18
437
+ msgid "Group"
438
+ msgstr "Grup"
 
439
 
440
+ #: view/add.php:28
441
+ msgid "Regular expression"
442
+ msgstr "Düzenli İfadeler"
443
 
444
+ #: view/add.php:23
445
+ msgid "Action"
446
+ msgstr "İşlem"
447
 
448
+ #: view/add.php:17
449
+ msgid "Match"
450
+ msgstr "Karşılaştır"
451
 
452
+ #: view/add.php:7
453
+ msgid "Your redirection has been added."
454
+ msgstr "Yeni yönlendirmeniz eklenmiştir."
455
 
456
+ #: view/add.php:4
457
+ msgid "Add new redirection"
458
+ msgstr "Yeni yönlendirme ekle"
459
 
460
+ #: redirection-strings.php:14 redirection-strings.php:44
461
+ #: redirection-strings.php:54 view/item-edit.php:33
462
+ msgid "Cancel"
463
+ msgstr "İptal"
464
 
465
+ #: redirection-strings.php:55
466
+ msgid "Download"
467
+ msgstr "İndir"
468
 
469
+ #: redirection-admin.php:407
470
+ msgid "Sorry, but your redirection was not created"
471
+ msgstr "Üzgünüm, yönlendirileceğiniz alan oluşturulmamıştır."
472
 
473
+ #: redirection-admin.php:344 redirection-admin.php:365
474
+ #: redirection-admin.php:387
475
+ msgid "Unable to perform action"
476
+ msgstr ""
477
 
478
+ #: redirection-admin.php:311
479
+ msgid "No items were imported"
480
+ msgstr "Hiçbir eleman içeri aktarılmadı"
481
 
482
+ #: redirection-admin.php:309
483
+ msgid "%d redirection was successfully imported"
484
+ msgid_plural "%d redirections were successfully imported"
485
+ msgstr[0] ""
486
+ msgstr[1] ""
487
 
488
+ #: redirection-strings.php:89
489
+ msgid "Your options were updated"
490
+ msgstr "Ayarlarınız güncellendi"
491
 
492
+ #. Plugin Name of the plugin/theme
493
+ msgid "Redirection"
494
+ msgstr "Redirection"
495
 
496
+ #: redirection-admin.php:165
497
+ msgid "Settings"
498
+ msgstr "Ayarlar"
499
 
500
+ #: redirection-strings.php:62
501
+ msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
+ msgstr ""
503
+
504
+ #: redirection-strings.php:60
505
+ msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
+ msgstr ""
507
 
508
+ #: redirection-strings.php:61
509
+ msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
+ msgstr ""
511
+
512
+ #: redirection-strings.php:46
513
+ msgid "Automatically remove or add www to your site."
514
+ msgstr "Siteye otomatik olarak www ekle ya da kaldır."
515
 
516
+ #: redirection-strings.php:49
517
+ msgid "Default server"
518
+ msgstr "Varsayılan sunucu"
519
 
520
+ #: redirection-strings.php:50
521
+ msgid "Canonical URL"
522
+ msgstr ""
523
 
524
+ #: redirection-strings.php:51
525
+ msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
+ msgstr "WordPress yüklendi: {{code}}%s{{/code}}"
527
 
528
+ #: redirection-strings.php:52
529
+ msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
+ msgstr ""
531
+
532
+ #: redirection-strings.php:53
533
+ msgid ".htaccess Location"
534
+ msgstr ".htaccess konumu"
535
 
536
+ #: models/redirect.php:382
537
+ msgid "Do nothing"
538
+ msgstr "Hiçbir şey yapma"
539
 
540
+ #: models/redirect.php:381
541
+ msgid "Error (404)"
542
+ msgstr "Hata (404)"
543
 
544
+ #: models/redirect.php:380
545
+ msgid "Pass-through"
546
+ msgstr "Doğrudan"
547
 
548
+ #: models/redirect.php:379
549
+ msgid "Redirect to random post"
550
+ msgstr "Rastgele bir yazıya yönlendir"
551
 
552
+ #: models/redirect.php:378
553
+ msgid "Redirect to URL"
554
+ msgstr "URL'ye Yönlendir"
555
 
556
+ #: models/redirect.php:216
557
+ msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
+ msgstr ""
559
 
560
+ #: models/redirect.php:178
561
+ msgid "Invalid source URL when creating redirect for given match type"
562
+ msgstr ""
563
 
564
+ #: models/redirect.php:174
565
+ msgid "Invalid group when creating redirect"
566
+ msgstr ""
567
 
568
+ #: models/redirect.php:166
569
+ msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
+ msgstr ""
571
 
572
+ #: models/redirect.php:160
573
+ msgid "Source and target URL must be different"
574
+ msgstr "Kaynak ve hedef URL farklı olmalıdır"
575
 
576
+ #: redirection-strings.php:59
577
+ msgid "Configure"
578
+ msgstr ""
 
579
 
580
+ #: redirection-strings.php:34 redirection-strings.php:41
581
+ msgid "Show only this IP"
582
+ msgstr "Sadece bu IP'yi göster"
583
 
584
+ #: redirection-strings.php:30 redirection-strings.php:37
585
+ msgid "IP"
586
+ msgstr "IP"
 
587
 
588
+ #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
+ #: view/item-edit.php:4
590
+ msgid "Source URL"
591
+ msgstr "Kaynak URL"
592
 
593
+ #: redirection-strings.php:33 redirection-strings.php:40
594
+ msgid "Date"
595
+ msgstr "Tarih"
596
 
597
+ #: redirection-strings.php:42
598
+ msgid "Add Redirect"
599
+ msgstr "Yönlendirme ekle"
600
 
601
+ #: redirection-strings.php:7
602
+ msgid "All modules"
603
+ msgstr ""
604
 
605
+ #: redirection-strings.php:20
606
+ msgid "View Redirects"
607
+ msgstr "Yönlendirmeleri göster"
608
 
609
+ #: redirection-strings.php:11 redirection-strings.php:16
610
+ #: redirection-strings.php:58
611
+ msgid "Module"
612
+ msgstr "Modüle"
613
 
614
+ #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
+ msgid "Redirects"
616
+ msgstr "Yönlendirmeler"
617
 
618
+ #: redirection-strings.php:4 redirection-strings.php:13
619
+ #: redirection-strings.php:17
620
+ msgid "Name"
621
+ msgstr "İsim"
622
 
623
+ #: models/pager.php:164 redirection-strings.php:118
624
+ msgid "Filter"
625
+ msgstr "Filtrele"
626
 
627
+ #: models/pager.php:151
628
+ msgid "No group filter"
629
+ msgstr ""
630
 
631
+ #: models/pager.php:104
632
+ msgid "Reset Hits"
633
+ msgstr "Hitleri Sıfırla"
634
 
635
+ #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
+ #: redirection-strings.php:18
637
+ msgid "Enable"
638
+ msgstr "Etkinleştir"
639
 
640
+ #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
+ #: redirection-strings.php:19
642
+ msgid "Disable"
643
+ msgstr "Etkisizleştir"
644
 
645
+ #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
+ #: redirection-strings.php:21 redirection-strings.php:29
647
+ #: redirection-strings.php:35 redirection-strings.php:36
648
+ #: redirection-strings.php:43 redirection-strings.php:68
649
+ msgid "Delete"
650
+ msgstr "Sil"
651
 
652
+ #: models/pager.php:53 redirection-strings.php:22
653
+ msgid "Edit"
654
+ msgstr "Düzenle"
655
 
656
+ #: models/pager.php:31
657
+ msgid "Last Access"
658
+ msgstr "Son Giriş"
659
 
660
+ #: models/pager.php:30
661
+ msgid "Hits"
662
+ msgstr "Hitler"
663
 
664
+ #: models/pager.php:29
665
+ msgid "URL"
666
+ msgstr "URL"
667
 
668
+ #: models/pager.php:28
669
+ msgid "Type"
670
+ msgstr "Tür"
671
 
672
+ #: models/database.php:121
673
+ msgid "Modified Posts"
674
+ msgstr "Değiştirilmiş Yazılar"
675
 
676
+ #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
+ msgid "Redirections"
678
+ msgstr "Yönlendirmeler"
 
679
 
680
+ #: matches/user-agent.php:51
681
+ msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
+ msgstr "Ziyaretçi kullanıcı arayüzü eşleşiyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir. <strong>Tüm karşılaştırmalarda düzenli ifadeler olarak uygulanmaktadır.</strong>.\n"
683
 
684
+ #: matches/user-agent.php:25
685
+ msgid "User Agent"
686
+ msgstr "Kullanıcı Bilgileri"
687
 
688
+ #: matches/user-agent.php:20
689
+ msgid "Nintendo Wii"
690
+ msgstr "Nintendo Wii"
691
 
692
+ #: matches/user-agent.php:19
693
+ msgid "Android"
694
+ msgstr "Android"
695
 
696
+ #: matches/user-agent.php:18
697
+ msgid "iPad"
698
+ msgstr "iPad"
699
 
700
+ #: matches/user-agent.php:17
701
+ msgid "iPhone"
702
+ msgstr "iPhone"
703
 
704
+ #: matches/user-agent.php:16
705
+ msgid "Safari"
706
+ msgstr "Safari"
707
 
708
+ #: matches/user-agent.php:15
709
+ msgid "Opera"
710
+ msgstr "Opera"
711
 
712
+ #: matches/user-agent.php:14
713
+ msgid "FireFox"
714
+ msgstr "FireFox"
715
 
716
+ #: matches/user-agent.php:13
717
+ msgid "Internet Explorer"
718
+ msgstr "Internet Explorer"
719
 
720
+ #: matches/user-agent.php:12
721
+ msgid "FeedBurner"
722
+ msgstr "FeedBurner"
723
 
724
+ #: matches/user-agent.php:7
725
+ msgid "URL and user agent"
726
+ msgstr "URL ve kullanıcı bilgileri"
727
 
728
+ #: matches/url.php:12 view/add.php:32
729
+ msgid "Target URL"
730
+ msgstr "Hedef URL"
731
 
732
+ #: matches/url.php:5
733
+ msgid "URL only"
734
+ msgstr "Yalnız URL"
735
 
736
+ #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
+ #: matches/user-agent.php:70
738
+ msgid "Not matched"
739
+ msgstr "Karşılaştırılamadı"
740
 
741
+ #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
+ #: matches/user-agent.php:60
743
+ msgid "Matched"
744
+ msgstr "Karşılaştırıldı"
745
 
746
+ #: matches/referrer.php:40
747
+ msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
+ msgstr "Ziyaretçi yönlendirmede eşleşme oluyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir."
749
 
750
+ #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
+ #: matches/user-agent.php:38
752
+ msgid "HTTP Code"
753
+ msgstr "HTTP Kodu"
754
 
755
+ #: matches/referrer.php:24 view/item-edit.php:7
756
+ msgid "Regex"
757
+ msgstr "Regex"
758
 
759
+ #: matches/referrer.php:21 redirection-strings.php:31
760
+ #: redirection-strings.php:38
761
+ msgid "Referrer"
762
+ msgstr "Ziyaretçi gönderen"
763
 
764
+ #: matches/referrer.php:8
765
+ msgid "URL and referrer"
766
+ msgstr "URL ve ziyaretçi gönderen"
767
 
768
+ #: matches/login.php:35 matches/login.php:37
769
+ msgid "Logged Out"
770
+ msgstr "Çıkış Yapıldı"
771
 
772
+ #: matches/login.php:23 matches/login.php:25
773
+ msgid "Logged In"
774
+ msgstr "Giriş Yapıldı"
775
 
776
+ #: matches/login.php:16
777
+ msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
+ msgstr "Hedef URL, sıradaki URL'lerin içinden seçilecek, ve kullanıcının giriş yapıp yapmamış olmasına göre değişiklik gösterir. Boş bir URL yazmak ise kullanıcının yönlendirilmeyeceği anlamına gelir."
779
 
780
+ #: matches/login.php:7
781
+ msgid "URL and login status"
782
+ msgstr "URL ve giriş bilgileri"
locale/redirection.pot CHANGED
@@ -14,702 +14,690 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
- #: redirection-admin.php:165
18
  msgid "Settings"
19
  msgstr ""
20
 
21
- #: redirection-admin.php:180
22
- msgid "Log entries"
23
  msgstr ""
24
 
25
- #: redirection-admin.php:309
26
  msgid "%d redirection was successfully imported"
27
  msgid_plural "%d redirections were successfully imported"
28
  msgstr[0] ""
29
  msgstr[1] ""
30
 
31
- #: redirection-admin.php:311
32
  msgid "No items were imported"
33
  msgstr ""
34
 
35
- #: redirection-admin.php:322
36
  msgid "Redirection Log"
37
  msgstr ""
38
 
39
- #: redirection-admin.php:328
40
  msgid "Redirection 404"
41
  msgstr ""
42
 
43
- #: redirection-admin.php:407
44
- msgid "Sorry, but your redirection was not created"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  msgstr ""
46
 
47
- #: redirection-strings.php:4, redirection-strings.php:13, redirection-strings.php:17
 
 
 
 
 
 
 
 
48
  msgid "Name"
49
  msgstr ""
50
 
51
- #: redirection-strings.php:5
52
  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."
53
  msgstr ""
54
 
55
- #: redirection-strings.php:6
56
  msgid "Add Group"
57
  msgstr ""
58
 
59
- #: redirection-strings.php:7
60
  msgid "All modules"
61
  msgstr ""
62
 
63
- #: redirection-strings.php:8, redirection-strings.php:19, models/pager.php:59, models/pager.php:103
64
  msgid "Disable"
65
  msgstr ""
66
 
67
- #: redirection-strings.php:9, redirection-strings.php:18, models/pager.php:61, models/pager.php:102
68
  msgid "Enable"
69
  msgstr ""
70
 
71
- #: redirection-strings.php:10, redirection-strings.php:21, redirection-strings.php:29, redirection-strings.php:35, redirection-strings.php:36, redirection-strings.php:43, redirection-strings.php:68, models/pager.php:54, models/pager.php:101
72
  msgid "Delete"
73
  msgstr ""
74
 
75
- #: redirection-strings.php:11, redirection-strings.php:16, redirection-strings.php:58
76
  msgid "Module"
77
  msgstr ""
78
 
79
- #: redirection-strings.php:12, redirection-strings.php:57, view/submenu.php:6
80
  msgid "Redirects"
81
  msgstr ""
82
 
83
- #: redirection-strings.php:14, redirection-strings.php:44, redirection-strings.php:54, view/item-edit.php:33
84
  msgid "Cancel"
85
  msgstr ""
86
 
87
- #: redirection-strings.php:15, redirection-strings.php:45, view/item-edit.php:32
88
  msgid "Save"
89
  msgstr ""
90
 
91
- #: redirection-strings.php:20
92
  msgid "View Redirects"
93
  msgstr ""
94
 
95
- #: redirection-strings.php:22, models/pager.php:53
96
  msgid "Edit"
97
  msgstr ""
98
 
99
- #: redirection-strings.php:23
100
  msgid "No! Don't delete the logs"
101
  msgstr ""
102
 
103
- #: redirection-strings.php:24
104
  msgid "Yes! Delete the logs"
105
  msgstr ""
106
 
107
- #: redirection-strings.php:25
108
  msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
109
  msgstr ""
110
 
111
- #: redirection-strings.php:26
112
  msgid "Delete the logs - are you sure?"
113
  msgstr ""
114
 
115
- #: redirection-strings.php:27
116
  msgid "Delete All"
117
  msgstr ""
118
 
119
- #: redirection-strings.php:28
120
  msgid "Export to CSV"
121
  msgstr ""
122
 
123
- #: redirection-strings.php:30, redirection-strings.php:37
124
  msgid "IP"
125
  msgstr ""
126
 
127
- #: redirection-strings.php:31, redirection-strings.php:38, matches/referrer.php:21
128
  msgid "Referrer"
129
  msgstr ""
130
 
131
- #: redirection-strings.php:32, redirection-strings.php:39, view/add.php:13, view/item-edit.php:4
132
  msgid "Source URL"
133
  msgstr ""
134
 
135
- #: redirection-strings.php:33, redirection-strings.php:40
136
  msgid "Date"
137
  msgstr ""
138
 
139
- #: redirection-strings.php:34, redirection-strings.php:41
140
  msgid "Show only this IP"
141
  msgstr ""
142
 
143
- #: redirection-strings.php:42
144
  msgid "Add Redirect"
145
  msgstr ""
146
 
147
- #: redirection-strings.php:46
148
  msgid "Automatically remove or add www to your site."
149
  msgstr ""
150
 
151
- #: redirection-strings.php:47
152
  msgid "Add WWW"
153
  msgstr ""
154
 
155
- #: redirection-strings.php:48
156
  msgid "Remove WWW"
157
  msgstr ""
158
 
159
- #: redirection-strings.php:49
160
  msgid "Default server"
161
  msgstr ""
162
 
163
- #: redirection-strings.php:50
164
  msgid "Canonical URL"
165
  msgstr ""
166
 
167
- #: redirection-strings.php:51
168
  msgid "WordPress is installed in: {{code}}%s{{/code}}"
169
  msgstr ""
170
 
171
- #: redirection-strings.php:52
172
  msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
173
  msgstr ""
174
 
175
- #: redirection-strings.php:53
176
  msgid ".htaccess Location"
177
  msgstr ""
178
 
179
- #: redirection-strings.php:55
180
  msgid "Download"
181
  msgstr ""
182
 
183
- #: redirection-strings.php:56
184
  msgid "Failed to load"
185
  msgstr ""
186
 
187
- #: redirection-strings.php:59
188
  msgid "Configure"
189
  msgstr ""
190
 
191
- #: redirection-strings.php:60
192
  msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
193
  msgstr ""
194
 
195
- #: redirection-strings.php:61
196
  msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
197
  msgstr ""
198
 
199
- #: redirection-strings.php:62
200
  msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
201
  msgstr ""
202
 
203
- #: redirection-strings.php:63
 
 
 
 
204
  msgid "No! Don't delete the plugin"
205
  msgstr ""
206
 
207
- #: redirection-strings.php:64
208
  msgid "Yes! Delete the plugin"
209
  msgstr ""
210
 
211
- #: redirection-strings.php:65
212
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
213
  msgstr ""
214
 
215
- #: redirection-strings.php:66
216
  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."
217
  msgstr ""
218
 
219
- #: redirection-strings.php:67
220
  msgid "Delete the plugin - are you sure?"
221
  msgstr ""
222
 
223
- #: redirection-strings.php:69
224
  msgid "Delete Redirection"
225
  msgstr ""
226
 
227
- #: redirection-strings.php:70
228
  msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
229
  msgstr ""
230
 
231
- #: redirection-strings.php:71
232
  msgid "CSV Format"
233
  msgstr ""
234
 
235
- #: redirection-strings.php:72
236
  msgid "Upload"
237
  msgstr ""
238
 
239
- #: redirection-strings.php:73
240
  msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
241
  msgstr ""
242
 
243
- #: redirection-strings.php:74
244
  msgid "Import"
245
  msgstr ""
246
 
247
- #: redirection-strings.php:75
248
- msgid "Failed to load data"
249
- msgstr ""
250
-
251
- #: redirection-strings.php:76
252
  msgid "Update"
253
  msgstr ""
254
 
255
- #: redirection-strings.php:77
256
  msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
257
  msgstr ""
258
 
259
- #: redirection-strings.php:78
260
  msgid "Auto-generate URL"
261
  msgstr ""
262
 
263
- #: redirection-strings.php:79
264
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
265
  msgstr ""
266
 
267
- #: redirection-strings.php:80
268
  msgid "RSS Token"
269
  msgstr ""
270
 
271
- #: redirection-strings.php:81
272
  msgid "Monitor changes to posts"
273
  msgstr ""
274
 
275
- #: redirection-strings.php:82, redirection-strings.php:84
276
  msgid "(time to keep logs for)"
277
  msgstr ""
278
 
279
- #: redirection-strings.php:83
280
- msgid "404 Logs"
281
- msgstr ""
282
-
283
- #: redirection-strings.php:85
284
- msgid "Redirect Logs"
285
- msgstr ""
286
-
287
- #: redirection-strings.php:86
288
- msgid "I'm a nice person and I have helped support the author of this plugin"
289
- msgstr ""
290
-
291
- #: redirection-strings.php:87
292
- msgid "Plugin support"
293
- msgstr ""
294
-
295
- #: redirection-strings.php:88
296
- msgid "Failed to save data"
297
- msgstr ""
298
-
299
- #: redirection-strings.php:89
300
- msgid "Your options were updated"
301
- msgstr ""
302
-
303
- #: redirection-strings.php:90
304
- msgid "Don't monitor"
305
- msgstr ""
306
-
307
- #: redirection-strings.php:91
308
- msgid "Forever"
309
- msgstr ""
310
-
311
  #: redirection-strings.php:92
312
- msgid "Two months"
313
- msgstr ""
314
-
315
- #: redirection-strings.php:93
316
- msgid "A month"
317
  msgstr ""
318
 
319
  #: redirection-strings.php:94
320
- msgid "A week"
321
  msgstr ""
322
 
323
  #: redirection-strings.php:95
324
- msgid "A day"
325
  msgstr ""
326
 
327
  #: redirection-strings.php:96
328
- msgid "No logs"
329
  msgstr ""
330
 
331
  #: redirection-strings.php:97
332
- msgid "Thank you for making a donation!"
333
  msgstr ""
334
 
335
  #: redirection-strings.php:98
336
- msgid "Yes I'd like to donate"
337
  msgstr ""
338
 
339
  #: redirection-strings.php:99
340
- msgid "Please note I do not provide support and this is just a donation."
341
  msgstr ""
342
 
343
  #: redirection-strings.php:100
344
- msgid "You get some useful software and I get to carry on making it better."
345
  msgstr ""
346
 
347
  #: redirection-strings.php:101
348
- 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}}."
349
  msgstr ""
350
 
351
  #: redirection-strings.php:102
352
- msgid "I'd like to donate some more"
353
  msgstr ""
354
 
355
  #: redirection-strings.php:103
356
- msgid "You've already supported this plugin - thank you!"
357
- msgstr ""
358
-
359
- #: redirection-strings.php:104
360
- msgid "Need some help? Maybe one of these questions will provide an answer"
361
  msgstr ""
362
 
363
- #: redirection-strings.php:105
364
- msgid "Frequently Asked Questions"
365
  msgstr ""
366
 
367
- #: redirection-strings.php:106
368
- msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
369
  msgstr ""
370
 
371
- #: redirection-strings.php:107
372
- msgid "Something isn't working!"
373
  msgstr ""
374
 
375
  #: redirection-strings.php:108
376
- msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
377
  msgstr ""
378
 
379
  #: redirection-strings.php:109
380
- msgid "Can I open a redirect in a new tab?"
381
- msgstr ""
382
-
383
- #: redirection-strings.php:110
384
- msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
385
- msgstr ""
386
-
387
- #: redirection-strings.php:111
388
- msgid "I deleted a redirection, why is it still redirecting?"
389
  msgstr ""
390
 
391
  #: redirection-strings.php:112
392
- msgid "Your email address:"
393
  msgstr ""
394
 
395
  #: redirection-strings.php:113
396
- 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."
397
  msgstr ""
398
 
399
- #: redirection-strings.php:114
400
- msgid "Want to keep up to date with changes to Redirection?"
401
- msgstr ""
402
-
403
- #: redirection-strings.php:115, redirection-strings.php:117
404
- msgid "Newsletter"
405
- msgstr ""
406
-
407
- #: redirection-strings.php:116
408
- msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
409
  msgstr ""
410
 
411
  #: redirection-strings.php:118
412
- msgid "Filter"
413
  msgstr ""
414
 
415
  #: redirection-strings.php:119
416
- msgid "Select All"
417
  msgstr ""
418
 
419
  #: redirection-strings.php:120
420
- msgid "%s item"
421
- msgid_plural "%s items"
422
- msgstr[0] ""
423
- msgstr[1] ""
424
 
425
  #: redirection-strings.php:121
426
- msgid "Last page"
427
  msgstr ""
428
 
429
  #: redirection-strings.php:122
430
- msgid "Next page"
431
  msgstr ""
432
 
433
  #: redirection-strings.php:123
434
- msgid "of %(page)s"
435
  msgstr ""
436
 
437
  #: redirection-strings.php:124
438
- msgid "Current Page"
439
  msgstr ""
440
 
441
  #: redirection-strings.php:125
442
- msgid "Prev page"
443
  msgstr ""
444
 
445
  #: redirection-strings.php:126
446
- msgid "First page"
447
  msgstr ""
448
 
449
  #: redirection-strings.php:127
450
- msgid "Apply"
451
  msgstr ""
452
 
453
  #: redirection-strings.php:128
454
- msgid "Bulk Actions"
455
  msgstr ""
456
 
457
  #: redirection-strings.php:129
458
- msgid "Select bulk action"
459
  msgstr ""
460
 
461
  #: redirection-strings.php:130
462
- msgid "No results"
463
  msgstr ""
464
 
465
  #: redirection-strings.php:131
466
- msgid "Sorry but something went wrong loading the data - please try again"
467
  msgstr ""
468
 
469
  #: redirection-strings.php:132
470
- msgid "Search"
471
  msgstr ""
472
 
473
  #: redirection-strings.php:133
474
- msgid "Search by IP"
475
  msgstr ""
476
 
477
  #: redirection-strings.php:134
478
- msgid "Please include these details in your report"
479
- msgstr ""
480
-
481
- #: redirection-strings.php:135
482
- msgid "Important details for the thing you just did"
483
  msgstr ""
484
 
485
- #: redirection-strings.php:136
486
- msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
487
  msgstr ""
488
 
489
- #: redirection-strings.php:137
490
- msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
491
  msgstr ""
492
 
493
- #: redirection-strings.php:138
494
- msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
495
  msgstr ""
496
 
497
- #: redirection-strings.php:139
498
- msgid "It didn't work when I tried again"
499
  msgstr ""
500
 
501
  #: redirection-strings.php:140
502
- msgid "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!"
503
  msgstr ""
504
 
505
  #: redirection-strings.php:141
506
- msgid "Something went wrong 🙁"
507
  msgstr ""
508
 
509
- #: matches/login.php:7
510
- msgid "URL and login status"
511
  msgstr ""
512
 
513
- #: matches/login.php:16
514
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
515
  msgstr ""
516
 
517
- #: matches/login.php:23, matches/login.php:25
518
- msgid "Logged In"
519
  msgstr ""
520
 
521
- #: matches/login.php:35, matches/login.php:37
522
- msgid "Logged Out"
523
  msgstr ""
524
 
525
- #: matches/referrer.php:8
526
- msgid "URL and referrer"
527
  msgstr ""
528
 
529
- #: matches/referrer.php:24, view/item-edit.php:7
530
- msgid "Regex"
531
  msgstr ""
532
 
533
- #: matches/referrer.php:28, matches/referrer.php:38, matches/url.php:20, matches/user-agent.php:38
534
- msgid "HTTP Code"
535
  msgstr ""
536
 
537
- #: matches/referrer.php:40
538
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
539
  msgstr ""
540
 
541
- #: matches/referrer.php:46, matches/referrer.php:48, matches/user-agent.php:58, matches/user-agent.php:60
542
- msgid "Matched"
543
  msgstr ""
544
 
545
- #: matches/referrer.php:56, matches/referrer.php:58, matches/user-agent.php:68, matches/user-agent.php:70
546
- msgid "Not matched"
547
  msgstr ""
548
 
549
- #: matches/url.php:5
550
- msgid "URL only"
551
  msgstr ""
552
 
553
- #: matches/url.php:12, view/add.php:32
554
- msgid "Target URL"
555
  msgstr ""
556
 
557
- #: matches/user-agent.php:7
558
- msgid "URL and user agent"
559
  msgstr ""
560
 
561
- #: matches/user-agent.php:12
562
- msgid "FeedBurner"
563
  msgstr ""
564
 
565
- #: matches/user-agent.php:13
566
- msgid "Internet Explorer"
567
  msgstr ""
568
 
569
- #: matches/user-agent.php:14
570
- msgid "FireFox"
571
  msgstr ""
572
 
573
- #: matches/user-agent.php:15
574
- msgid "Opera"
575
  msgstr ""
576
 
577
- #: matches/user-agent.php:16
578
- msgid "Safari"
579
  msgstr ""
580
 
581
- #: matches/user-agent.php:17
582
- msgid "iPhone"
583
  msgstr ""
584
 
585
- #: matches/user-agent.php:18
586
- msgid "iPad"
587
  msgstr ""
588
 
589
- #: matches/user-agent.php:19
590
- msgid "Android"
591
  msgstr ""
592
 
593
- #: matches/user-agent.php:20
594
- msgid "Nintendo Wii"
595
  msgstr ""
596
 
597
- #: matches/user-agent.php:25
598
- msgid "User Agent"
599
  msgstr ""
600
 
601
- #: matches/user-agent.php:51
602
- msgid ""
603
- "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
604
- ""
605
  msgstr ""
606
 
607
- #: models/database.php:120, view/item-list.php:3
608
- msgid "Redirections"
609
  msgstr ""
610
 
611
- #: models/database.php:121
612
- msgid "Modified Posts"
613
  msgstr ""
614
 
615
- #: models/pager.php:28
616
- msgid "Type"
617
  msgstr ""
618
 
619
- #: models/pager.php:29
620
- msgid "URL"
621
  msgstr ""
622
 
623
- #: models/pager.php:30
624
- msgid "Hits"
625
  msgstr ""
626
 
627
- #: models/pager.php:31
628
- msgid "Last Access"
 
 
 
 
 
 
629
  msgstr ""
630
 
631
- #: models/pager.php:104
632
- msgid "Reset Hits"
633
  msgst
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
+ #: redirection-admin.php:121
18
  msgid "Settings"
19
  msgstr ""
20
 
21
+ #: redirection-admin.php:136
22
+ msgid "Log entries (100 max)"
23
  msgstr ""
24
 
25
+ #: redirection-admin.php:269
26
  msgid "%d redirection was successfully imported"
27
  msgid_plural "%d redirections were successfully imported"
28
  msgstr[0] ""
29
  msgstr[1] ""
30
 
31
+ #: redirection-admin.php:271
32
  msgid "No items were imported"
33
  msgstr ""
34
 
35
+ #: redirection-admin.php:282
36
  msgid "Redirection Log"
37
  msgstr ""
38
 
39
+ #: redirection-admin.php:288
40
  msgid "Redirection 404"
41
  msgstr ""
42
 
43
+ #: redirection-strings.php:4
44
+ msgid "Please include these details in your report"
45
+ msgstr ""
46
+
47
+ #: redirection-strings.php:5
48
+ msgid "Important details for the thing you just did"
49
+ msgstr ""
50
+
51
+ #: redirection-strings.php:6
52
+ msgid "If this is a new problem then please either create a new issue, or send it directly to john@urbangiraffe.com. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
53
+ msgstr ""
54
+
55
+ #: redirection-strings.php:7
56
+ msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
57
+ msgstr ""
58
+
59
+ #: redirection-strings.php:8
60
+ msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
61
+ msgstr ""
62
+
63
+ #: redirection-strings.php:9
64
+ msgid "It didn't work when I tried again"
65
  msgstr ""
66
 
67
+ #: redirection-strings.php:10
68
+ msgid "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!"
69
+ msgstr ""
70
+
71
+ #: redirection-strings.php:11
72
+ msgid "Something went wrong 🙁"
73
+ msgstr ""
74
+
75
+ #: redirection-strings.php:12, redirection-strings.php:21, redirection-strings.php:25
76
  msgid "Name"
77
  msgstr ""
78
 
79
+ #: redirection-strings.php:13
80
  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."
81
  msgstr ""
82
 
83
+ #: redirection-strings.php:14
84
  msgid "Add Group"
85
  msgstr ""
86
 
87
+ #: redirection-strings.php:15
88
  msgid "All modules"
89
  msgstr ""
90
 
91
+ #: redirection-strings.php:16, redirection-strings.php:27, redirection-strings.php:143, redirection-strings.php:156
92
  msgid "Disable"
93
  msgstr ""
94
 
95
+ #: redirection-strings.php:17, redirection-strings.php:26, redirection-strings.php:144, redirection-strings.php:155
96
  msgid "Enable"
97
  msgstr ""
98
 
99
+ #: redirection-strings.php:18, redirection-strings.php:29, redirection-strings.php:37, redirection-strings.php:43, redirection-strings.php:44, redirection-strings.php:51, redirection-strings.php:78, redirection-strings.php:145, redirection-strings.php:157
100
  msgid "Delete"
101
  msgstr ""
102
 
103
+ #: redirection-strings.php:19, redirection-strings.php:24, redirection-strings.php:67
104
  msgid "Module"
105
  msgstr ""
106
 
107
+ #: redirection-strings.php:20, redirection-strings.php:66, view/submenu.php:6
108
  msgid "Redirects"
109
  msgstr ""
110
 
111
+ #: redirection-strings.php:22, redirection-strings.php:53, redirection-strings.php:63, redirection-strings.php:114
112
  msgid "Cancel"
113
  msgstr ""
114
 
115
+ #: redirection-strings.php:23, redirection-strings.php:54, redirection-strings.php:117
116
  msgid "Save"
117
  msgstr ""
118
 
119
+ #: redirection-strings.php:28
120
  msgid "View Redirects"
121
  msgstr ""
122
 
123
+ #: redirection-strings.php:30, redirection-strings.php:158
124
  msgid "Edit"
125
  msgstr ""
126
 
127
+ #: redirection-strings.php:31
128
  msgid "No! Don't delete the logs"
129
  msgstr ""
130
 
131
+ #: redirection-strings.php:32
132
  msgid "Yes! Delete the logs"
133
  msgstr ""
134
 
135
+ #: redirection-strings.php:33
136
  msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
137
  msgstr ""
138
 
139
+ #: redirection-strings.php:34
140
  msgid "Delete the logs - are you sure?"
141
  msgstr ""
142
 
143
+ #: redirection-strings.php:35
144
  msgid "Delete All"
145
  msgstr ""
146
 
147
+ #: redirection-strings.php:36
148
  msgid "Export to CSV"
149
  msgstr ""
150
 
151
+ #: redirection-strings.php:38, redirection-strings.php:45
152
  msgid "IP"
153
  msgstr ""
154
 
155
+ #: redirection-strings.php:39, redirection-strings.php:46, redirection-strings.php:153
156
  msgid "Referrer"
157
  msgstr ""
158
 
159
+ #: redirection-strings.php:40, redirection-strings.php:47, redirection-strings.php:116
160
  msgid "Source URL"
161
  msgstr ""
162
 
163
+ #: redirection-strings.php:41, redirection-strings.php:48
164
  msgid "Date"
165
  msgstr ""
166
 
167
+ #: redirection-strings.php:42, redirection-strings.php:49
168
  msgid "Show only this IP"
169
  msgstr ""
170
 
171
+ #: redirection-strings.php:50, redirection-strings.php:52, redirection-strings.php:139
172
  msgid "Add Redirect"
173
  msgstr ""
174
 
175
+ #: redirection-strings.php:55
176
  msgid "Automatically remove or add www to your site."
177
  msgstr ""
178
 
179
+ #: redirection-strings.php:56
180
  msgid "Add WWW"
181
  msgstr ""
182
 
183
+ #: redirection-strings.php:57
184
  msgid "Remove WWW"
185
  msgstr ""
186
 
187
+ #: redirection-strings.php:58
188
  msgid "Default server"
189
  msgstr ""
190
 
191
+ #: redirection-strings.php:59
192
  msgid "Canonical URL"
193
  msgstr ""
194
 
195
+ #: redirection-strings.php:60
196
  msgid "WordPress is installed in: {{code}}%s{{/code}}"
197
  msgstr ""
198
 
199
+ #: redirection-strings.php:61
200
  msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
201
  msgstr ""
202
 
203
+ #: redirection-strings.php:62
204
  msgid ".htaccess Location"
205
  msgstr ""
206
 
207
+ #: redirection-strings.php:64
208
  msgid "Download"
209
  msgstr ""
210
 
211
+ #: redirection-strings.php:65
212
  msgid "Failed to load"
213
  msgstr ""
214
 
215
+ #: redirection-strings.php:68
216
  msgid "Configure"
217
  msgstr ""
218
 
219
+ #: redirection-strings.php:69
220
  msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
221
  msgstr ""
222
 
223
+ #: redirection-strings.php:70
224
  msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
225
  msgstr ""
226
 
227
+ #: redirection-strings.php:71
228
  msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
229
  msgstr ""
230
 
231
+ #: redirection-strings.php:72
232
+ msgid "View notice"
233
+ msgstr ""
234
+
235
+ #: redirection-strings.php:73
236
  msgid "No! Don't delete the plugin"
237
  msgstr ""
238
 
239
+ #: redirection-strings.php:74
240
  msgid "Yes! Delete the plugin"
241
  msgstr ""
242
 
243
+ #: redirection-strings.php:75
244
  msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
245
  msgstr ""
246
 
247
+ #: redirection-strings.php:76
248
  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."
249
  msgstr ""
250
 
251
+ #: redirection-strings.php:77
252
  msgid "Delete the plugin - are you sure?"
253
  msgstr ""
254
 
255
+ #: redirection-strings.php:79
256
  msgid "Delete Redirection"
257
  msgstr ""
258
 
259
+ #: redirection-strings.php:80
260
  msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
261
  msgstr ""
262
 
263
+ #: redirection-strings.php:81
264
  msgid "CSV Format"
265
  msgstr ""
266
 
267
+ #: redirection-strings.php:82
268
  msgid "Upload"
269
  msgstr ""
270
 
271
+ #: redirection-strings.php:83
272
  msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
273
  msgstr ""
274
 
275
+ #: redirection-strings.php:84
276
  msgid "Import"
277
  msgstr ""
278
 
279
+ #: redirection-strings.php:85
 
 
 
 
280
  msgid "Update"
281
  msgstr ""
282
 
283
+ #: redirection-strings.php:86
284
  msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
285
  msgstr ""
286
 
287
+ #: redirection-strings.php:87
288
  msgid "Auto-generate URL"
289
  msgstr ""
290
 
291
+ #: redirection-strings.php:88
292
  msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
293
  msgstr ""
294
 
295
+ #: redirection-strings.php:89
296
  msgid "RSS Token"
297
  msgstr ""
298
 
299
+ #: redirection-strings.php:90
300
  msgid "Monitor changes to posts"
301
  msgstr ""
302
 
303
+ #: redirection-strings.php:91, redirection-strings.php:93
304
  msgid "(time to keep logs for)"
305
  msgstr ""
306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  #: redirection-strings.php:92
308
+ msgid "404 Logs"
 
 
 
 
309
  msgstr ""
310
 
311
  #: redirection-strings.php:94
312
+ msgid "Redirect Logs"
313
  msgstr ""
314
 
315
  #: redirection-strings.php:95
316
+ msgid "I'm a nice person and I have helped support the author of this plugin"
317
  msgstr ""
318
 
319
  #: redirection-strings.php:96
320
+ msgid "Plugin support"
321
  msgstr ""
322
 
323
  #: redirection-strings.php:97
324
+ msgid "Don't monitor"
325
  msgstr ""
326
 
327
  #: redirection-strings.php:98
328
+ msgid "Forever"
329
  msgstr ""
330
 
331
  #: redirection-strings.php:99
332
+ msgid "Two months"
333
  msgstr ""
334
 
335
  #: redirection-strings.php:100
336
+ msgid "A month"
337
  msgstr ""
338
 
339
  #: redirection-strings.php:101
340
+ msgid "A week"
341
  msgstr ""
342
 
343
  #: redirection-strings.php:102
344
+ msgid "A day"
345
  msgstr ""
346
 
347
  #: redirection-strings.php:103
348
+ msgid "No logs"
 
 
 
 
349
  msgstr ""
350
 
351
+ #: redirection-strings.php:104, redirection-strings.php:105
352
+ msgid "Saving..."
353
  msgstr ""
354
 
355
+ #: redirection-strings.php:106, redirection-strings.php:110
356
+ msgid "Unmatched Target"
357
  msgstr ""
358
 
359
+ #: redirection-strings.php:107, redirection-strings.php:111
360
+ msgid "Matched Target"
361
  msgstr ""
362
 
363
  #: redirection-strings.php:108
364
+ msgid "Logged Out"
365
  msgstr ""
366
 
367
  #: redirection-strings.php:109
368
+ msgid "Logged In"
 
 
 
 
 
 
 
 
369
  msgstr ""
370
 
371
  #: redirection-strings.php:112
372
+ msgid "Target URL"
373
  msgstr ""
374
 
375
  #: redirection-strings.php:113
376
+ msgid "Show advanced options"
377
  msgstr ""
378
 
379
+ #: redirection-strings.php:115, redirection-strings.php:150, redirection-strings.php:152
380
+ msgid "Regex"
 
 
 
 
 
 
 
 
381
  msgstr ""
382
 
383
  #: redirection-strings.php:118
384
+ msgid "Group"
385
  msgstr ""
386
 
387
  #: redirection-strings.php:119
388
+ msgid "with HTTP code"
389
  msgstr ""
390
 
391
  #: redirection-strings.php:120
392
+ msgid "When matched"
393
+ msgstr ""
 
 
394
 
395
  #: redirection-strings.php:121
396
+ msgid "Match"
397
  msgstr ""
398
 
399
  #: redirection-strings.php:122
400
+ msgid "Title"
401
  msgstr ""
402
 
403
  #: redirection-strings.php:123
404
+ msgid "410 - Found"
405
  msgstr ""
406
 
407
  #: redirection-strings.php:124
408
+ msgid "404 - Not Found"
409
  msgstr ""
410
 
411
  #: redirection-strings.php:125
412
+ msgid "401 - Unauthorized"
413
  msgstr ""
414
 
415
  #: redirection-strings.php:126
416
+ msgid "308 - Permanent Redirect"
417
  msgstr ""
418
 
419
  #: redirection-strings.php:127
420
+ msgid "307 - Temporary Redirect"
421
  msgstr ""
422
 
423
  #: redirection-strings.php:128
424
+ msgid "302 - Found"
425
  msgstr ""
426
 
427
  #: redirection-strings.php:129
428
+ msgid "301 - Moved Permanently"
429
  msgstr ""
430
 
431
  #: redirection-strings.php:130
432
+ msgid "Do nothing"
433
  msgstr ""
434
 
435
  #: redirection-strings.php:131
436
+ msgid "Error (404)"
437
  msgstr ""
438
 
439
  #: redirection-strings.php:132
440
+ msgid "Pass-through"
441
  msgstr ""
442
 
443
  #: redirection-strings.php:133
444
+ msgid "Redirect to random post"
445
  msgstr ""
446
 
447
  #: redirection-strings.php:134
448
+ msgid "Redirect to URL"
 
 
 
 
449
  msgstr ""
450
 
451
+ #: redirection-strings.php:135, matches/user-agent.php:7
452
+ msgid "URL and user agent"
453
  msgstr ""
454
 
455
+ #: redirection-strings.php:136, matches/referrer.php:8
456
+ msgid "URL and referrer"
457
  msgstr ""
458
 
459
+ #: redirection-strings.php:137, matches/login.php:7
460
+ msgid "URL and login status"
461
  msgstr ""
462
 
463
+ #: redirection-strings.php:138, matches/url.php:5
464
+ msgid "URL only"
465
  msgstr ""
466
 
467
  #: redirection-strings.php:140
468
+ msgid "Add new redirection"
469
  msgstr ""
470
 
471
  #: redirection-strings.php:141
472
+ msgid "All groups"
473
  msgstr ""
474
 
475
+ #: redirection-strings.php:142
476
+ msgid "Reset hits"
477
  msgstr ""
478
 
479
+ #: redirection-strings.php:146
480
+ msgid "Last Access"
481
  msgstr ""
482
 
483
+ #: redirection-strings.php:147
484
+ msgid "Hits"
485
  msgstr ""
486
 
487
+ #: redirection-strings.php:148
488
+ msgid "URL"
489
  msgstr ""
490
 
491
+ #: redirection-strings.php:149
492
+ msgid "Type"
493
  msgstr ""
494
 
495
+ #: redirection-strings.php:151
496
+ msgid "User Agent"
497
  msgstr ""
498
 
499
+ #: redirection-strings.php:154
500
+ msgid "pass"
501
  msgstr ""
502
 
503
+ #: redirection-strings.php:159
504
+ msgid "Thank you for making a donation!"
505
  msgstr ""
506
 
507
+ #: redirection-strings.php:160
508
+ msgid "Yes I'd like to donate"
509
  msgstr ""
510
 
511
+ #: redirection-strings.php:161
512
+ msgid "Please note I do not provide support and this is just a donation."
513
  msgstr ""
514
 
515
+ #: redirection-strings.php:162
516
+ msgid "You get some useful software and I get to carry on making it better."
517
  msgstr ""
518
 
519
+ #: redirection-strings.php:163
520
+ 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}}."
521
  msgstr ""
522
 
523
+ #: redirection-strings.php:164
524
+ msgid "I'd like to donate some more"
525
  msgstr ""
526
 
527
+ #: redirection-strings.php:165
528
+ msgid "You've already supported this plugin - thank you!"
529
  msgstr ""
530
 
531
+ #: redirection-strings.php:166
532
+ msgid "Need some help? Maybe one of these questions will provide an answer"
533
  msgstr ""
534
 
535
+ #: redirection-strings.php:167
536
+ msgid "Frequently Asked Questions"
537
  msgstr ""
538
 
539
+ #: redirection-strings.php:168
540
+ msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
541
  msgstr ""
542
 
543
+ #: redirection-strings.php:169
544
+ msgid "Something isn't working!"
545
  msgstr ""
546
 
547
+ #: redirection-strings.php:170
548
+ msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
549
  msgstr ""
550
 
551
+ #: redirection-strings.php:171
552
+ msgid "Can I open a redirect in a new tab?"
553
  msgstr ""
554
 
555
+ #: redirection-strings.php:172
556
+ msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
557
  msgstr ""
558
 
559
+ #: redirection-strings.php:173
560
+ msgid "I deleted a redirection, why is it still redirecting?"
561
  msgstr ""
562
 
563
+ #: redirection-strings.php:174
564
+ msgid "Your email address:"
565
  msgstr ""
566
 
567
+ #: redirection-strings.php:175
568
+ 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."
 
 
569
  msgstr ""
570
 
571
+ #: redirection-strings.php:176
572
+ msgid "Want to keep up to date with changes to Redirection?"
573
  msgstr ""
574
 
575
+ #: redirection-strings.php:177, redirection-strings.php:179
576
+ msgid "Newsletter"
577
  msgstr ""
578
 
579
+ #: redirection-strings.php:178
580
+ msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
581
  msgstr ""
582
 
583
+ #: redirection-strings.php:180
584
+ msgid "Filter"
585
  msgstr ""
586
 
587
+ #: redirection-strings.php:181
588
+ msgid "Select All"
589
  msgstr ""
590
 
591
+ #: redirection-strings.php:182
592
+ msgid "%s item"
593
+ msgid_plural "%s items"
594
+ msgstr[0] ""
595
+ msgstr[1] ""
596
+
597
+ #: redirection-strings.php:183
598
+ msgid "Last page"
599
  msgstr ""
600
 
601
+ #: redirection-strings.php:184
602
+ msgid "Next page"
603
  msgst