Version Description
- Use React on redirects page
- Use translate.wordpress.org for language files
Download this release
Release Info
| Developer | johnny5 |
| Plugin | |
| Version | 2.6.6 |
| Comparing to | |
| See all releases | |
Code changes from version 2.6.5 to 2.6.6
- admin.css +0 -13
- fileio/apache.php +5 -4
- fileio/csv.php +4 -4
- locale/json/redirection-ca.json +1 -1
- locale/json/redirection-de_DE.json +1 -0
- locale/json/redirection-en_CA.json +1 -0
- locale/json/redirection-en_GB.json +1 -0
- locale/json/redirection-es_ES.json +1 -1
- locale/json/redirection-fi.json +1 -0
- locale/json/redirection-fr_FR.json +1 -1
- locale/json/redirection-it_IT.json +1 -1
- locale/json/redirection-ja.json +1 -1
- locale/json/redirection-nl_NL.json +1 -1
- locale/json/redirection-pt_PT.json +1 -0
- locale/json/redirection-ro_RO.json +1 -1
- locale/json/redirection-ru_RU.json +1 -1
- locale/json/redirection-sk_SK.json +1 -0
- locale/json/redirection-tr_TR.json +1 -1
- locale/redirection-ca.mo +0 -0
- locale/redirection-ca.po +595 -781
- locale/redirection-de_DE.mo +0 -0
- locale/redirection-de_DE.po +782 -0
- locale/redirection-en_CA.mo +0 -0
- locale/redirection-en_CA.po +782 -0
- locale/redirection-en_GB.mo +0 -0
- locale/redirection-en_GB.po +782 -0
- locale/redirection-es_ES.mo +0 -0
- locale/redirection-es_ES.po +601 -788
- locale/redirection-fi.mo +0 -0
- locale/redirection-fi.po +782 -0
- locale/redirection-fr_FR.mo +0 -0
- locale/redirection-fr_FR.po +616 -857
- locale/redirection-it_IT.mo +0 -0
- locale/redirection-it_IT.po +577 -872
- locale/redirection-ja.mo +0 -0
- locale/redirection-ja.po +579 -979
- locale/redirection-nl_NL.mo +0 -0
- locale/redirection-nl_NL.po +577 -729
- locale/redirection-pt_PT.mo +0 -0
- locale/redirection-pt_PT.po +782 -0
- locale/redirection-ro_RO.mo +0 -0
- locale/redirection-ro_RO.po +587 -811
- locale/redirection-ru_RU.mo +0 -0
- locale/redirection-ru_RU.po +577 -779
- locale/redirection-sk_SK.mo +0 -0
- locale/redirection-sk_SK.po +786 -0
- locale/redirection-tr_TR.mo +0 -0
- locale/redirection-tr_TR.po +594 -780
- 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['
|
| 85 |
-
$item['
|
| 86 |
|
| 87 |
-
if ( $item['code'] === 0 )
|
| 88 |
-
$item['
|
|
|
|
| 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 |
-
'
|
| 105 |
-
'
|
| 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 |
-
'
|
| 109 |
-
'
|
| 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–%s of %s":[null,"Mostrant %s–%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 & Page URLs":[null,"URLs d'entrades & 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–%s of %s":[null,"Mostrando %s–%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 & Page URLs":[null,"URLs de Entradas & 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–%s of %s":[null,"Affichage %s–%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 & 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 "],"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 "],"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’ai aidé l’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–%s of %s":[null,"Mostrati %s–%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 & 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 & Page URLs":[null,"Berichten- & 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–%s of %s":[null,"Toont %s–%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–%s of %s":[null,"Afișare %s–%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 & Page URLs":[null,"URL-uri pagini & 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 & 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–%s of %s":[null,"Показано %s–%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–%s of %s":[null,"Gösterilen %s–%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 & Page URLs":[null,"Yazı & 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 |
-
"
|
| 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 |
-
"
|
| 13 |
-
"X-
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
| 17 |
|
| 18 |
-
#:
|
| 19 |
-
msgid "
|
| 20 |
-
msgstr "
|
| 21 |
|
| 22 |
-
#:
|
| 23 |
-
msgid "
|
| 24 |
-
msgstr "
|
| 25 |
|
| 26 |
-
#:
|
| 27 |
-
msgid "
|
| 28 |
-
msgstr "
|
| 29 |
|
| 30 |
-
#:
|
| 31 |
-
|
| 32 |
-
|
| 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 |
-
#:
|
| 40 |
-
msgid "
|
| 41 |
-
msgstr "
|
| 42 |
|
| 43 |
-
#:
|
| 44 |
-
msgid "
|
| 45 |
-
msgstr "
|
| 46 |
|
| 47 |
-
#:
|
| 48 |
-
msgid "
|
| 49 |
-
msgstr "
|
| 50 |
|
| 51 |
-
#:
|
| 52 |
-
msgid "
|
| 53 |
-
msgstr "
|
| 54 |
|
| 55 |
-
#:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#:
|
| 68 |
-
msgid "
|
| 69 |
-
msgstr "
|
| 70 |
|
| 71 |
-
#:
|
| 72 |
-
msgid "
|
| 73 |
-
msgstr "
|
| 74 |
|
| 75 |
-
#:
|
| 76 |
-
msgid "
|
| 77 |
-
msgstr "
|
| 78 |
|
| 79 |
-
#:
|
| 80 |
-
msgid "
|
| 81 |
-
msgstr "
|
| 82 |
|
| 83 |
-
#:
|
| 84 |
-
msgid "
|
| 85 |
-
msgstr "
|
| 86 |
|
| 87 |
-
#:
|
| 88 |
-
msgid "
|
| 89 |
-
msgstr "
|
| 90 |
|
| 91 |
-
#:
|
| 92 |
-
msgid "
|
| 93 |
-
msgstr "
|
| 94 |
|
| 95 |
-
#:
|
| 96 |
-
msgid "
|
| 97 |
-
msgstr "
|
| 98 |
|
| 99 |
-
#:
|
| 100 |
-
msgid "
|
| 101 |
-
msgstr "
|
| 102 |
|
| 103 |
-
#:
|
| 104 |
-
msgid "
|
| 105 |
-
msgstr "
|
| 106 |
|
| 107 |
-
#:
|
| 108 |
-
msgid "
|
| 109 |
-
msgstr "
|
| 110 |
|
| 111 |
-
#:
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
msgstr "
|
|
|
|
| 115 |
|
| 116 |
-
#:
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
msgstr "module_%d.xml"
|
| 120 |
|
| 121 |
-
#:
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
msgstr "%s importat el %s a %s"
|
| 125 |
|
| 126 |
-
#:
|
| 127 |
-
msgid "
|
| 128 |
-
msgstr "
|
| 129 |
|
| 130 |
-
#:
|
| 131 |
-
msgid "
|
| 132 |
-
msgstr "
|
| 133 |
|
| 134 |
-
#:
|
| 135 |
-
msgid "
|
| 136 |
-
msgstr "
|
| 137 |
|
| 138 |
-
#:
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
msgstr "Identificat"
|
| 142 |
|
| 143 |
-
#:
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
msgstr "Desconnectat"
|
| 147 |
|
| 148 |
-
#:
|
| 149 |
-
msgid "
|
| 150 |
-
msgstr "
|
| 151 |
|
| 152 |
-
#:
|
| 153 |
-
msgid "
|
| 154 |
-
msgstr "
|
| 155 |
|
| 156 |
-
#:
|
| 157 |
-
msgid "
|
| 158 |
-
msgstr "
|
| 159 |
|
| 160 |
-
#:
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
msgid "HTTP Code"
|
| 164 |
-
msgstr "Codi HTTP"
|
| 165 |
|
| 166 |
-
#:
|
| 167 |
-
msgid "
|
| 168 |
-
msgstr "
|
| 169 |
|
| 170 |
-
#:
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
#: c:/temp/redirection/matches/user_agent.php:76
|
| 174 |
-
msgid "Matched"
|
| 175 |
-
msgstr "Coincideix"
|
| 176 |
|
| 177 |
-
#:
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
#: c:/temp/redirection/matches/user_agent.php:86
|
| 181 |
-
msgid "Not matched"
|
| 182 |
-
msgstr "No coincideix"
|
| 183 |
|
| 184 |
-
#:
|
| 185 |
-
msgid "
|
| 186 |
-
msgstr "
|
| 187 |
|
| 188 |
-
#:
|
| 189 |
-
msgid "
|
| 190 |
-
msgstr "
|
| 191 |
|
| 192 |
-
#:
|
| 193 |
-
msgid "
|
| 194 |
-
msgstr "
|
| 195 |
|
| 196 |
-
#:
|
| 197 |
-
msgid "
|
| 198 |
-
msgstr "
|
| 199 |
|
| 200 |
-
#:
|
| 201 |
-
msgid "
|
| 202 |
-
msgstr "
|
| 203 |
|
| 204 |
-
#:
|
| 205 |
-
msgid "
|
| 206 |
-
msgstr "
|
| 207 |
|
| 208 |
-
#:
|
| 209 |
-
msgid "
|
| 210 |
-
msgstr "
|
| 211 |
|
| 212 |
-
#:
|
| 213 |
-
msgid "
|
| 214 |
-
msgstr "
|
| 215 |
|
| 216 |
-
#:
|
| 217 |
-
msgid "
|
| 218 |
-
msgstr "
|
| 219 |
|
| 220 |
-
#:
|
| 221 |
-
msgid "
|
| 222 |
-
msgstr "
|
| 223 |
|
| 224 |
-
#:
|
| 225 |
-
msgid "
|
| 226 |
-
msgstr "
|
| 227 |
|
| 228 |
-
#:
|
| 229 |
-
msgid "
|
| 230 |
-
msgstr "
|
| 231 |
|
| 232 |
-
#:
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
msgstr "WordPress"
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
msgstr "Apache"
|
| 241 |
|
| 242 |
-
#:
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
msgstr "Errore 404"
|
| 246 |
|
| 247 |
-
#:
|
| 248 |
-
msgid "
|
| 249 |
-
msgstr "
|
| 250 |
|
| 251 |
-
#:
|
| 252 |
-
msgid "
|
| 253 |
-
msgstr "
|
| 254 |
|
| 255 |
-
#:
|
| 256 |
-
msgid "
|
| 257 |
-
msgstr "
|
| 258 |
|
| 259 |
-
#:
|
| 260 |
-
msgid "
|
| 261 |
-
msgstr "
|
| 262 |
|
| 263 |
-
#:
|
| 264 |
-
msgid "
|
| 265 |
-
msgstr "
|
| 266 |
|
| 267 |
-
#:
|
| 268 |
-
msgid "
|
| 269 |
-
msgstr "
|
| 270 |
|
| 271 |
-
#:
|
| 272 |
-
msgid "
|
| 273 |
-
msgstr "
|
| 274 |
|
| 275 |
-
#:
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
msgstr "%d per pàgina"
|
| 279 |
|
| 280 |
-
#:
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
msgstr "Mostrant %s–%s de %s"
|
| 284 |
|
| 285 |
-
|
| 286 |
-
msgid "
|
| 287 |
-
msgstr "
|
| 288 |
|
| 289 |
-
|
| 290 |
-
msgid "
|
| 291 |
-
msgstr "
|
| 292 |
|
| 293 |
-
|
| 294 |
-
msgid "
|
| 295 |
-
msgstr "
|
| 296 |
|
| 297 |
-
|
| 298 |
-
msgid "
|
| 299 |
-
msgstr "
|
| 300 |
|
| 301 |
-
#:
|
| 302 |
-
msgid "
|
| 303 |
-
msgstr "
|
| 304 |
|
| 305 |
-
#:
|
| 306 |
-
msgid "
|
| 307 |
-
msgstr "
|
| 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 |
-
#:
|
| 494 |
-
msgid "
|
| 495 |
-
msgstr "
|
| 496 |
|
| 497 |
-
#:
|
| 498 |
-
msgid "
|
| 499 |
-
msgstr "
|
| 500 |
|
| 501 |
-
#:
|
| 502 |
-
msgid "
|
| 503 |
-
msgstr "
|
| 504 |
|
| 505 |
-
#:
|
| 506 |
-
msgid "
|
| 507 |
-
msgstr "
|
| 508 |
|
| 509 |
-
#:
|
| 510 |
-
msgid "
|
| 511 |
-
msgstr "
|
| 512 |
|
| 513 |
-
#:
|
| 514 |
-
msgid "
|
| 515 |
-
msgstr "
|
| 516 |
|
| 517 |
-
#:
|
| 518 |
-
msgid "
|
| 519 |
-
msgstr "
|
| 520 |
|
| 521 |
-
#:
|
| 522 |
-
|
| 523 |
-
|
| 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 |
-
#:
|
| 530 |
-
msgid "
|
| 531 |
-
msgstr "
|
| 532 |
|
| 533 |
-
#:
|
| 534 |
-
msgid "
|
| 535 |
-
msgstr "
|
| 536 |
|
| 537 |
-
#:
|
| 538 |
-
msgid "
|
| 539 |
-
msgstr "
|
| 540 |
|
| 541 |
-
#:
|
| 542 |
-
msgid "
|
| 543 |
-
msgstr "
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
msgid "Cancel"
|
| 549 |
-
msgstr "Cancel·lar"
|
| 550 |
|
| 551 |
-
#:
|
| 552 |
-
msgid "
|
| 553 |
-
msgstr "
|
| 554 |
|
| 555 |
-
#:
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
msgstr "deshabilitat"
|
| 559 |
|
| 560 |
-
#:
|
| 561 |
-
msgid "
|
| 562 |
-
msgstr "
|
| 563 |
|
| 564 |
-
#:
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
msgstr "Mòdul"
|
| 568 |
|
| 569 |
-
#:
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
#: c:/temp/redirection/view/admin/log.php:19
|
| 573 |
-
msgid "Search"
|
| 574 |
-
msgstr "Cercar"
|
| 575 |
|
| 576 |
-
#:
|
| 577 |
-
msgid "
|
| 578 |
-
msgstr "
|
| 579 |
|
| 580 |
-
#:
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
msgid "Hits"
|
| 584 |
-
msgstr "Hits"
|
| 585 |
|
| 586 |
-
#:
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
msgstr "Seleccionar-ho tot"
|
| 590 |
|
| 591 |
-
#:
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
msgstr "Desactivar/Activar"
|
| 595 |
|
| 596 |
-
#:
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
msgstr "Reiniciar Hits"
|
| 600 |
|
| 601 |
-
#:
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 607 |
|
| 608 |
-
#:
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
msgstr "Moure a"
|
| 612 |
|
| 613 |
-
#:
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
msgstr "re-ordenar"
|
| 617 |
|
| 618 |
-
#:
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
msgstr "desar ordre"
|
| 622 |
|
| 623 |
-
#:
|
| 624 |
-
msgid "
|
| 625 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 626 |
|
| 627 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 628 |
msgid "Add Group"
|
| 629 |
msgstr "Afegir grup"
|
| 630 |
|
| 631 |
-
#:
|
| 632 |
-
msgid "
|
| 633 |
-
msgstr "
|
| 634 |
|
| 635 |
-
#:
|
| 636 |
-
msgid "
|
| 637 |
-
msgstr "
|
| 638 |
|
| 639 |
-
#:
|
| 640 |
-
msgid "
|
| 641 |
-
msgstr "
|
| 642 |
|
| 643 |
-
#:
|
| 644 |
-
msgid "
|
| 645 |
-
msgstr "
|
| 646 |
|
| 647 |
-
#:
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
msgstr "%s per coincidència amb %s"
|
| 651 |
|
| 652 |
-
#:
|
| 653 |
-
msgid "
|
| 654 |
-
msgstr "
|
| 655 |
|
| 656 |
-
#:
|
| 657 |
-
msgid "
|
| 658 |
-
msgstr "
|
| 659 |
|
| 660 |
-
#:
|
| 661 |
-
msgid "
|
| 662 |
-
msgstr "
|
| 663 |
|
| 664 |
-
#:
|
| 665 |
-
msgid "
|
| 666 |
-
msgstr "
|
| 667 |
|
| 668 |
-
#:
|
| 669 |
-
msgid "
|
| 670 |
-
msgstr "
|
| 671 |
|
| 672 |
-
#:
|
| 673 |
-
#:
|
| 674 |
-
msgid "
|
| 675 |
-
msgstr "
|
| 676 |
|
| 677 |
-
#:
|
| 678 |
-
msgid "
|
| 679 |
-
msgstr "
|
| 680 |
|
| 681 |
-
#:
|
| 682 |
-
msgid "
|
| 683 |
-
msgstr "
|
| 684 |
|
| 685 |
-
#:
|
| 686 |
-
|
| 687 |
-
|
|
|
|
| 688 |
|
| 689 |
-
#:
|
| 690 |
-
msgid "
|
| 691 |
-
msgstr "
|
| 692 |
|
| 693 |
-
#:
|
| 694 |
-
msgid "
|
| 695 |
-
|
|
|
|
|
|
|
| 696 |
|
| 697 |
-
#:
|
| 698 |
-
msgid "
|
| 699 |
-
msgstr "
|
| 700 |
|
| 701 |
-
|
| 702 |
-
msgid "
|
| 703 |
-
msgstr "
|
| 704 |
|
| 705 |
-
#:
|
| 706 |
-
msgid "
|
| 707 |
-
msgstr "
|
| 708 |
|
| 709 |
-
#:
|
| 710 |
-
msgid "
|
| 711 |
-
msgstr "
|
| 712 |
|
| 713 |
-
#:
|
| 714 |
-
msgid "
|
| 715 |
-
msgstr "
|
| 716 |
|
| 717 |
-
#:
|
| 718 |
-
msgid "
|
| 719 |
-
msgstr "
|
| 720 |
|
| 721 |
-
#:
|
| 722 |
-
msgid "
|
| 723 |
-
msgstr "
|
| 724 |
|
| 725 |
-
#:
|
| 726 |
-
msgid "
|
| 727 |
-
msgstr "
|
| 728 |
|
| 729 |
-
#:
|
| 730 |
-
msgid "
|
| 731 |
-
msgstr "
|
| 732 |
|
| 733 |
-
#:
|
| 734 |
-
msgid "
|
| 735 |
-
msgstr "
|
| 736 |
|
| 737 |
-
#:
|
| 738 |
-
msgid "
|
| 739 |
-
msgstr "
|
| 740 |
|
| 741 |
-
#:
|
| 742 |
-
msgid "
|
| 743 |
-
msgstr "
|
| 744 |
|
| 745 |
-
#:
|
| 746 |
-
msgid "
|
| 747 |
-
msgstr "
|
| 748 |
|
| 749 |
-
#:
|
| 750 |
-
msgid "
|
| 751 |
-
msgstr "
|
| 752 |
|
| 753 |
-
#:
|
| 754 |
-
msgid "
|
| 755 |
-
msgstr "
|
| 756 |
|
| 757 |
-
#:
|
| 758 |
-
msgid "
|
| 759 |
-
msgstr "
|
| 760 |
|
| 761 |
-
#:
|
| 762 |
-
msgid "
|
| 763 |
-
msgstr "
|
| 764 |
|
| 765 |
-
#:
|
| 766 |
-
msgid "delete"
|
| 767 |
-
msgstr "
|
| 768 |
|
| 769 |
-
#:
|
| 770 |
-
msgid "
|
| 771 |
-
msgstr "
|
| 772 |
|
| 773 |
-
#:
|
| 774 |
-
|
| 775 |
-
|
| 776 |
-
msgstr "Mòduls"
|
| 777 |
|
| 778 |
-
#:
|
| 779 |
-
msgid "
|
| 780 |
-
msgstr "
|
| 781 |
|
| 782 |
-
#:
|
| 783 |
-
|
| 784 |
-
|
| 785 |
-
msgstr "Grups"
|
| 786 |
|
| 787 |
-
#:
|
| 788 |
-
msgid "
|
| 789 |
-
msgstr "
|
| 790 |
|
| 791 |
-
#:
|
| 792 |
-
msgid "
|
| 793 |
-
msgstr "
|
| 794 |
|
| 795 |
-
#:
|
| 796 |
-
msgid "
|
| 797 |
-
msgstr "
|
| 798 |
|
| 799 |
-
#:
|
| 800 |
-
|
| 801 |
-
|
|
|
|
| 802 |
|
| 803 |
-
#:
|
| 804 |
-
msgid "
|
| 805 |
-
msgstr "
|
| 806 |
|
| 807 |
-
#:
|
| 808 |
-
msgid "
|
| 809 |
-
msgstr "
|
| 810 |
|
| 811 |
-
#:
|
| 812 |
-
msgid "
|
| 813 |
-
msgstr "
|
| 814 |
|
| 815 |
-
#:
|
| 816 |
-
|
| 817 |
-
|
| 818 |
-
msgstr "Opcions"
|
| 819 |
|
| 820 |
-
#:
|
| 821 |
-
|
| 822 |
-
|
|
|
|
| 823 |
|
| 824 |
-
#:
|
| 825 |
-
msgid "
|
| 826 |
-
msgstr "
|
| 827 |
|
| 828 |
-
#:
|
| 829 |
-
|
| 830 |
-
|
|
|
|
| 831 |
|
| 832 |
-
#:
|
| 833 |
-
msgid "
|
| 834 |
-
msgstr "
|
| 835 |
|
| 836 |
-
#:
|
| 837 |
-
msgid "
|
| 838 |
-
msgstr "
|
| 839 |
|
| 840 |
-
#:
|
| 841 |
-
msgid "
|
| 842 |
-
msgstr "
|
| 843 |
|
| 844 |
-
#:
|
| 845 |
-
|
| 846 |
-
|
|
|
|
| 847 |
|
| 848 |
-
#:
|
| 849 |
-
|
| 850 |
-
|
|
|
|
| 851 |
|
| 852 |
-
#:
|
| 853 |
-
|
| 854 |
-
|
|
|
|
|
|
|
|
|
|
| 855 |
|
| 856 |
-
#:
|
| 857 |
-
msgid "
|
| 858 |
-
msgstr "
|
| 859 |
|
| 860 |
-
#:
|
| 861 |
-
msgid "
|
| 862 |
-
msgstr "
|
| 863 |
|
| 864 |
-
#:
|
| 865 |
-
msgid "
|
| 866 |
-
msgstr "
|
| 867 |
|
| 868 |
-
#:
|
| 869 |
-
|
| 870 |
-
|
| 871 |
-
msgstr "No fer el seguiment"
|
| 872 |
|
| 873 |
-
#:
|
| 874 |
-
msgid "
|
| 875 |
-
msgstr "
|
| 876 |
|
| 877 |
-
#:
|
| 878 |
-
msgid "
|
| 879 |
-
msgstr "
|
| 880 |
|
| 881 |
-
#:
|
| 882 |
-
msgid "
|
| 883 |
-
msgstr "
|
| 884 |
|
| 885 |
-
#:
|
| 886 |
-
msgid "
|
| 887 |
-
msgstr "
|
| 888 |
|
| 889 |
-
#:
|
| 890 |
-
msgid "
|
| 891 |
-
msgstr "
|
| 892 |
|
| 893 |
-
#:
|
| 894 |
-
msgid "
|
| 895 |
-
msgstr "
|
| 896 |
|
| 897 |
-
#:
|
| 898 |
-
msgid "
|
| 899 |
-
msgstr "
|
| 900 |
|
| 901 |
-
#:
|
| 902 |
-
msgid "
|
| 903 |
-
msgstr "
|
| 904 |
|
| 905 |
-
#:
|
| 906 |
-
msgid "
|
| 907 |
-
msgstr "
|
| 908 |
|
| 909 |
-
#:
|
| 910 |
-
msgid "
|
| 911 |
-
msgstr "
|
| 912 |
|
| 913 |
-
#:
|
| 914 |
-
msgid "
|
| 915 |
-
msgstr "
|
| 916 |
|
| 917 |
-
#:
|
| 918 |
-
msgid "
|
| 919 |
-
msgstr "
|
| 920 |
|
| 921 |
-
#:
|
| 922 |
-
msgid "
|
| 923 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 924 |
|
| 925 |
-
#:
|
| 926 |
-
msgid "
|
| 927 |
-
msgstr "
|
| 928 |
|
| 929 |
-
#:
|
| 930 |
-
|
| 931 |
-
|
|
|
|
| 932 |
|
| 933 |
-
#:
|
| 934 |
-
|
| 935 |
-
|
|
|
|
| 936 |
|
| 937 |
-
#:
|
| 938 |
-
msgid "
|
| 939 |
-
msgstr "
|
| 940 |
|
| 941 |
-
#:
|
| 942 |
-
|
| 943 |
-
|
|
|
|
| 944 |
|
| 945 |
-
#:
|
| 946 |
-
msgid "
|
| 947 |
-
msgstr "
|
| 948 |
|
| 949 |
-
#:
|
| 950 |
-
|
| 951 |
-
|
|
|
|
| 952 |
|
| 953 |
-
#:
|
| 954 |
-
msgid "
|
| 955 |
-
msgstr "
|
| 956 |
|
| 957 |
-
#:
|
| 958 |
-
msgid "
|
| 959 |
-
msgstr "
|
| 960 |
|
| 961 |
-
#:
|
| 962 |
-
msgid "
|
| 963 |
-
msgstr "
|
| 964 |
|
| 965 |
-
#:
|
| 966 |
-
msgid "
|
| 967 |
-
msgstr "
|
| 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 |
-
"
|
| 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 |
-
"
|
| 13 |
-
"X-
|
| 14 |
-
"
|
| 15 |
-
"
|
| 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 |
-
#:
|
| 53 |
-
msgid "
|
| 54 |
-
msgstr "
|
| 55 |
|
| 56 |
-
#:
|
| 57 |
-
msgid "
|
| 58 |
-
msgstr "
|
| 59 |
|
| 60 |
-
#:
|
| 61 |
-
msgid "
|
| 62 |
-
msgstr "
|
| 63 |
|
| 64 |
-
#:
|
| 65 |
-
msgid "Redirection
|
| 66 |
-
msgstr "
|
| 67 |
|
| 68 |
-
#:
|
| 69 |
-
msgid "
|
| 70 |
-
msgstr "
|
| 71 |
|
| 72 |
-
#:
|
| 73 |
-
msgid "
|
| 74 |
-
msgstr "
|
| 75 |
|
| 76 |
-
#:
|
| 77 |
-
msgid "
|
| 78 |
-
msgstr "
|
| 79 |
|
| 80 |
-
#:
|
| 81 |
-
msgid "
|
| 82 |
-
msgstr "
|
| 83 |
|
| 84 |
-
#:
|
| 85 |
-
msgid "
|
| 86 |
-
msgstr "
|
| 87 |
|
| 88 |
-
#:
|
| 89 |
-
msgid "
|
| 90 |
-
msgstr "
|
| 91 |
|
| 92 |
-
#:
|
| 93 |
-
msgid "
|
| 94 |
-
msgstr "
|
| 95 |
|
| 96 |
-
#:
|
| 97 |
-
msgid "
|
| 98 |
-
msgstr "
|
| 99 |
|
| 100 |
-
#:
|
| 101 |
-
msgid "
|
| 102 |
-
msgstr "
|
| 103 |
|
| 104 |
-
#:
|
| 105 |
-
msgid "
|
| 106 |
-
msgstr "
|
| 107 |
|
| 108 |
-
#:
|
| 109 |
-
msgid "
|
| 110 |
-
msgstr "
|
| 111 |
|
| 112 |
-
#:
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
msgstr "module_%d.csv"
|
| 116 |
|
| 117 |
-
#:
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
msgstr "module_%d.xml"
|
| 121 |
|
| 122 |
-
#:
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
msgstr "%s importado el %s a %s"
|
| 126 |
|
| 127 |
-
#:
|
| 128 |
-
msgid "
|
| 129 |
-
msgstr "
|
| 130 |
|
| 131 |
-
#:
|
| 132 |
-
msgid "
|
| 133 |
-
msgstr "
|
| 134 |
|
| 135 |
-
#:
|
| 136 |
-
msgid "
|
| 137 |
-
msgstr "
|
| 138 |
|
| 139 |
-
#:
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
msgstr "Validado"
|
| 143 |
|
| 144 |
-
#:
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
msgstr "
|
|
|
|
| 148 |
|
| 149 |
-
#:
|
| 150 |
-
msgid "
|
| 151 |
-
msgstr "
|
| 152 |
|
| 153 |
-
#:
|
| 154 |
-
msgid "
|
| 155 |
-
msgstr "
|
| 156 |
|
| 157 |
-
#:
|
| 158 |
-
msgid "
|
| 159 |
-
msgstr "
|
| 160 |
|
| 161 |
-
#:
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
msgid "HTTP Code"
|
| 165 |
-
msgstr "Código HTTP"
|
| 166 |
|
| 167 |
-
#:
|
| 168 |
-
msgid "
|
| 169 |
-
msgstr "
|
| 170 |
|
| 171 |
-
#:
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
#: c:/temp/redirection/matches/user_agent.php:76
|
| 175 |
-
msgid "Matched"
|
| 176 |
-
msgstr "Concuerda"
|
| 177 |
|
| 178 |
-
#:
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
#: c:/temp/redirection/matches/user_agent.php:86
|
| 182 |
-
msgid "Not matched"
|
| 183 |
-
msgstr "Sin coincidencia"
|
| 184 |
|
| 185 |
-
#:
|
| 186 |
-
msgid "
|
| 187 |
-
msgstr "
|
| 188 |
|
| 189 |
-
#:
|
| 190 |
-
msgid "
|
| 191 |
-
msgstr "
|
| 192 |
|
| 193 |
-
#:
|
| 194 |
-
msgid "
|
| 195 |
-
msgstr "
|
| 196 |
|
| 197 |
-
#:
|
| 198 |
-
msgid "
|
| 199 |
-
msgstr "
|
| 200 |
|
| 201 |
-
#:
|
| 202 |
-
msgid "
|
| 203 |
-
msgstr "
|
| 204 |
|
| 205 |
-
#:
|
| 206 |
-
msgid "
|
| 207 |
-
msgstr "
|
| 208 |
|
| 209 |
-
#:
|
| 210 |
-
msgid "
|
| 211 |
-
msgstr "
|
| 212 |
|
| 213 |
-
#:
|
| 214 |
-
msgid "
|
| 215 |
-
msgstr "
|
| 216 |
|
| 217 |
-
#:
|
| 218 |
-
msgid "
|
| 219 |
-
msgstr "
|
| 220 |
|
| 221 |
-
#:
|
| 222 |
-
msgid "
|
| 223 |
-
msgstr "
|
| 224 |
|
| 225 |
-
#:
|
| 226 |
-
msgid "
|
| 227 |
-
msgstr "
|
| 228 |
|
| 229 |
-
#:
|
| 230 |
-
msgid "
|
| 231 |
-
msgstr "
|
| 232 |
|
| 233 |
-
#:
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
msgstr "WordPress"
|
| 237 |
|
| 238 |
-
#:
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
msgstr "Apache"
|
| 242 |
|
| 243 |
-
#:
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
msgstr "Errores 404"
|
| 247 |
|
| 248 |
-
#:
|
| 249 |
-
msgid "
|
| 250 |
-
msgstr "
|
| 251 |
|
| 252 |
-
#:
|
| 253 |
-
msgid "
|
| 254 |
-
msgstr "
|
| 255 |
|
| 256 |
-
#:
|
| 257 |
-
msgid "
|
| 258 |
-
msgstr "
|
| 259 |
|
| 260 |
-
#:
|
| 261 |
-
msgid "
|
| 262 |
-
msgstr "
|
| 263 |
|
| 264 |
-
#:
|
| 265 |
-
msgid "
|
| 266 |
-
msgstr "
|
| 267 |
|
| 268 |
-
#:
|
| 269 |
-
msgid "
|
| 270 |
-
msgstr "
|
| 271 |
|
| 272 |
-
#:
|
| 273 |
-
msgid "
|
| 274 |
-
msgstr "
|
| 275 |
|
| 276 |
-
#:
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
msgstr "%d por página"
|
| 280 |
|
| 281 |
-
#:
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
msgstr "Mostrando %s–%s de %s"
|
| 285 |
|
| 286 |
-
#:
|
| 287 |
-
msgid "
|
| 288 |
-
msgstr "
|
| 289 |
|
| 290 |
-
#:
|
| 291 |
-
msgid "
|
| 292 |
-
msgstr "
|
| 293 |
|
| 294 |
-
#:
|
| 295 |
-
msgid "
|
| 296 |
-
msgstr "
|
| 297 |
|
| 298 |
-
#:
|
| 299 |
-
msgid "
|
| 300 |
-
msgstr "
|
| 301 |
|
| 302 |
-
#:
|
| 303 |
-
msgid "
|
| 304 |
-
msgstr "
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
msgid "
|
| 308 |
-
msgstr "
|
| 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 |
-
#:
|
| 495 |
-
msgid "
|
| 496 |
-
msgstr "
|
| 497 |
|
| 498 |
-
|
| 499 |
-
msgid "
|
| 500 |
-
msgstr "
|
| 501 |
|
| 502 |
-
|
| 503 |
-
msgid "
|
| 504 |
-
msgstr "
|
| 505 |
|
| 506 |
-
|
| 507 |
-
msgid "
|
| 508 |
-
msgstr "
|
| 509 |
|
| 510 |
-
|
| 511 |
-
msgid "
|
| 512 |
-
msgstr "
|
| 513 |
|
| 514 |
-
#:
|
| 515 |
-
msgid "
|
| 516 |
-
msgstr "
|
| 517 |
|
| 518 |
-
#:
|
| 519 |
-
msgid "
|
| 520 |
-
msgstr "
|
| 521 |
|
| 522 |
-
#:
|
| 523 |
-
|
| 524 |
-
|
| 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 |
-
#:
|
| 531 |
-
msgid "
|
| 532 |
-
msgstr "
|
| 533 |
|
| 534 |
-
#:
|
| 535 |
-
msgid "
|
| 536 |
-
msgstr "
|
| 537 |
|
| 538 |
-
#:
|
| 539 |
-
msgid "
|
| 540 |
-
msgstr "
|
| 541 |
|
| 542 |
-
#:
|
| 543 |
-
msgid "
|
| 544 |
-
msgstr "
|
| 545 |
|
| 546 |
-
#:
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
msgid "Cancel"
|
| 550 |
-
msgstr "Cancelar"
|
| 551 |
|
| 552 |
-
#:
|
| 553 |
-
msgid "
|
| 554 |
-
msgstr "
|
| 555 |
|
| 556 |
-
#:
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
msgstr "desactivado"
|
| 560 |
|
| 561 |
-
#:
|
| 562 |
-
msgid "
|
| 563 |
-
msgstr "
|
| 564 |
|
| 565 |
-
#:
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
msgstr "Módulo"
|
| 569 |
|
| 570 |
-
#:
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
#: c:/temp/redirection/view/admin/log.php:19
|
| 574 |
-
msgid "Search"
|
| 575 |
-
msgstr "Buscar"
|
| 576 |
|
| 577 |
-
#:
|
| 578 |
-
msgid "
|
| 579 |
-
msgstr "
|
| 580 |
|
| 581 |
-
#:
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
msgid "Hits"
|
| 585 |
-
msgstr "Hits"
|
| 586 |
|
| 587 |
-
#:
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
msgstr "Seleccionar todo"
|
| 591 |
|
| 592 |
-
#:
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
msgstr "Desactivar/Activar"
|
| 596 |
|
| 597 |
-
#:
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
msgstr "Reiniciar cuenta"
|
| 601 |
|
| 602 |
-
#:
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
#: c:/temp/redirection/view/admin/options.php:105
|
| 606 |
-
msgid "Delete"
|
| 607 |
-
msgstr "Eliminar"
|
| 608 |
|
| 609 |
-
#:
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
msgstr "Mover a"
|
| 613 |
|
| 614 |
-
#:
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
msgstr "re-ordenar"
|
| 618 |
|
| 619 |
-
#:
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
msgstr "grabar orden"
|
| 623 |
|
| 624 |
-
#:
|
| 625 |
-
msgid "
|
| 626 |
-
msgstr "
|
| 627 |
|
| 628 |
-
#:
|
| 629 |
-
msgid "
|
| 630 |
-
msgstr "
|
| 631 |
|
| 632 |
-
#:
|
| 633 |
-
msgid "
|
| 634 |
-
msgstr "
|
| 635 |
|
| 636 |
-
#:
|
| 637 |
-
msgid "
|
| 638 |
-
msgstr "
|
| 639 |
|
| 640 |
-
#:
|
| 641 |
-
msgid "
|
| 642 |
-
msgstr "
|
| 643 |
|
| 644 |
-
#:
|
| 645 |
-
msgid "No
|
| 646 |
-
msgstr "No
|
| 647 |
|
| 648 |
-
#:
|
| 649 |
-
|
| 650 |
-
|
| 651 |
-
|
|
|
|
|
|
|
|
|
|
| 652 |
|
| 653 |
-
#:
|
| 654 |
-
msgid "
|
| 655 |
-
msgstr "
|
| 656 |
|
| 657 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 658 |
msgid "optional"
|
| 659 |
msgstr "opcional"
|
| 660 |
|
| 661 |
-
#:
|
| 662 |
-
msgid "
|
| 663 |
-
msgstr "
|
| 664 |
|
| 665 |
-
#:
|
| 666 |
-
msgid "
|
| 667 |
-
msgstr "
|
| 668 |
|
| 669 |
-
#:
|
| 670 |
-
msgid "
|
| 671 |
-
msgstr "
|
| 672 |
|
| 673 |
-
#:
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
msgstr "Tipo"
|
| 677 |
|
| 678 |
-
#:
|
| 679 |
-
msgid "
|
| 680 |
-
msgstr "
|
| 681 |
|
| 682 |
-
#:
|
| 683 |
-
msgid "
|
| 684 |
-
msgstr "
|
| 685 |
|
| 686 |
-
#:
|
| 687 |
-
msgid "
|
| 688 |
-
msgstr "
|
| 689 |
|
| 690 |
-
#:
|
| 691 |
-
msgid "
|
| 692 |
-
msgstr "
|
| 693 |
|
| 694 |
-
#:
|
| 695 |
-
msgid "
|
| 696 |
-
msgstr "
|
| 697 |
|
| 698 |
-
#:
|
| 699 |
-
msgid "
|
| 700 |
-
msgstr "
|
| 701 |
|
| 702 |
-
#:
|
| 703 |
-
msgid "
|
| 704 |
-
msgstr "
|
| 705 |
|
| 706 |
-
#:
|
| 707 |
-
msgid "
|
| 708 |
-
msgstr "
|
| 709 |
|
| 710 |
-
#:
|
| 711 |
-
msgid "
|
| 712 |
-
msgstr "
|
| 713 |
|
| 714 |
-
#:
|
| 715 |
-
|
| 716 |
-
|
|
|
|
| 717 |
|
| 718 |
-
#:
|
| 719 |
-
msgid "
|
| 720 |
-
msgstr "
|
| 721 |
|
| 722 |
-
#:
|
| 723 |
-
msgid "
|
| 724 |
-
msgstr "
|
| 725 |
|
| 726 |
-
#:
|
| 727 |
-
|
| 728 |
-
|
|
|
|
| 729 |
|
| 730 |
-
#:
|
| 731 |
-
msgid "
|
| 732 |
-
msgstr "
|
| 733 |
|
| 734 |
-
#:
|
| 735 |
-
msgid "
|
| 736 |
-
|
|
|
|
|
|
|
| 737 |
|
| 738 |
-
#:
|
| 739 |
-
msgid "
|
| 740 |
-
msgstr "
|
| 741 |
|
| 742 |
-
|
| 743 |
-
msgid "
|
| 744 |
-
msgstr "
|
| 745 |
|
| 746 |
-
#:
|
| 747 |
-
msgid "
|
| 748 |
-
msgstr "
|
| 749 |
|
| 750 |
-
#:
|
| 751 |
-
msgid "
|
| 752 |
-
msgstr "
|
| 753 |
|
| 754 |
-
#:
|
| 755 |
-
msgid "
|
| 756 |
-
msgstr "
|
| 757 |
|
| 758 |
-
#:
|
| 759 |
-
msgid "
|
| 760 |
-
msgstr "
|
| 761 |
|
| 762 |
-
#:
|
| 763 |
-
msgid "
|
| 764 |
-
msgstr "
|
| 765 |
|
| 766 |
-
#:
|
| 767 |
-
msgid "
|
| 768 |
-
msgstr "
|
| 769 |
|
| 770 |
-
#:
|
| 771 |
-
msgid "
|
| 772 |
-
msgstr "
|
| 773 |
|
| 774 |
-
#:
|
| 775 |
-
|
| 776 |
-
|
| 777 |
-
msgstr "Módulos"
|
| 778 |
|
| 779 |
-
#:
|
| 780 |
-
msgid "
|
| 781 |
-
msgstr "
|
| 782 |
|
| 783 |
-
#:
|
| 784 |
-
|
| 785 |
-
|
| 786 |
-
msgstr "Grupos"
|
| 787 |
|
| 788 |
-
#:
|
| 789 |
-
msgid "
|
| 790 |
-
msgstr "
|
| 791 |
|
| 792 |
-
#:
|
| 793 |
-
msgid "
|
| 794 |
-
msgstr "
|
| 795 |
|
| 796 |
-
#:
|
| 797 |
-
msgid "
|
| 798 |
-
msgstr "
|
| 799 |
|
| 800 |
-
#:
|
| 801 |
-
msgid "
|
| 802 |
-
msgstr "
|
| 803 |
|
| 804 |
-
#:
|
| 805 |
-
msgid "
|
| 806 |
-
msgstr "
|
| 807 |
|
| 808 |
-
#:
|
| 809 |
-
msgid "
|
| 810 |
-
msgstr "
|
| 811 |
|
| 812 |
-
#:
|
| 813 |
-
msgid "
|
| 814 |
-
msgstr "
|
| 815 |
|
| 816 |
-
#:
|
| 817 |
-
|
| 818 |
-
|
| 819 |
-
msgstr "Opciones"
|
| 820 |
|
| 821 |
-
#:
|
| 822 |
-
msgid "
|
| 823 |
-
msgstr "
|
| 824 |
|
| 825 |
-
#:
|
| 826 |
-
msgid "
|
| 827 |
-
msgstr "
|
| 828 |
|
| 829 |
-
#:
|
| 830 |
-
msgid "
|
| 831 |
-
msgstr "
|
| 832 |
|
| 833 |
-
#:
|
| 834 |
-
msgid "
|
| 835 |
-
msgstr "
|
| 836 |
|
| 837 |
-
#:
|
| 838 |
-
msgid "
|
| 839 |
-
msgstr "
|
| 840 |
|
| 841 |
-
#:
|
| 842 |
-
|
| 843 |
-
|
|
|
|
| 844 |
|
| 845 |
-
#:
|
| 846 |
-
msgid "
|
| 847 |
-
msgstr "
|
| 848 |
|
| 849 |
-
#:
|
| 850 |
-
msgid "
|
| 851 |
-
msgstr "
|
| 852 |
|
| 853 |
-
#:
|
| 854 |
-
msgid "
|
| 855 |
-
msgstr "
|
| 856 |
|
| 857 |
-
#:
|
| 858 |
-
msgid "
|
| 859 |
-
msgstr "
|
| 860 |
|
| 861 |
-
#:
|
| 862 |
-
|
| 863 |
-
|
|
|
|
| 864 |
|
| 865 |
-
#:
|
| 866 |
-
msgid "
|
| 867 |
-
msgstr "
|
| 868 |
|
| 869 |
-
#:
|
| 870 |
-
#:
|
| 871 |
-
msgid "
|
| 872 |
-
msgstr "
|
| 873 |
|
| 874 |
-
#:
|
| 875 |
-
msgid "
|
| 876 |
-
msgstr "
|
| 877 |
|
| 878 |
-
#:
|
| 879 |
-
msgid "
|
| 880 |
-
msgstr "
|
| 881 |
|
| 882 |
-
#:
|
| 883 |
-
msgid "
|
| 884 |
-
msgstr "
|
| 885 |
|
| 886 |
-
#:
|
| 887 |
-
|
| 888 |
-
|
|
|
|
| 889 |
|
| 890 |
-
#:
|
| 891 |
-
|
| 892 |
-
|
|
|
|
| 893 |
|
| 894 |
-
#:
|
| 895 |
-
|
| 896 |
-
|
|
|
|
|
|
|
|
|
|
| 897 |
|
| 898 |
-
#:
|
| 899 |
-
msgid "
|
| 900 |
-
msgstr "
|
| 901 |
|
| 902 |
-
#:
|
| 903 |
-
msgid "
|
| 904 |
-
msgstr "
|
| 905 |
|
| 906 |
-
#:
|
| 907 |
-
msgid "
|
| 908 |
-
msgstr "
|
| 909 |
|
| 910 |
-
#:
|
| 911 |
-
msgid "
|
| 912 |
-
msgstr "
|
| 913 |
|
| 914 |
-
#:
|
| 915 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 916 |
msgstr "Redirecciones"
|
| 917 |
|
| 918 |
-
#:
|
| 919 |
-
msgid "
|
| 920 |
-
msgstr "
|
| 921 |
|
| 922 |
-
#:
|
| 923 |
-
msgid "
|
| 924 |
-
msgstr "
|
| 925 |
|
| 926 |
-
#:
|
| 927 |
-
msgid "
|
| 928 |
-
msgstr "
|
| 929 |
|
| 930 |
-
#:
|
| 931 |
-
msgid "
|
| 932 |
-
msgstr "
|
| 933 |
|
| 934 |
-
#:
|
| 935 |
-
msgid "
|
| 936 |
-
msgstr "
|
| 937 |
|
| 938 |
-
#:
|
| 939 |
-
msgid "
|
| 940 |
-
msgstr "
|
| 941 |
|
| 942 |
-
#:
|
| 943 |
-
msgid "
|
| 944 |
-
msgstr "
|
| 945 |
|
| 946 |
-
#:
|
| 947 |
-
msgid "
|
| 948 |
-
msgstr "
|
| 949 |
|
| 950 |
-
#:
|
| 951 |
-
msgid "
|
| 952 |
-
msgstr "
|
| 953 |
|
| 954 |
-
#:
|
| 955 |
-
msgid "
|
| 956 |
-
msgstr "
|
| 957 |
|
| 958 |
-
#:
|
| 959 |
-
msgid "
|
| 960 |
-
msgstr "
|
| 961 |
|
| 962 |
-
#:
|
| 963 |
-
msgid "
|
| 964 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 965 |
|
| 966 |
-
#:
|
| 967 |
-
msgid "
|
| 968 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
#
|
| 2 |
-
#
|
| 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 |
-
"
|
| 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 |
-
"
|
| 18 |
-
"X-
|
| 19 |
-
"
|
| 20 |
-
"
|
| 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 |
-
#:
|
| 30 |
-
msgid "
|
| 31 |
-
msgstr "
|
| 32 |
|
| 33 |
-
#:
|
| 34 |
-
msgid "
|
| 35 |
-
msgstr "
|
| 36 |
|
| 37 |
-
#:
|
| 38 |
-
msgid "
|
| 39 |
-
msgstr "
|
| 40 |
|
| 41 |
-
#:
|
| 42 |
-
msgid "Redirection
|
| 43 |
-
msgstr "
|
| 44 |
|
| 45 |
-
#:
|
| 46 |
-
msgid "
|
| 47 |
-
msgstr "
|
| 48 |
|
| 49 |
-
#:
|
| 50 |
-
msgid "
|
| 51 |
-
msgstr "
|
| 52 |
|
| 53 |
-
#:
|
| 54 |
-
msgid "
|
| 55 |
-
msgstr "
|
| 56 |
|
| 57 |
-
#:
|
| 58 |
-
msgid "
|
| 59 |
-
msgstr "
|
| 60 |
|
| 61 |
-
#:
|
| 62 |
-
msgid "
|
| 63 |
-
msgstr "
|
| 64 |
|
| 65 |
-
#:
|
| 66 |
-
msgid "
|
| 67 |
-
msgstr "
|
| 68 |
|
| 69 |
-
#:
|
| 70 |
-
msgid "
|
| 71 |
-
msgstr "
|
| 72 |
|
| 73 |
-
#:
|
| 74 |
-
msgid "
|
| 75 |
-
msgstr "
|
| 76 |
|
| 77 |
-
#:
|
| 78 |
-
msgid "
|
| 79 |
-
msgstr "
|
| 80 |
|
| 81 |
-
#:
|
| 82 |
-
msgid "
|
| 83 |
-
msgstr "
|
| 84 |
|
| 85 |
-
#:
|
| 86 |
-
msgid "
|
| 87 |
-
msgstr "
|
| 88 |
|
| 89 |
-
#:
|
| 90 |
-
msgid "
|
| 91 |
-
msgstr "
|
| 92 |
|
| 93 |
-
#:
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
msgstr "module_%d.csv"
|
| 97 |
|
| 98 |
-
#:
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
msgstr "module_%d.xml"
|
| 102 |
|
| 103 |
-
#:
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
msgstr "%s importé sur %s à %s"
|
| 107 |
|
| 108 |
-
#:
|
| 109 |
-
msgid "
|
| 110 |
-
msgstr "
|
| 111 |
|
| 112 |
-
#:
|
| 113 |
-
msgid "
|
| 114 |
-
msgstr "
|
| 115 |
|
| 116 |
-
#:
|
| 117 |
-
msgid "
|
| 118 |
-
msgstr "
|
| 119 |
|
| 120 |
-
#:
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
msgstr "
|
|
|
|
| 124 |
|
| 125 |
-
#:
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
msgstr "Déconnecté"
|
| 129 |
|
| 130 |
-
#:
|
| 131 |
-
msgid "
|
| 132 |
-
msgstr "
|
| 133 |
|
| 134 |
-
#:
|
| 135 |
-
msgid "
|
| 136 |
-
msgstr "
|
| 137 |
|
| 138 |
-
#:
|
| 139 |
-
msgid "
|
| 140 |
-
msgstr "
|
| 141 |
|
| 142 |
-
#:
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
msgid "HTTP Code"
|
| 146 |
-
msgstr "Code HTTP"
|
| 147 |
|
| 148 |
-
#:
|
| 149 |
-
msgid "
|
| 150 |
-
msgstr "
|
| 151 |
|
| 152 |
-
#:
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
#: ../matches/user_agent.php:76
|
| 156 |
-
msgid "Matched"
|
| 157 |
-
msgstr "Correspond "
|
| 158 |
|
| 159 |
-
#:
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
#: ../matches/user_agent.php:86
|
| 163 |
-
msgid "Not matched"
|
| 164 |
-
msgstr "Ne correspond pas à"
|
| 165 |
|
| 166 |
-
#:
|
| 167 |
-
msgid "
|
| 168 |
-
msgstr "
|
| 169 |
|
| 170 |
-
#:
|
| 171 |
-
msgid "
|
| 172 |
-
msgstr "
|
| 173 |
|
| 174 |
-
#:
|
| 175 |
-
msgid "
|
| 176 |
-
msgstr "
|
| 177 |
|
| 178 |
-
#:
|
| 179 |
-
msgid "
|
| 180 |
-
msgstr "
|
| 181 |
|
| 182 |
-
#:
|
| 183 |
-
msgid "
|
| 184 |
-
msgstr "
|
| 185 |
|
| 186 |
-
#:
|
| 187 |
-
msgid "
|
| 188 |
-
msgstr "
|
| 189 |
|
| 190 |
-
#:
|
| 191 |
-
msgid "
|
| 192 |
-
msgstr "
|
| 193 |
|
| 194 |
-
#:
|
| 195 |
-
msgid "
|
| 196 |
-
msgstr "
|
| 197 |
|
| 198 |
-
#:
|
| 199 |
-
msgid "
|
| 200 |
-
msgstr "
|
| 201 |
|
| 202 |
-
#:
|
| 203 |
-
msgid "
|
| 204 |
-
msgstr "
|
| 205 |
|
| 206 |
-
#:
|
| 207 |
-
msgid "
|
| 208 |
-
msgstr "
|
| 209 |
|
| 210 |
-
#:
|
| 211 |
-
msgid "
|
| 212 |
-
msgstr "
|
| 213 |
|
| 214 |
-
#:
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
msgstr "WordPress"
|
| 218 |
|
| 219 |
-
#:
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
msgstr "Apache"
|
| 223 |
|
| 224 |
-
#:
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
msgstr "Erreurs 404"
|
| 228 |
|
| 229 |
-
#:
|
| 230 |
-
msgid "
|
| 231 |
-
msgstr "
|
| 232 |
|
| 233 |
-
#:
|
| 234 |
-
msgid "
|
| 235 |
-
msgstr "
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
msgid "
|
| 239 |
-
msgstr "
|
| 240 |
|
| 241 |
-
#:
|
| 242 |
-
msgid "
|
| 243 |
-
msgstr "
|
| 244 |
|
| 245 |
-
#:
|
| 246 |
-
msgid "
|
| 247 |
-
msgstr "
|
| 248 |
|
| 249 |
-
#:
|
| 250 |
-
msgid "
|
| 251 |
-
msgstr "
|
| 252 |
|
| 253 |
-
#:
|
| 254 |
-
msgid "
|
| 255 |
-
msgstr "
|
| 256 |
|
| 257 |
-
#:
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
msgstr "%d par page"
|
| 261 |
|
| 262 |
-
#:
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
msgstr "Affichage %s–%s sur %s"
|
| 266 |
|
| 267 |
-
#:
|
| 268 |
-
msgid "
|
| 269 |
-
msgstr "
|
| 270 |
|
| 271 |
-
#:
|
| 272 |
-
msgid "
|
| 273 |
-
msgstr "
|
| 274 |
|
| 275 |
-
#:
|
| 276 |
-
msgid "
|
| 277 |
-
msgstr "
|
| 278 |
|
| 279 |
-
#:
|
| 280 |
-
msgid "
|
| 281 |
-
msgstr "
|
| 282 |
|
| 283 |
-
#:
|
| 284 |
-
msgid "
|
| 285 |
-
msgstr "Ne
|
| 286 |
|
| 287 |
-
#:
|
| 288 |
-
msgid "
|
| 289 |
-
msgstr "
|
| 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 |
-
|
| 384 |
-
msgid "
|
| 385 |
-
msgstr "
|
| 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 |
-
|
| 482 |
-
msgid "
|
| 483 |
-
msgstr "
|
| 484 |
|
| 485 |
-
|
| 486 |
-
msgid "
|
| 487 |
-
msgstr "
|
| 488 |
|
| 489 |
-
|
| 490 |
-
msgid "
|
| 491 |
-
msgstr "
|
| 492 |
|
| 493 |
-
#:
|
| 494 |
-
msgid "
|
| 495 |
-
msgstr "
|
| 496 |
|
| 497 |
-
#:
|
| 498 |
-
msgid "
|
| 499 |
-
msgstr "
|
| 500 |
|
| 501 |
-
#:
|
| 502 |
-
msgid "
|
| 503 |
-
msgstr "
|
| 504 |
|
| 505 |
-
#:
|
| 506 |
-
msgid "
|
| 507 |
-
msgstr "
|
| 508 |
|
| 509 |
-
#:
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
#: ../view/admin/module_edit.php:18
|
| 513 |
-
#: ../view/admin/module_list.php:41
|
| 514 |
-
msgid "Name"
|
| 515 |
-
msgstr "Nom"
|
| 516 |
|
| 517 |
-
#:
|
| 518 |
-
msgid "
|
| 519 |
-
msgstr "
|
| 520 |
|
| 521 |
-
#:
|
| 522 |
-
msgid "
|
| 523 |
-
msgstr "
|
| 524 |
|
| 525 |
-
#:
|
| 526 |
-
msgid "
|
| 527 |
-
msgstr "
|
| 528 |
|
| 529 |
-
#:
|
| 530 |
-
msgid "
|
| 531 |
-
msgstr "
|
| 532 |
|
| 533 |
-
#:
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
msgid "Save"
|
| 537 |
-
msgstr "Sauvegarder"
|
| 538 |
|
| 539 |
-
#:
|
| 540 |
-
|
| 541 |
-
|
| 542 |
-
msgid "Cancel"
|
| 543 |
-
msgstr "Annuler"
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
msgid "
|
| 547 |
-
msgstr "
|
| 548 |
|
| 549 |
-
#:
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
msgstr "désactivé"
|
| 553 |
|
| 554 |
-
#:
|
| 555 |
-
msgid "
|
| 556 |
-
msgstr "
|
| 557 |
|
| 558 |
-
#:
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
msgstr "Module"
|
| 562 |
|
| 563 |
-
#:
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
#: ../view/admin/log.php:23
|
| 567 |
-
msgid "Search"
|
| 568 |
-
msgstr "Chercher"
|
| 569 |
|
| 570 |
-
#:
|
| 571 |
-
msgid "
|
| 572 |
-
msgstr "
|
| 573 |
|
| 574 |
-
#:
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
msgid "Hits"
|
| 578 |
-
msgstr "Hits"
|
| 579 |
|
| 580 |
-
#:
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
msgstr "Sélectionner tout"
|
| 584 |
|
| 585 |
-
#:
|
| 586 |
-
|
| 587 |
-
|
| 588 |
-
msgstr "Permuter"
|
| 589 |
|
| 590 |
-
#:
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
msgstr "Initialiser les accès"
|
| 594 |
|
| 595 |
-
#:
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
|
|
|
|
| 601 |
|
| 602 |
-
#:
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
msgstr "Déplacer vers"
|
| 606 |
|
| 607 |
-
#:
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
msgid "Go"
|
| 611 |
-
msgstr "ok"
|
| 612 |
|
| 613 |
-
#:
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
msgstr "réordonner"
|
| 617 |
|
| 618 |
-
#:
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
msgstr "enregistrer l'ordre"
|
| 622 |
|
| 623 |
-
#:
|
| 624 |
-
msgid "
|
| 625 |
-
msgstr "
|
| 626 |
|
| 627 |
-
#:
|
| 628 |
-
msgid "
|
| 629 |
-
msgstr "
|
| 630 |
-
|
| 631 |
-
#:
|
| 632 |
-
msgid "
|
| 633 |
-
msgstr "
|
| 634 |
-
|
| 635 |
-
#:
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
#:
|
| 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 "
|
| 665 |
|
| 666 |
-
#:
|
| 667 |
-
msgid "
|
| 668 |
-
msgstr "
|
| 669 |
|
| 670 |
-
#:
|
| 671 |
-
msgid "
|
| 672 |
-
msgstr "
|
| 673 |
|
| 674 |
-
#:
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
msgstr "Type"
|
| 678 |
|
| 679 |
-
#:
|
| 680 |
-
msgid "
|
| 681 |
-
msgstr "
|
| 682 |
|
| 683 |
-
#:
|
| 684 |
-
msgid "
|
| 685 |
-
msgstr "
|
| 686 |
|
| 687 |
-
#:
|
| 688 |
-
msgid "
|
| 689 |
-
msgstr "
|
| 690 |
|
| 691 |
-
#:
|
| 692 |
-
msgid "Redirection
|
| 693 |
-
msgstr "
|
| 694 |
|
| 695 |
-
#:
|
| 696 |
-
msgid "
|
| 697 |
-
msgstr "
|
| 698 |
|
| 699 |
-
#:
|
| 700 |
-
msgid "
|
| 701 |
-
msgstr "
|
| 702 |
|
| 703 |
-
#:
|
| 704 |
-
msgid "
|
| 705 |
-
msgstr "
|
| 706 |
|
| 707 |
-
#:
|
| 708 |
-
msgid "
|
| 709 |
-
msgstr "
|
| 710 |
|
| 711 |
-
#:
|
| 712 |
-
msgid "
|
| 713 |
-
msgstr "
|
| 714 |
|
| 715 |
-
#:
|
| 716 |
-
msgid "
|
| 717 |
-
msgstr "
|
| 718 |
|
| 719 |
-
#:
|
| 720 |
-
|
| 721 |
-
|
|
|
|
| 722 |
|
| 723 |
-
#:
|
| 724 |
-
msgid "
|
| 725 |
-
msgstr "
|
| 726 |
|
| 727 |
-
#:
|
| 728 |
-
msgid "
|
| 729 |
-
msgstr "
|
| 730 |
|
| 731 |
-
#:
|
| 732 |
-
|
| 733 |
-
|
|
|
|
| 734 |
|
| 735 |
-
#:
|
| 736 |
-
msgid "
|
| 737 |
-
msgstr "
|
| 738 |
|
| 739 |
-
#:
|
| 740 |
-
msgid "
|
| 741 |
-
|
|
|
|
|
|
|
| 742 |
|
| 743 |
-
#:
|
| 744 |
-
msgid "
|
| 745 |
-
msgstr "
|
| 746 |
|
| 747 |
-
|
| 748 |
-
msgid "
|
| 749 |
-
msgstr "
|
| 750 |
|
| 751 |
-
#:
|
| 752 |
-
msgid "
|
| 753 |
-
msgstr "
|
| 754 |
|
| 755 |
-
#:
|
| 756 |
-
msgid "
|
| 757 |
-
msgstr "
|
| 758 |
|
| 759 |
-
#:
|
| 760 |
-
msgid "
|
| 761 |
-
msgstr "
|
| 762 |
|
| 763 |
-
#:
|
| 764 |
-
msgid "
|
| 765 |
-
msgstr "
|
| 766 |
|
| 767 |
-
#:
|
| 768 |
-
msgid "
|
| 769 |
-
msgstr "
|
| 770 |
|
| 771 |
-
#:
|
| 772 |
-
msgid "
|
| 773 |
-
msgstr "
|
| 774 |
|
| 775 |
-
#:
|
| 776 |
-
|
| 777 |
-
|
| 778 |
-
msgstr "Modules"
|
| 779 |
|
| 780 |
-
#:
|
| 781 |
-
msgid "
|
| 782 |
-
msgstr "
|
| 783 |
|
| 784 |
-
#:
|
| 785 |
-
|
| 786 |
-
|
| 787 |
-
msgstr "Groupes"
|
| 788 |
|
| 789 |
-
#:
|
| 790 |
-
msgid "
|
| 791 |
-
msgstr "
|
| 792 |
|
| 793 |
-
#:
|
| 794 |
-
msgid "
|
| 795 |
-
msgstr "
|
| 796 |
|
| 797 |
-
#:
|
| 798 |
-
msgid "
|
| 799 |
-
msgstr "
|
| 800 |
|
| 801 |
-
#:
|
| 802 |
-
msgid "
|
| 803 |
-
msgstr "
|
| 804 |
|
| 805 |
-
#:
|
| 806 |
-
msgid "
|
| 807 |
-
msgstr "
|
| 808 |
|
| 809 |
-
#:
|
| 810 |
-
msgid "
|
| 811 |
-
msgstr "
|
| 812 |
|
| 813 |
-
#:
|
| 814 |
-
msgid "
|
| 815 |
-
msgstr "
|
| 816 |
|
| 817 |
-
#:
|
| 818 |
-
|
| 819 |
-
|
| 820 |
-
msgstr "Options"
|
| 821 |
|
| 822 |
-
#:
|
| 823 |
-
msgid "
|
| 824 |
-
msgstr "
|
| 825 |
|
| 826 |
-
#:
|
| 827 |
-
msgid "
|
| 828 |
-
msgstr "
|
| 829 |
|
| 830 |
-
#:
|
| 831 |
-
msgid "
|
| 832 |
-
msgstr "
|
| 833 |
|
| 834 |
-
#:
|
| 835 |
-
msgid "
|
| 836 |
-
msgstr "
|
| 837 |
|
| 838 |
-
#:
|
| 839 |
-
msgid "
|
| 840 |
-
msgstr "
|
| 841 |
|
| 842 |
-
#:
|
| 843 |
-
msgid "
|
| 844 |
-
msgstr "
|
| 845 |
|
| 846 |
-
#:
|
| 847 |
-
|
| 848 |
-
|
|
|
|
| 849 |
|
| 850 |
-
#:
|
| 851 |
-
msgid "
|
| 852 |
-
msgstr "
|
| 853 |
|
| 854 |
-
#:
|
| 855 |
-
msgid "
|
| 856 |
-
msgstr "
|
| 857 |
|
| 858 |
-
#:
|
| 859 |
-
msgid "
|
| 860 |
-
msgstr "
|
| 861 |
|
| 862 |
-
#:
|
| 863 |
-
msgid "
|
| 864 |
-
msgstr "
|
| 865 |
|
| 866 |
-
#:
|
| 867 |
-
|
| 868 |
-
|
|
|
|
| 869 |
|
| 870 |
-
#:
|
| 871 |
-
|
| 872 |
-
|
| 873 |
-
msgstr "Ne pas surveiller"
|
| 874 |
|
| 875 |
-
#:
|
| 876 |
-
|
| 877 |
-
|
|
|
|
| 878 |
|
| 879 |
-
#:
|
| 880 |
-
msgid "
|
| 881 |
-
msgstr "
|
| 882 |
|
| 883 |
-
#:
|
| 884 |
-
msgid "
|
| 885 |
-
msgstr "
|
| 886 |
|
| 887 |
-
#:
|
| 888 |
-
msgid "
|
| 889 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 890 |
|
| 891 |
-
#:
|
| 892 |
-
msgid "
|
| 893 |
-
msgstr "
|
| 894 |
|
| 895 |
-
#:
|
| 896 |
-
msgid "
|
| 897 |
-
msgstr "
|
| 898 |
|
| 899 |
-
#:
|
| 900 |
-
msgid "
|
| 901 |
-
msgstr "
|
| 902 |
|
| 903 |
-
#:
|
| 904 |
-
msgid "
|
| 905 |
-
msgstr "
|
| 906 |
|
| 907 |
-
#:
|
| 908 |
-
msgid "
|
| 909 |
-
msgstr "
|
| 910 |
|
| 911 |
-
#:
|
| 912 |
-
msgid "
|
| 913 |
-
msgstr "
|
| 914 |
|
| 915 |
-
#:
|
| 916 |
-
msgid "
|
| 917 |
msgstr "Redirections"
|
| 918 |
|
| 919 |
-
#:
|
| 920 |
-
msgid "
|
| 921 |
-
msgstr "
|
| 922 |
|
| 923 |
-
#:
|
| 924 |
-
msgid "
|
| 925 |
-
msgstr "
|
| 926 |
|
| 927 |
-
#:
|
| 928 |
-
msgid "
|
| 929 |
-
msgstr "
|
| 930 |
-
|
| 931 |
-
#:
|
| 932 |
-
msgid "
|
| 933 |
-
msgstr "
|
| 934 |
-
|
| 935 |
-
#:
|
| 936 |
-
msgid "
|
| 937 |
-
msgstr "
|
| 938 |
-
|
| 939 |
-
#:
|
| 940 |
-
msgid "
|
| 941 |
-
msgstr "
|
| 942 |
-
|
| 943 |
-
#:
|
| 944 |
-
msgid "
|
| 945 |
-
msgstr "
|
| 946 |
-
|
| 947 |
-
#:
|
| 948 |
-
msgid "
|
| 949 |
-
msgstr "
|
| 950 |
-
|
| 951 |
-
#:
|
| 952 |
-
msgid "
|
| 953 |
-
msgstr "
|
| 954 |
-
|
| 955 |
-
#:
|
| 956 |
-
msgid "
|
| 957 |
-
msgstr "
|
| 958 |
-
|
| 959 |
-
#:
|
| 960 |
-
msgid "
|
| 961 |
-
msgstr "
|
| 962 |
-
|
| 963 |
-
#:
|
| 964 |
-
msgid "
|
| 965 |
-
msgstr "
|
| 966 |
-
|
| 967 |
-
|
| 968 |
-
|
| 969 |
-
|
| 970 |
-
|
| 971 |
-
|
| 972 |
-
|
| 973 |
-
|
| 974 |
-
|
| 975 |
-
|
| 976 |
-
|
| 977 |
-
|
| 978 |
-
|
| 979 |
-
|
| 980 |
-
|
| 981 |
-
|
| 982 |
-
|
| 983 |
-
|
| 984 |
-
|
| 985 |
-
|
| 986 |
-
|
| 987 |
-
|
| 988 |
-
|
| 989 |
-
|
| 990 |
-
|
| 991 |
-
|
| 992 |
-
|
| 993 |
-
|
| 994 |
-
|
| 995 |
-
|
| 996 |
-
|
| 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 "
|
|
|
|
| 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 "
|
| 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’ai aidé l’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 |
-
"
|
| 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 |
-
"
|
| 14 |
-
"X-
|
| 15 |
-
"
|
| 16 |
-
"
|
| 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 |
-
#:
|
| 45 |
-
msgid "
|
| 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 |
-
#:
|
| 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 |
-
#:
|
| 69 |
-
msgid "
|
| 70 |
-
msgstr "
|
| 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 |
-
#:
|
| 93 |
-
msgid ""
|
| 94 |
-
|
| 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 |
-
#:
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
msgstr "Not matched"
|
| 114 |
|
| 115 |
-
#:
|
| 116 |
-
msgid "
|
| 117 |
-
msgstr "
|
| 118 |
|
| 119 |
-
#:
|
| 120 |
-
msgid "
|
| 121 |
-
msgstr "
|
| 122 |
|
| 123 |
-
#:
|
| 124 |
-
msgid "
|
| 125 |
-
msgstr "
|
| 126 |
|
| 127 |
-
#:
|
| 128 |
-
msgid "
|
| 129 |
-
msgstr "
|
| 130 |
|
| 131 |
-
#:
|
| 132 |
-
msgid "
|
| 133 |
-
msgstr "
|
| 134 |
|
| 135 |
-
#:
|
| 136 |
-
msgid "
|
| 137 |
-
msgstr "
|
| 138 |
|
| 139 |
-
#:
|
| 140 |
-
msgid "
|
| 141 |
-
msgstr "
|
| 142 |
|
| 143 |
-
#:
|
| 144 |
-
msgid "
|
| 145 |
-
msgstr "
|
| 146 |
|
| 147 |
-
#:
|
| 148 |
-
msgid "
|
| 149 |
-
msgstr "
|
| 150 |
|
| 151 |
-
#:
|
| 152 |
-
msgid "
|
| 153 |
-
msgstr "
|
| 154 |
|
| 155 |
-
#:
|
| 156 |
-
msgid "
|
| 157 |
-
msgstr "
|
| 158 |
|
| 159 |
-
#:
|
| 160 |
-
msgid "
|
| 161 |
-
msgstr "
|
| 162 |
|
| 163 |
-
#:
|
| 164 |
-
msgid "
|
| 165 |
-
msgstr "
|
| 166 |
|
| 167 |
-
#:
|
| 168 |
-
msgid ""
|
| 169 |
-
|
| 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 |
-
#:
|
| 194 |
-
msgid "
|
| 195 |
-
msgstr "
|
| 196 |
|
| 197 |
-
#:
|
| 198 |
-
msgid "
|
| 199 |
-
msgstr "
|
| 200 |
|
| 201 |
-
#:
|
| 202 |
-
msgid "
|
| 203 |
-
msgstr "
|
| 204 |
|
| 205 |
-
#:
|
| 206 |
-
msgid "
|
| 207 |
-
|
|
|
|
|
|
|
| 208 |
|
| 209 |
-
#:
|
| 210 |
-
msgid "
|
| 211 |
-
msgstr "
|
| 212 |
|
| 213 |
-
#:
|
| 214 |
-
msgid "
|
| 215 |
-
msgstr "
|
| 216 |
|
| 217 |
-
#:
|
| 218 |
-
msgid "
|
| 219 |
-
msgstr "
|
| 220 |
|
| 221 |
-
#:
|
| 222 |
-
msgid "
|
| 223 |
-
msgstr "
|
| 224 |
|
| 225 |
-
#:
|
| 226 |
-
msgid "
|
| 227 |
-
msgstr "
|
| 228 |
|
| 229 |
-
#:
|
| 230 |
-
msgid "
|
| 231 |
-
msgstr "
|
| 232 |
|
| 233 |
-
#:
|
| 234 |
-
msgid "
|
| 235 |
-
msgstr "
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
msgid "
|
| 239 |
-
msgstr "
|
| 240 |
|
| 241 |
-
#:
|
| 242 |
-
msgid "
|
| 243 |
-
msgstr "
|
| 244 |
|
| 245 |
-
#:
|
| 246 |
-
msgid "
|
| 247 |
-
msgstr "
|
| 248 |
|
| 249 |
-
#:
|
| 250 |
-
msgid "
|
| 251 |
-
msgstr "
|
| 252 |
|
| 253 |
-
#:
|
| 254 |
-
msgid "
|
| 255 |
-
msgstr "
|
| 256 |
|
| 257 |
-
#:
|
| 258 |
-
msgid "
|
| 259 |
-
msgstr "
|
| 260 |
|
| 261 |
-
#:
|
| 262 |
-
msgid "
|
| 263 |
-
msgstr "
|
| 264 |
|
| 265 |
-
#:
|
| 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 |
-
#:
|
| 274 |
-
msgid "
|
| 275 |
-
msgstr "
|
| 276 |
|
| 277 |
-
#:
|
| 278 |
-
msgid "
|
| 279 |
-
msgstr "
|
| 280 |
|
| 281 |
-
#:
|
| 282 |
-
msgid "
|
| 283 |
-
msgstr "
|
| 284 |
|
| 285 |
-
#:
|
| 286 |
-
msgid "
|
| 287 |
-
msgstr "
|
| 288 |
|
| 289 |
-
#:
|
| 290 |
-
msgid "
|
| 291 |
-
msgstr "
|
| 292 |
|
| 293 |
-
#:
|
| 294 |
-
msgid "
|
| 295 |
-
msgstr "
|
| 296 |
|
| 297 |
-
#:
|
| 298 |
-
msgid "
|
| 299 |
-
msgstr "
|
| 300 |
|
| 301 |
-
#:
|
| 302 |
-
msgid "
|
| 303 |
-
msgstr "
|
| 304 |
|
| 305 |
-
#:
|
| 306 |
-
msgid "
|
| 307 |
-
msgstr "
|
| 308 |
|
| 309 |
-
#:
|
| 310 |
-
msgid "
|
| 311 |
-
msgstr "
|
| 312 |
|
| 313 |
-
#:
|
| 314 |
-
msgid "
|
| 315 |
-
msgstr "
|
| 316 |
|
| 317 |
-
#:
|
| 318 |
-
msgid "
|
| 319 |
-
msgstr "
|
| 320 |
|
| 321 |
-
#:
|
| 322 |
-
msgid "
|
| 323 |
-
msgstr "
|
| 324 |
|
| 325 |
-
#:
|
| 326 |
-
msgid "
|
| 327 |
-
msgstr "
|
| 328 |
|
| 329 |
-
#:
|
| 330 |
-
msgid "
|
| 331 |
-
msgstr "
|
| 332 |
|
| 333 |
-
#:
|
| 334 |
-
msgid "
|
| 335 |
-
msgstr "
|
| 336 |
|
| 337 |
-
#:
|
| 338 |
-
msgid "
|
| 339 |
-
msgstr "
|
| 340 |
|
| 341 |
-
#:
|
| 342 |
-
msgid "
|
| 343 |
-
msgstr "
|
| 344 |
|
| 345 |
-
#:
|
| 346 |
-
msgid "
|
| 347 |
-
msgstr "
|
| 348 |
|
| 349 |
-
#:
|
| 350 |
-
msgid "
|
| 351 |
-
msgstr "
|
| 352 |
|
| 353 |
-
#:
|
| 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 |
-
#:
|
| 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 |
-
#:
|
| 370 |
-
msgid "
|
| 371 |
-
msgstr "
|
| 372 |
|
| 373 |
-
|
| 374 |
-
msgid "
|
| 375 |
-
msgstr "
|
| 376 |
|
| 377 |
-
|
| 378 |
-
msgid "
|
| 379 |
-
msgstr "
|
| 380 |
|
| 381 |
-
|
| 382 |
-
msgid "
|
| 383 |
-
msgstr "
|
| 384 |
|
| 385 |
-
|
| 386 |
-
msgid "
|
| 387 |
-
msgstr "
|
| 388 |
|
| 389 |
-
#:
|
| 390 |
-
msgid "
|
| 391 |
-
msgstr "
|
| 392 |
|
| 393 |
-
#:
|
| 394 |
-
msgid "
|
| 395 |
-
msgstr "
|
| 396 |
|
| 397 |
-
#:
|
| 398 |
-
msgid "
|
| 399 |
-
msgstr "
|
| 400 |
|
| 401 |
-
#:
|
| 402 |
-
msgid "
|
| 403 |
-
msgstr "
|
| 404 |
|
| 405 |
-
#:
|
| 406 |
-
msgid "
|
| 407 |
-
msgstr "
|
| 408 |
|
| 409 |
-
#:
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
msgstr "Sei sicuro?"
|
| 413 |
|
| 414 |
-
#: redirection.php:
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
msgstr "Nessun elemento è stato selezionato"
|
| 418 |
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
msgstr "Redirection"
|
| 423 |
|
| 424 |
-
#: redirection.php:
|
| 425 |
-
msgid "
|
| 426 |
-
msgstr "
|
| 427 |
|
| 428 |
-
#: redirection.php:
|
| 429 |
-
msgid "
|
| 430 |
-
msgstr "
|
| 431 |
|
| 432 |
-
#: redirection.php:
|
| 433 |
-
msgid "
|
| 434 |
-
msgstr "
|
| 435 |
|
| 436 |
-
#: redirection.php:
|
| 437 |
-
msgid "
|
| 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:
|
| 448 |
-
msgid "
|
| 449 |
-
msgstr "
|
| 450 |
|
| 451 |
-
#: redirection.php:
|
| 452 |
-
msgid "
|
| 453 |
-
msgstr "
|
| 454 |
|
| 455 |
-
#: redirection.php:
|
| 456 |
-
msgid "
|
| 457 |
-
msgstr "
|
| 458 |
|
| 459 |
-
#: redirection.php:
|
| 460 |
-
msgid "
|
| 461 |
-
msgstr "
|
| 462 |
|
| 463 |
-
#: redirection.php:
|
| 464 |
-
msgid "
|
| 465 |
-
msgstr "
|
| 466 |
|
| 467 |
-
#:
|
| 468 |
-
msgid "
|
| 469 |
-
msgstr "
|
| 470 |
|
| 471 |
-
#:
|
| 472 |
-
msgid "
|
| 473 |
-
msgstr "
|
| 474 |
|
| 475 |
-
#:
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
msgstr "URL di partenza"
|
| 479 |
|
| 480 |
-
#:
|
| 481 |
-
msgid "
|
| 482 |
-
msgstr "
|
| 483 |
|
| 484 |
-
#:
|
| 485 |
-
msgid "
|
| 486 |
-
msgstr "
|
| 487 |
|
| 488 |
-
#: view/
|
| 489 |
-
msgid "
|
| 490 |
-
msgstr "
|
| 491 |
|
| 492 |
-
#:
|
| 493 |
-
msgid "
|
| 494 |
-
msgstr "
|
| 495 |
|
| 496 |
-
#:
|
| 497 |
-
msgid "
|
| 498 |
-
msgstr "
|
| 499 |
|
| 500 |
-
#:
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
msgid "Name"
|
| 504 |
-
msgstr "Nome"
|
| 505 |
|
| 506 |
-
#:
|
| 507 |
-
msgid "
|
| 508 |
-
msgstr "
|
| 509 |
|
| 510 |
-
#:
|
| 511 |
-
msgid "
|
| 512 |
-
msgstr "
|
| 513 |
|
| 514 |
-
#: view/
|
| 515 |
-
msgid "
|
| 516 |
-
msgstr "
|
| 517 |
|
| 518 |
-
#:
|
| 519 |
-
msgid "
|
| 520 |
msgstr ""
|
| 521 |
-
"Disattivando un gruppo, tutti gli elementi in esso contenuti verranno "
|
| 522 |
-
"disattivati"
|
| 523 |
|
| 524 |
-
#:
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
msgstr "Salva"
|
| 528 |
|
| 529 |
-
#:
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
msgstr "Annulla"
|
| 533 |
|
| 534 |
-
#: view/
|
| 535 |
-
msgid "
|
| 536 |
-
msgstr "
|
| 537 |
|
| 538 |
-
#: view/
|
| 539 |
-
msgid "
|
| 540 |
-
msgstr "
|
| 541 |
|
| 542 |
-
#:
|
| 543 |
-
msgid "Groups
|
| 544 |
-
msgstr "
|
| 545 |
|
| 546 |
-
#:
|
| 547 |
-
msgid "
|
| 548 |
-
msgstr "
|
| 549 |
|
| 550 |
-
#:
|
| 551 |
-
#: view/admin/log.php:16 view/admin/log.php:23
|
| 552 |
msgid "Search"
|
| 553 |
msgstr "Cerca"
|
| 554 |
|
| 555 |
-
#: view/
|
| 556 |
-
msgid "
|
| 557 |
-
msgstr "
|
| 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/
|
| 603 |
-
msgid "
|
| 604 |
-
msgstr "
|
| 605 |
|
| 606 |
-
#: view/
|
| 607 |
-
msgid "Add"
|
| 608 |
-
msgstr "
|
| 609 |
|
| 610 |
-
#: view/
|
| 611 |
-
msgid "
|
| 612 |
-
msgstr "
|
| 613 |
|
| 614 |
-
#: view/
|
| 615 |
-
msgid "
|
| 616 |
-
msgstr "
|
| 617 |
|
| 618 |
-
#: view/
|
| 619 |
-
msgid "
|
| 620 |
-
msgstr "
|
| 621 |
|
| 622 |
-
#: view/
|
| 623 |
-
msgid "
|
| 624 |
-
msgstr "
|
| 625 |
|
| 626 |
-
#: view/
|
| 627 |
-
msgid "
|
| 628 |
-
msgstr "
|
| 629 |
|
| 630 |
-
#: view/
|
| 631 |
-
msgid "
|
| 632 |
-
msgstr "
|
| 633 |
|
| 634 |
-
#:
|
| 635 |
-
|
| 636 |
-
|
|
|
|
| 637 |
|
| 638 |
-
#:
|
| 639 |
-
msgid "
|
| 640 |
-
msgstr "
|
| 641 |
|
| 642 |
-
#:
|
| 643 |
-
msgid "
|
| 644 |
-
msgstr "
|
| 645 |
|
| 646 |
-
#:
|
| 647 |
-
|
| 648 |
-
|
|
|
|
| 649 |
|
| 650 |
-
#:
|
| 651 |
-
msgid "
|
| 652 |
-
msgstr "
|
| 653 |
|
| 654 |
-
#:
|
| 655 |
-
msgid "
|
| 656 |
-
|
|
|
|
|
|
|
| 657 |
|
| 658 |
-
#:
|
| 659 |
-
msgid "
|
| 660 |
-
msgstr "
|
| 661 |
|
| 662 |
-
|
| 663 |
-
msgid "
|
| 664 |
-
msgstr "
|
| 665 |
|
| 666 |
-
#:
|
| 667 |
-
msgid "
|
| 668 |
-
msgstr "
|
| 669 |
|
| 670 |
-
#:
|
| 671 |
-
msgid "
|
| 672 |
-
msgstr "
|
| 673 |
|
| 674 |
-
#:
|
| 675 |
-
msgid "
|
| 676 |
-
msgstr "
|
| 677 |
|
| 678 |
-
#:
|
| 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 |
-
#:
|
| 699 |
-
msgid "
|
| 700 |
-
msgstr "
|
| 701 |
|
| 702 |
-
#:
|
| 703 |
-
msgid "
|
| 704 |
-
msgstr "
|
| 705 |
|
| 706 |
-
#:
|
| 707 |
-
msgid "
|
| 708 |
-
msgstr "
|
| 709 |
|
| 710 |
-
#:
|
| 711 |
-
msgid "
|
| 712 |
-
msgstr "
|
| 713 |
|
| 714 |
-
#:
|
| 715 |
-
msgid "
|
| 716 |
-
msgstr "
|
| 717 |
|
| 718 |
-
#:
|
| 719 |
-
msgid "
|
| 720 |
-
msgstr "
|
| 721 |
|
| 722 |
-
#:
|
| 723 |
-
msgid "
|
| 724 |
-
msgstr "
|
| 725 |
|
| 726 |
-
#:
|
| 727 |
-
msgid "
|
| 728 |
-
msgstr "
|
| 729 |
|
| 730 |
-
#:
|
| 731 |
-
msgid "
|
| 732 |
-
msgstr "
|
| 733 |
|
| 734 |
-
#:
|
| 735 |
-
msgid "
|
| 736 |
-
msgstr "
|
| 737 |
|
| 738 |
-
#:
|
| 739 |
-
msgid "
|
| 740 |
-
msgstr "
|
| 741 |
|
| 742 |
-
#:
|
| 743 |
-
msgid "
|
| 744 |
-
msgstr "
|
| 745 |
|
| 746 |
-
#:
|
| 747 |
-
msgid "
|
| 748 |
-
msgstr "
|
| 749 |
|
| 750 |
-
#:
|
| 751 |
-
msgid "
|
| 752 |
-
msgstr "
|
| 753 |
|
| 754 |
-
#:
|
| 755 |
-
msgid "You
|
| 756 |
-
msgstr "
|
| 757 |
|
| 758 |
-
#:
|
| 759 |
-
msgid "
|
| 760 |
-
msgstr "
|
| 761 |
|
| 762 |
-
#:
|
| 763 |
-
msgid ""
|
| 764 |
-
|
| 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 |
-
#:
|
| 784 |
-
msgid "
|
| 785 |
-
msgstr "
|
| 786 |
|
| 787 |
-
#:
|
| 788 |
-
msgid ""
|
| 789 |
-
|
| 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/
|
| 815 |
-
|
| 816 |
-
|
|
|
|
| 817 |
|
| 818 |
-
#:
|
| 819 |
-
msgid "
|
| 820 |
-
msgstr "
|
| 821 |
|
| 822 |
-
#:
|
| 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 |
-
#:
|
| 838 |
-
msgid "
|
| 839 |
-
msgstr "
|
| 840 |
|
| 841 |
-
#:
|
| 842 |
-
msgid "
|
| 843 |
-
msgstr "
|
| 844 |
|
| 845 |
-
#:
|
| 846 |
-
|
| 847 |
-
|
| 848 |
-
|
| 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/
|
| 854 |
-
msgid "
|
| 855 |
-
msgstr "
|
| 856 |
|
| 857 |
-
#:
|
| 858 |
-
|
| 859 |
-
|
| 860 |
-
|
| 861 |
-
msgstr ""
|
| 862 |
-
"È possibile impostare Redirection per identificare i cambiamenti nelle URL e "
|
| 863 |
-
"creare automaticamente un reindirizzamento in un gruppo specifico."
|
| 864 |
|
| 865 |
-
#:
|
| 866 |
-
msgid "
|
| 867 |
-
msgstr "
|
| 868 |
|
| 869 |
-
#:
|
| 870 |
-
msgid "
|
| 871 |
-
msgstr "
|
| 872 |
|
| 873 |
-
#:
|
| 874 |
-
msgid "
|
| 875 |
-
msgstr "
|
| 876 |
|
| 877 |
-
#:
|
| 878 |
-
|
| 879 |
-
|
|
|
|
| 880 |
|
| 881 |
-
#:
|
| 882 |
-
|
| 883 |
-
|
|
|
|
| 884 |
|
| 885 |
-
#:
|
| 886 |
-
|
| 887 |
-
|
|
|
|
|
|
|
|
|
|
| 888 |
|
| 889 |
-
#:
|
| 890 |
-
msgid ""
|
| 891 |
-
|
| 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 |
-
#:
|
| 898 |
-
msgid "
|
| 899 |
-
msgstr "
|
| 900 |
|
| 901 |
-
#:
|
| 902 |
-
msgid "
|
| 903 |
-
msgstr "
|
| 904 |
|
| 905 |
-
#:
|
| 906 |
-
msgid "
|
| 907 |
-
msgstr ""
|
| 908 |
-
"Nota: il gruppo viene ignorato quando si effettua l'upload di un file XML."
|
| 909 |
|
| 910 |
-
#:
|
| 911 |
-
msgid "
|
| 912 |
-
msgstr "
|
| 913 |
|
| 914 |
-
#:
|
| 915 |
-
msgid ""
|
| 916 |
-
"
|
| 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 |
-
#:
|
| 925 |
-
msgid "
|
| 926 |
msgstr "Reindirizzamenti"
|
| 927 |
|
| 928 |
-
#:
|
| 929 |
-
msgid "
|
| 930 |
-
msgstr "
|
| 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 |
-
#:
|
| 982 |
-
msgid "
|
| 983 |
-
msgstr "
|
| 984 |
|
| 985 |
-
#:
|
| 986 |
-
msgid ""
|
| 987 |
-
"
|
| 988 |
-
msgstr ""
|
| 989 |
-
"Se parli più lingue potresti essere interessato a donare una traduzione."
|
| 990 |
|
| 991 |
-
#:
|
| 992 |
-
msgid ""
|
| 993 |
-
|
| 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 |
-
#:
|
| 1002 |
-
msgid ""
|
| 1003 |
-
|
| 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 |
-
|
| 1012 |
-
msgid "
|
| 1013 |
-
msgstr "
|
| 1014 |
|
| 1015 |
-
|
| 1016 |
-
msgid "
|
| 1017 |
-
msgstr "
|
| 1018 |
|
| 1019 |
-
|
| 1020 |
-
msgid "
|
| 1021 |
-
msgstr "
|
| 1022 |
|
| 1023 |
-
|
| 1024 |
-
msgid "
|
| 1025 |
-
msgstr "
|
| 1026 |
|
| 1027 |
-
|
| 1028 |
-
|
|
|
|
| 1029 |
|
| 1030 |
-
|
| 1031 |
-
|
|
|
|
| 1032 |
|
| 1033 |
-
|
| 1034 |
-
|
|
|
|
| 1035 |
|
| 1036 |
-
|
| 1037 |
-
|
|
|
|
| 1038 |
|
| 1039 |
-
|
| 1040 |
-
|
|
|
|
| 1041 |
|
| 1042 |
-
|
| 1043 |
-
|
| 1044 |
-
|
| 1045 |
-
|
| 1046 |
-
#~ "Prima di porre una domanda, si prega di leggere attentamente la "
|
| 1047 |
-
#~ "documentazione e le FAQ, e controllare il bug tracker."
|
| 1048 |
|
| 1049 |
-
|
| 1050 |
-
|
|
|
|
|
|
|
| 1051 |
|
| 1052 |
-
|
| 1053 |
-
|
|
|
|
| 1054 |
|
| 1055 |
-
|
| 1056 |
-
|
|
|
|
|
|
|
| 1057 |
|
| 1058 |
-
|
| 1059 |
-
|
|
|
|
| 1060 |
|
| 1061 |
-
|
| 1062 |
-
|
|
|
|
|
|
|
| 1063 |
|
| 1064 |
-
|
| 1065 |
-
|
|
|
|
| 1066 |
|
| 1067 |
-
|
| 1068 |
-
|
|
|
|
| 1069 |
|
| 1070 |
-
|
| 1071 |
-
|
|
|
|
| 1072 |
|
| 1073 |
-
|
| 1074 |
-
|
|
|
|
| 1075 |
|
| 1076 |
-
|
| 1077 |
-
|
|
|
| 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 |
-
#
|
| 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 |
-
"
|
| 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-
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
#:
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
msgstr "リファラー: %s"
|
| 33 |
|
| 34 |
-
#:
|
| 35 |
-
msgid "
|
| 36 |
-
msgstr "
|
| 37 |
|
| 38 |
-
#:
|
| 39 |
-
msgid ""
|
| 40 |
-
|
| 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 |
-
#:
|
| 48 |
-
msgid "
|
| 49 |
-
msgstr "
|
| 50 |
|
| 51 |
-
#:
|
| 52 |
-
msgid "
|
| 53 |
-
msgstr "
|
| 54 |
|
| 55 |
-
#:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#:
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
msgstr "HTTP コード"
|
| 71 |
|
| 72 |
-
#:
|
| 73 |
-
msgid ""
|
| 74 |
-
|
| 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 |
-
#:
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
msgstr "不一致の場合"
|
| 92 |
|
| 93 |
-
#:
|
| 94 |
-
msgid "
|
| 95 |
-
msgstr "
|
| 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 |
-
#:
|
| 106 |
-
msgid "
|
| 107 |
-
msgstr "
|
| 108 |
|
| 109 |
-
#:
|
| 110 |
-
msgid "
|
| 111 |
-
msgstr "
|
| 112 |
|
| 113 |
-
#:
|
| 114 |
-
msgid "
|
| 115 |
-
msgstr "
|
| 116 |
|
| 117 |
-
#:
|
| 118 |
-
msgid "
|
| 119 |
-
msgstr "
|
| 120 |
|
| 121 |
-
#:
|
| 122 |
-
msgid "
|
| 123 |
-
msgstr "
|
| 124 |
|
| 125 |
-
#:
|
| 126 |
-
msgid "
|
| 127 |
-
msgstr "
|
| 128 |
|
| 129 |
-
#:
|
| 130 |
-
msgid "
|
| 131 |
-
msgstr "
|
| 132 |
|
| 133 |
-
#:
|
| 134 |
-
msgid "
|
| 135 |
-
msgstr "
|
| 136 |
|
| 137 |
-
#:
|
| 138 |
-
msgid "
|
| 139 |
-
msgstr "
|
| 140 |
|
| 141 |
-
#:
|
| 142 |
-
msgid "
|
| 143 |
-
msgstr "
|
| 144 |
|
| 145 |
-
#:
|
| 146 |
-
msgid ""
|
| 147 |
-
"
|
| 148 |
-
"
|
| 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 |
-
#:
|
| 159 |
-
msgid "
|
| 160 |
-
msgstr "
|
| 161 |
|
| 162 |
-
#:
|
| 163 |
-
msgid "
|
| 164 |
-
msgstr "
|
| 165 |
|
| 166 |
-
#:
|
| 167 |
-
msgid "
|
| 168 |
-
msgstr "
|
| 169 |
|
| 170 |
-
#:
|
| 171 |
-
msgid "
|
| 172 |
-
msgstr "
|
| 173 |
|
| 174 |
-
#:
|
| 175 |
-
msgid "
|
| 176 |
-
msgstr "
|
| 177 |
|
| 178 |
-
#:
|
| 179 |
-
msgid "
|
| 180 |
-
msgstr "
|
| 181 |
|
| 182 |
-
#:
|
| 183 |
-
msgid "
|
| 184 |
-
msgstr "
|
| 185 |
|
| 186 |
-
#:
|
| 187 |
-
msgid "
|
| 188 |
-
msgstr "
|
| 189 |
|
| 190 |
-
#:
|
| 191 |
-
msgid "
|
| 192 |
-
msgstr "
|
| 193 |
|
| 194 |
-
#:
|
| 195 |
-
msgid "
|
| 196 |
-
msgstr "
|
| 197 |
|
| 198 |
-
#:
|
| 199 |
-
msgid "
|
| 200 |
-
msgstr "
|
| 201 |
|
| 202 |
-
#:
|
| 203 |
-
msgid "
|
| 204 |
-
msgstr "
|
| 205 |
|
| 206 |
-
#:
|
| 207 |
-
msgid "
|
| 208 |
-
msgstr "
|
| 209 |
|
| 210 |
-
#:
|
| 211 |
-
msgid "
|
| 212 |
-
msgstr "
|
| 213 |
|
| 214 |
-
#:
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
msgid "Delete"
|
| 218 |
-
msgstr "削除"
|
| 219 |
|
| 220 |
-
#:
|
| 221 |
-
msgid "
|
| 222 |
-
msgstr "
|
| 223 |
|
| 224 |
-
#:
|
| 225 |
-
msgid "
|
| 226 |
-
msgstr "
|
| 227 |
|
| 228 |
-
#:
|
| 229 |
-
msgid "
|
| 230 |
-
msgstr "
|
| 231 |
|
| 232 |
-
#:
|
| 233 |
-
msgid "
|
| 234 |
-
msgstr "
|
| 235 |
|
| 236 |
-
#:
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
msgstr "名称"
|
| 240 |
|
| 241 |
-
#:
|
| 242 |
-
msgid "
|
| 243 |
-
msgstr "
|
| 244 |
|
| 245 |
-
#:
|
| 246 |
-
msgid "
|
| 247 |
-
msgstr "
|
| 248 |
|
| 249 |
-
#:
|
| 250 |
-
msgid "
|
| 251 |
-
msgstr "
|
| 252 |
|
| 253 |
-
#:
|
| 254 |
-
msgid "
|
| 255 |
-
msgstr "
|
| 256 |
|
| 257 |
-
#:
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
msgstr "ソース URL"
|
| 261 |
|
| 262 |
-
#:
|
| 263 |
-
msgid "
|
| 264 |
-
msgstr "
|
| 265 |
|
| 266 |
-
#:
|
| 267 |
-
msgid "
|
| 268 |
-
msgstr "
|
| 269 |
|
| 270 |
-
#:
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr "
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
-
msgstr "
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
msgid "
|
| 280 |
-
msgstr "
|
| 281 |
|
| 282 |
-
#:
|
| 283 |
-
msgid "
|
| 284 |
-
msgstr ""
|
| 285 |
-
"指定された一致タイプの転送ルールを作成する際に無効なソース URL が入力されまし"
|
| 286 |
-
"た"
|
| 287 |
|
| 288 |
-
#:
|
| 289 |
-
msgid ""
|
| 290 |
-
"
|
| 291 |
-
"install"
|
| 292 |
-
msgstr ""
|
| 293 |
-
"新規転送ルールを追加できません。設定ページから転送ルールを削除し、再インス"
|
| 294 |
-
"トールしてください。"
|
| 295 |
|
| 296 |
-
#:
|
| 297 |
-
msgid "
|
| 298 |
-
msgstr "
|
| 299 |
|
| 300 |
-
#:
|
| 301 |
-
msgid "
|
| 302 |
-
msgstr "
|
| 303 |
|
| 304 |
-
#:
|
| 305 |
-
msgid "
|
| 306 |
-
msgstr "
|
| 307 |
|
| 308 |
-
#:
|
| 309 |
-
msgid "
|
| 310 |
-
msgstr "
|
| 311 |
|
| 312 |
-
#:
|
| 313 |
-
msgid "
|
| 314 |
-
msgstr "
|
| 315 |
|
| 316 |
-
#:
|
| 317 |
-
msgid "
|
| 318 |
-
msgstr "
|
| 319 |
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
msgstr "WordPress のインストール位置: <code>%s</code>"
|
| 324 |
|
| 325 |
-
|
| 326 |
-
msgid "
|
| 327 |
-
msgstr "
|
| 328 |
|
| 329 |
-
|
| 330 |
-
msgid "
|
| 331 |
-
msgstr "
|
| 332 |
|
| 333 |
-
|
| 334 |
-
|
| 335 |
-
|
| 336 |
-
msgstr "WWW を除く (%s)"
|
| 337 |
|
| 338 |
-
#:
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
msgstr "WWW を強制追加 (www.%s)"
|
| 342 |
|
| 343 |
-
#:
|
| 344 |
-
msgid "
|
| 345 |
-
msgstr "
|
| 346 |
|
| 347 |
-
#:
|
| 348 |
-
msgid "
|
| 349 |
-
msgstr "
|
| 350 |
|
| 351 |
-
#:
|
| 352 |
-
msgid "
|
| 353 |
-
msgstr "
|
| 354 |
|
| 355 |
-
#:
|
| 356 |
-
msgid "
|
| 357 |
-
msgstr "
|
| 358 |
|
| 359 |
-
#:
|
| 360 |
-
msgid "
|
| 361 |
-
msgstr "
|
| 362 |
|
| 363 |
-
#:
|
| 364 |
-
msgid "
|
| 365 |
-
msgstr "
|
| 366 |
|
| 367 |
-
#:
|
| 368 |
-
msgid "
|
| 369 |
-
msgstr "
|
| 370 |
|
| 371 |
-
#:
|
| 372 |
-
msgid "
|
| 373 |
-
msgstr "
|
| 374 |
|
| 375 |
-
#:
|
| 376 |
-
msgid "
|
| 377 |
-
msgstr "
|
| 378 |
|
| 379 |
-
#:
|
| 380 |
-
msgid "
|
| 381 |
-
msgstr "
|
| 382 |
|
| 383 |
-
#:
|
| 384 |
-
msgid "
|
| 385 |
-
msgstr "
|
| 386 |
|
| 387 |
-
#:
|
| 388 |
-
msgid "
|
| 389 |
-
msgstr "
|
| 390 |
|
| 391 |
-
#:
|
| 392 |
-
msgid "
|
| 393 |
-
msgstr ""
|
| 394 |
-
"<strong>ファイルの位置が正しくありません。パスが存在するか確認してください。"
|
| 395 |
-
"</strong>"
|
| 396 |
|
| 397 |
-
#:
|
| 398 |
-
msgid ""
|
| 399 |
-
"
|
| 400 |
-
"file permissions</strong>"
|
| 401 |
-
msgstr ""
|
| 402 |
-
"<strong>設定済みの <code>.htaccess</code> に書き込みできませんでした。パー"
|
| 403 |
-
"ミッションを確認してください。</strong>"
|
| 404 |
|
| 405 |
-
#:
|
| 406 |
-
msgid ""
|
| 407 |
-
|
| 408 |
-
"this to be valid</strong>"
|
| 409 |
-
msgstr ""
|
| 410 |
-
"<strong>無効: 有効にするには<code>.htaccess</code> ファイルの位置を入力してく"
|
| 411 |
-
"ださい。</strong>"
|
| 412 |
|
| 413 |
-
#:
|
| 414 |
-
msgid "
|
| 415 |
-
msgstr "
|
| 416 |
|
| 417 |
-
#:
|
| 418 |
-
msgid "
|
| 419 |
-
msgstr "
|
| 420 |
|
| 421 |
-
#:
|
| 422 |
-
msgid "
|
| 423 |
-
msgstr "
|
| 424 |
|
| 425 |
-
#:
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
msgstr "メモリー上限%dMB"
|
| 429 |
|
| 430 |
-
#:
|
| 431 |
-
msgid "
|
| 432 |
-
msgstr "
|
| 433 |
|
| 434 |
-
#:
|
| 435 |
-
msgid "
|
| 436 |
-
msgstr "
|
| 437 |
|
| 438 |
-
#:
|
| 439 |
-
msgid "
|
| 440 |
-
msgstr "
|
| 441 |
|
| 442 |
-
#:
|
| 443 |
-
msgid "
|
| 444 |
-
msgstr "
|
| 445 |
|
| 446 |
-
#:
|
| 447 |
-
msgid ""
|
| 448 |
-
|
| 449 |
-
"\">permalinks</a> before using this</strong>"
|
| 450 |
-
msgstr ""
|
| 451 |
-
"<strong>無効: これを使用する前に<a href=\"options-permalink.php\">パーマリン"
|
| 452 |
-
"ク</a>を有効にする必要があります。</strong>"
|
| 453 |
|
| 454 |
-
#: redirection-
|
| 455 |
-
msgid "
|
| 456 |
-
msgstr "
|
| 457 |
|
| 458 |
-
#: redirection-
|
| 459 |
-
msgid "
|
| 460 |
-
msgstr "
|
| 461 |
|
| 462 |
-
#: redirection-
|
| 463 |
-
msgid "
|
| 464 |
-
msgstr "
|
| 465 |
|
| 466 |
-
#:
|
| 467 |
-
msgid "
|
| 468 |
-
msgstr "
|
| 469 |
|
| 470 |
-
#: redirection-
|
| 471 |
-
msgid "
|
| 472 |
-
msgstr "
|
| 473 |
|
| 474 |
-
#: redirection-
|
| 475 |
-
msgid "
|
| 476 |
-
msgstr "
|
| 477 |
|
| 478 |
-
#: redirection-admin.php:
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
msgid_plural "%d redirections were successfully imported"
|
| 482 |
-
msgstr[0] "%d件の転送をインポートしました。"
|
| 483 |
|
| 484 |
-
#:
|
| 485 |
-
msgid "
|
| 486 |
-
msgstr "
|
| 487 |
|
| 488 |
-
#:
|
| 489 |
-
msgid "
|
| 490 |
-
msgstr "
|
| 491 |
|
| 492 |
-
#: redirection-
|
| 493 |
-
msgid "
|
| 494 |
-
msgstr "
|
| 495 |
|
| 496 |
-
#: redirection-
|
| 497 |
-
msgid "
|
| 498 |
-
msgstr "
|
| 499 |
|
| 500 |
-
#: redirection-
|
| 501 |
-
msgid "
|
| 502 |
-
msgstr "
|
| 503 |
|
| 504 |
-
#:
|
| 505 |
-
|
| 506 |
-
|
| 507 |
-
#: redirection-admin.php:470
|
| 508 |
-
msgid "Unable to perform action"
|
| 509 |
-
msgstr "操作を実行できません"
|
| 510 |
|
| 511 |
-
#: redirection-
|
| 512 |
-
msgid "
|
| 513 |
-
msgstr "
|
| 514 |
|
| 515 |
-
#: view/
|
| 516 |
-
msgid "Add
|
| 517 |
msgstr "新しい転送ルールを追加"
|
| 518 |
|
| 519 |
-
#: view/
|
| 520 |
-
msgid "
|
| 521 |
-
msgstr "
|
| 522 |
|
| 523 |
-
#: view/
|
| 524 |
-
msgid "
|
| 525 |
-
msgstr "
|
| 526 |
|
| 527 |
-
#: view/
|
| 528 |
msgid "Action"
|
| 529 |
msgstr "操作"
|
| 530 |
|
| 531 |
-
#: view/
|
| 532 |
-
msgid "
|
| 533 |
-
msgstr "
|
| 534 |
|
| 535 |
-
#: view/
|
| 536 |
-
msgid "
|
| 537 |
-
msgstr "
|
| 538 |
|
| 539 |
-
#: view/
|
| 540 |
-
msgid "Add
|
| 541 |
msgstr "新しい転送ルールを追加"
|
| 542 |
|
| 543 |
-
#:
|
| 544 |
-
|
| 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 |
-
#:
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
msgstr "検索"
|
| 573 |
-
|
| 574 |
-
#: view/admin/group_list.php:22
|
| 575 |
-
msgid "Add Group"
|
| 576 |
-
msgstr "グループを追加"
|
| 577 |
|
| 578 |
-
#:
|
| 579 |
-
msgid "
|
| 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 |
-
#:
|
| 621 |
-
|
| 622 |
-
|
|
|
|
| 623 |
|
| 624 |
-
#:
|
| 625 |
-
msgid "
|
| 626 |
-
msgstr "
|
| 627 |
|
| 628 |
-
#:
|
| 629 |
-
msgid "
|
| 630 |
-
|
|
|
|
| 631 |
|
| 632 |
-
#:
|
| 633 |
-
msgid "
|
| 634 |
-
msgstr "
|
| 635 |
|
| 636 |
-
|
| 637 |
-
msgid "
|
| 638 |
-
msgstr "
|
| 639 |
|
| 640 |
-
#:
|
| 641 |
-
msgid "
|
| 642 |
msgstr "設定"
|
| 643 |
|
| 644 |
-
#:
|
| 645 |
-
msgid "
|
| 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–%s of %s"
|
| 848 |
-
#~ msgstr "%s–%s件中%s件を表示中"
|
| 849 |
|
| 850 |
-
|
| 851 |
-
|
|
|
|
| 852 |
|
| 853 |
-
|
| 854 |
-
|
|
|
|
| 855 |
|
| 856 |
-
|
| 857 |
-
|
|
|
|
| 858 |
|
| 859 |
-
|
| 860 |
-
|
|
|
|
| 861 |
|
| 862 |
-
|
| 863 |
-
|
|
|
|
| 864 |
|
| 865 |
-
|
| 866 |
-
|
|
|
|
| 867 |
|
| 868 |
-
|
| 869 |
-
|
|
|
|
| 870 |
|
| 871 |
-
|
| 872 |
-
|
|
|
|
| 873 |
|
| 874 |
-
|
| 875 |
-
|
| 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 |
-
|
| 951 |
-
|
|
|
|
| 952 |
|
| 953 |
-
|
| 954 |
-
|
|
|
|
| 955 |
|
| 956 |
-
|
| 957 |
-
|
|
|
|
| 958 |
|
| 959 |
-
|
| 960 |
-
|
|
|
|
| 961 |
|
| 962 |
-
|
| 963 |
-
|
|
|
|
| 964 |
|
| 965 |
-
|
| 966 |
-
|
|
|
|
| 967 |
|
| 968 |
-
|
| 969 |
-
|
|
|
|
| 970 |
|
| 971 |
-
|
| 972 |
-
|
|
|
|
| 973 |
|
| 974 |
-
|
| 975 |
-
|
|
|
|
| 976 |
|
| 977 |
-
|
| 978 |
-
|
|
|
|
| 979 |
|
| 980 |
-
|
| 981 |
-
|
| 982 |
-
|
| 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 |
-
|
| 988 |
-
|
|
|
|
| 989 |
|
| 990 |
-
|
| 991 |
-
|
|
|
|
|
|
|
| 992 |
|
| 993 |
-
|
| 994 |
-
|
|
|
|
| 995 |
|
| 996 |
-
|
| 997 |
-
|
|
|
|
| 998 |
|
| 999 |
-
|
| 1000 |
-
|
|
|
|
| 1001 |
|
| 1002 |
-
|
| 1003 |
-
|
| 1004 |
-
|
| 1005 |
-
#~ "busy and pages are often not found."
|
| 1006 |
-
#~ msgstr ""
|
| 1007 |
-
#~ "以下のいずれか、または両方のチェックを外してログの保存を無効化することで、"
|
| 1008 |
-
#~ "データベースの不可を軽減できます。これは、転送 URL が非常に頻繁にアクセス"
|
| 1009 |
-
#~ "されている場合や、サイトのトラフィックが多く 404 ページがよく表示される場"
|
| 1010 |
-
#~ "合に効果的です。"
|
| 1011 |
|
| 1012 |
-
|
| 1013 |
-
|
|
|
|
|
|
|
| 1014 |
|
| 1015 |
-
|
| 1016 |
-
|
|
|
|
| 1017 |
|
| 1018 |
-
|
| 1019 |
-
|
|
|
|
|
|
|
| 1020 |
|
| 1021 |
-
|
| 1022 |
-
|
| 1023 |
-
|
| 1024 |
-
#~ msgstr ""
|
| 1025 |
-
#~ "リディレクションプラグインは変更された URL を発見し、指定したグループへ自"
|
| 1026 |
-
#~ "動的に転送できます。"
|
| 1027 |
|
| 1028 |
-
|
| 1029 |
-
|
|
|
|
| 1030 |
|
| 1031 |
-
|
| 1032 |
-
|
|
|
|
| 1033 |
|
| 1034 |
-
|
| 1035 |
-
|
| 1036 |
-
|
| 1037 |
-
|
| 1038 |
|
| 1039 |
-
|
| 1040 |
-
|
| 1041 |
-
|
| 1042 |
-
|
| 1043 |
-
#~ msgstr ""
|
| 1044 |
-
#~ "翻訳者の方は「個人サポーター」として扱われるのに加え、<a href=\"http://"
|
| 1045 |
-
#~ "urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> サイトのプラグイ"
|
| 1046 |
-
#~ "ンページでその方のサイトへのリンクを掲載します。"
|
| 1047 |
|
| 1048 |
-
|
| 1049 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1050 |
|
| 1051 |
-
|
| 1052 |
-
|
|
|
|
| 1053 |
|
| 1054 |
-
|
| 1055 |
-
|
|
|
|
| 1056 |
|
| 1057 |
-
|
| 1058 |
-
|
|
|
|
| 1059 |
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
#~ "<p style=\"color: red\">このリソースにアクセスする権限がありません</p>"
|
| 1064 |
|
| 1065 |
-
|
| 1066 |
-
|
|
|
|
| 1067 |
|
| 1068 |
-
|
| 1069 |
-
|
|
|
|
| 1070 |
|
| 1071 |
-
|
| 1072 |
-
|
|
|
|
| 1073 |
|
| 1074 |
-
|
| 1075 |
-
|
|
|
|
| 1076 |
|
| 1077 |
-
|
| 1078 |
-
|
|
|
|
| 1079 |
|
| 1080 |
-
|
| 1081 |
-
|
|
|
|
| 1082 |
|
| 1083 |
-
|
| 1084 |
-
|
|
|
|
| 1085 |
|
| 1086 |
-
|
| 1087 |
-
|
|
|
|
| 1088 |
|
| 1089 |
-
|
| 1090 |
-
|
| 1091 |
-
|
| 1092 |
-
#~ msgstr ""
|
| 1093 |
-
#~ "質問する前にドキュメンテーションと FAQ を読み、バグトラッカーを確認してく"
|
| 1094 |
-
#~ "ださい。"
|
| 1095 |
|
| 1096 |
-
|
| 1097 |
-
|
|
|
|
| 1098 |
|
| 1099 |
-
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
-
#~ msgid "Time Limit"
|
| 1103 |
-
#~ msgstr "時間上限"
|
| 1104 |
-
|
| 1105 |
-
#~ msgid "30 seconds"
|
| 1106 |
-
#~ msgstr "30秒"
|
| 1107 |
|
| 1108 |
-
|
| 1109 |
-
|
|
|
|
| 1110 |
|
| 1111 |
-
|
| 1112 |
-
|
|
|
|
| 1113 |
|
| 1114 |
-
|
| 1115 |
-
|
|
|
|
| 1116 |
|
| 1117 |
-
|
| 1118 |
-
|
|
|
|
| 1119 |
|
| 1120 |
-
|
| 1121 |
-
|
|
|
|
| 1122 |
|
| 1123 |
-
|
| 1124 |
-
|
|
|
|
| 1125 |
|
| 1126 |
-
|
| 1127 |
-
|
| 1128 |
-
|
| 1129 |
-
|
| 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 |
-
|
| 1139 |
-
|
|
|
|
|
|
|
| 1140 |
|
| 1141 |
-
|
| 1142 |
-
|
|
|
|
| 1143 |
|
| 1144 |
-
|
| 1145 |
-
|
|
|
|
|
|
|
| 1146 |
|
| 1147 |
-
|
| 1148 |
-
|
| 1149 |
-
|
| 1150 |
-
#~ "plugin!"
|
| 1151 |
-
#~ msgstr ""
|
| 1152 |
-
#~ "最も完成された SEO メタデータ管理および一般用途向け WordPress プラグイン。"
|
| 1153 |
-
#~ "この強力なプラグインひとつで5、6個の他のプラグインを置き換えることができま"
|
| 1154 |
-
#~ "す !"
|
| 1155 |
|
| 1156 |
-
|
| 1157 |
-
|
|
|
|
|
|
|
| 1158 |
|
| 1159 |
-
|
| 1160 |
-
|
| 1161 |
-
|
| 1162 |
-
#~ msgstr ""
|
| 1163 |
-
#~ "デフォルトの WordPress 検索機能を超える魅力的な検索プラグイン。サイトを皿"
|
| 1164 |
-
#~ "に使いやすくします。"
|
| 1165 |
|
| 1166 |
-
|
| 1167 |
-
|
|
|
|
| 1168 |
|
| 1169 |
-
|
| 1170 |
-
|
| 1171 |
-
|
| 1172 |
-
#~ msgstr ""
|
| 1173 |
-
#~ "柔軟で強力なテキスト挿入プラグイン。好きなところに好きなテキストを挿入でき"
|
| 1174 |
-
#~ "ます。"
|
| 1175 |
|
| 1176 |
-
|
| 1177 |
-
|
|
|
|
| 1178 |
|
| 1179 |
-
|
| 1180 |
-
|
|
|
| 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 |
-
#
|
| 2 |
-
# This file is distributed under the same license as the Redirection package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
| 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-
|
| 16 |
-
"
|
| 17 |
-
"
|
| 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 |
-
#:
|
| 115 |
-
msgid "
|
| 116 |
-
msgstr "
|
| 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 |
-
#:
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
msgstr "Modules"
|
| 153 |
|
| 154 |
-
#:
|
| 155 |
-
msgid "
|
| 156 |
-
msgstr "
|
| 157 |
|
| 158 |
-
#:
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
msgstr "Instellingen"
|
| 162 |
|
| 163 |
-
#:
|
| 164 |
-
msgid "
|
| 165 |
-
msgstr "
|
| 166 |
|
| 167 |
-
#:
|
| 168 |
-
msgid "
|
| 169 |
-
msgstr "
|
| 170 |
|
| 171 |
-
#:
|
| 172 |
-
msgid "
|
| 173 |
-
msgstr "
|
| 174 |
|
| 175 |
-
#:
|
| 176 |
-
msgid "
|
| 177 |
-
msgstr "
|
| 178 |
|
| 179 |
-
#:
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
msgid "Apache"
|
| 183 |
-
msgstr "Apache"
|
| 184 |
|
| 185 |
-
#:
|
| 186 |
-
msgid "
|
| 187 |
-
msgstr "
|
| 188 |
|
| 189 |
-
#:
|
| 190 |
-
msgid "
|
| 191 |
-
msgstr "
|
| 192 |
|
| 193 |
-
#:
|
| 194 |
-
msgid "
|
| 195 |
-
msgstr "
|
| 196 |
|
| 197 |
-
#:
|
| 198 |
-
msgid "
|
| 199 |
-
msgstr "
|
| 200 |
|
| 201 |
-
#:
|
| 202 |
-
msgid "
|
| 203 |
-
msgstr "
|
| 204 |
|
| 205 |
-
#:
|
| 206 |
msgid "Bulk Actions"
|
| 207 |
-
msgstr "
|
| 208 |
|
| 209 |
-
#:
|
| 210 |
msgid "Apply"
|
| 211 |
msgstr "Toepassen"
|
| 212 |
|
| 213 |
-
#:
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
msgid "Group"
|
| 217 |
-
msgstr "Groep"
|
| 218 |
|
| 219 |
-
#:
|
| 220 |
-
msgid "
|
| 221 |
-
msgstr "
|
| 222 |
|
| 223 |
-
#:
|
| 224 |
-
msgid "
|
| 225 |
-
msgstr "
|
| 226 |
|
| 227 |
-
#:
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
#: view/admin/add.php:12
|
| 231 |
-
msgid "Source URL"
|
| 232 |
-
msgstr "Bron-URL"
|
| 233 |
|
| 234 |
-
#:
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
msgstr "Referrer"
|
| 238 |
-
|
| 239 |
-
#: view/admin/log.php:70
|
| 240 |
-
msgid "IP"
|
| 241 |
-
msgstr "IP-adres"
|
| 242 |
|
| 243 |
-
#:
|
| 244 |
-
msgid "
|
| 245 |
-
msgstr "
|
| 246 |
|
| 247 |
-
#:
|
| 248 |
-
msgid "
|
| 249 |
-
|
|
|
|
|
|
|
| 250 |
|
| 251 |
-
#:
|
| 252 |
-
msgid "
|
| 253 |
-
msgstr "
|
| 254 |
|
| 255 |
-
#:
|
| 256 |
-
msgid "
|
| 257 |
-
msgstr "
|
| 258 |
|
| 259 |
-
#:
|
| 260 |
-
msgid "
|
| 261 |
-
msgstr "
|
| 262 |
|
| 263 |
-
#:
|
| 264 |
-
msgid "
|
| 265 |
-
msgstr "
|
| 266 |
|
| 267 |
-
#:
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
msgstr "Type"
|
| 271 |
|
| 272 |
-
#:
|
| 273 |
-
msgid "
|
| 274 |
-
msgstr "
|
| 275 |
|
| 276 |
-
#:
|
| 277 |
-
msgid "
|
| 278 |
-
msgstr "
|
| 279 |
|
| 280 |
-
#:
|
| 281 |
-
msgid "
|
| 282 |
-
msgstr "
|
| 283 |
|
| 284 |
-
#:
|
| 285 |
-
msgid "
|
| 286 |
-
msgstr "
|
| 287 |
|
| 288 |
-
#:
|
| 289 |
-
msgid "
|
| 290 |
-
msgstr "
|
| 291 |
|
| 292 |
-
#:
|
| 293 |
-
msgid "
|
| 294 |
-
msgstr "
|
| 295 |
|
| 296 |
-
#:
|
| 297 |
-
|
| 298 |
-
|
| 299 |
-
msgstr "User agent"
|
| 300 |
|
| 301 |
-
#:
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
msgstr "uitgeschakeld"
|
| 305 |
|
| 306 |
-
#:
|
| 307 |
-
msgid "
|
| 308 |
-
msgstr "
|
| 309 |
|
| 310 |
-
#:
|
| 311 |
-
msgid "
|
| 312 |
-
msgstr "
|
| 313 |
|
| 314 |
-
#:
|
| 315 |
-
msgid "
|
| 316 |
-
msgstr "
|
| 317 |
|
| 318 |
-
#:
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
msgstr "Regex"
|
| 322 |
|
| 323 |
-
#:
|
| 324 |
-
|
| 325 |
-
|
| 326 |
-
msgid "Save"
|
| 327 |
-
msgstr "Opslaan"
|
| 328 |
|
| 329 |
-
#:
|
| 330 |
-
|
| 331 |
-
|
| 332 |
-
msgid "Cancel"
|
| 333 |
-
msgstr "Annuleren"
|
| 334 |
|
| 335 |
-
#:
|
| 336 |
-
msgid "
|
| 337 |
-
msgstr "
|
| 338 |
|
| 339 |
-
#:
|
| 340 |
-
msgid "
|
| 341 |
-
msgstr "
|
| 342 |
|
| 343 |
-
#:
|
| 344 |
-
msgid "
|
| 345 |
-
msgstr "
|
| 346 |
|
| 347 |
-
#:
|
| 348 |
-
msgid "
|
| 349 |
-
msgstr "
|
| 350 |
|
| 351 |
-
#:
|
| 352 |
-
msgid "
|
| 353 |
-
msgstr "
|
| 354 |
|
| 355 |
-
#:
|
| 356 |
-
|
| 357 |
-
|
| 358 |
-
msgstr "Doel-URL"
|
| 359 |
|
| 360 |
-
#:
|
| 361 |
-
msgid "
|
| 362 |
-
msgstr "
|
| 363 |
|
| 364 |
-
#:
|
| 365 |
-
msgid "
|
| 366 |
-
msgstr "
|
| 367 |
|
| 368 |
-
#:
|
| 369 |
-
msgid "
|
| 370 |
-
msgstr "
|
| 371 |
|
| 372 |
-
#:
|
| 373 |
-
msgid "
|
| 374 |
-
msgstr "
|
| 375 |
|
| 376 |
-
#:
|
| 377 |
-
msgid "
|
| 378 |
-
msgstr "
|
| 379 |
|
| 380 |
-
#:
|
| 381 |
-
msgid "
|
| 382 |
-
msgstr "
|
| 383 |
|
| 384 |
-
#:
|
| 385 |
-
msgid "
|
| 386 |
-
msgstr "
|
| 387 |
|
| 388 |
-
#:
|
| 389 |
-
msgid "
|
| 390 |
-
msgstr "
|
| 391 |
|
| 392 |
-
#:
|
| 393 |
-
msgid "
|
| 394 |
-
msgstr "
|
| 395 |
|
| 396 |
-
#:
|
| 397 |
-
msgid "
|
| 398 |
-
msgstr "
|
| 399 |
|
| 400 |
-
#:
|
| 401 |
-
msgid "
|
| 402 |
-
msgstr "
|
| 403 |
|
| 404 |
-
#:
|
| 405 |
-
msgid "
|
| 406 |
-
msgstr "
|
| 407 |
|
| 408 |
-
#: view/
|
| 409 |
-
msgid "
|
| 410 |
-
msgstr "
|
| 411 |
|
| 412 |
-
|
| 413 |
-
msgid "
|
| 414 |
-
msgstr "
|
| 415 |
|
| 416 |
-
|
| 417 |
-
msgid "
|
| 418 |
-
msgstr "
|
| 419 |
|
| 420 |
-
|
| 421 |
-
msgid "
|
| 422 |
-
msgstr "
|
| 423 |
|
| 424 |
-
|
| 425 |
-
msgid "
|
| 426 |
-
msgstr "
|
| 427 |
|
| 428 |
-
#:
|
| 429 |
-
msgid "
|
| 430 |
-
msgstr "Als je
|
| 431 |
|
| 432 |
-
#: view/
|
| 433 |
-
msgid "
|
| 434 |
-
msgstr "
|
| 435 |
|
| 436 |
-
#: view/
|
| 437 |
-
msgid "
|
| 438 |
-
msgstr "
|
| 439 |
|
| 440 |
-
#: view/
|
| 441 |
-
msgid "
|
| 442 |
-
msgstr "
|
| 443 |
|
| 444 |
-
#: view/
|
| 445 |
-
msgid "
|
| 446 |
-
msgstr "
|
| 447 |
|
| 448 |
-
#: view/
|
| 449 |
-
msgid "
|
| 450 |
-
msgstr "
|
| 451 |
|
| 452 |
-
#:
|
| 453 |
-
msgid "
|
| 454 |
-
msgstr "
|
| 455 |
|
| 456 |
-
#:
|
| 457 |
-
msgid "
|
| 458 |
-
msgstr "
|
| 459 |
|
| 460 |
-
#:
|
| 461 |
-
msgid "
|
| 462 |
-
msgstr "
|
| 463 |
|
| 464 |
-
#:
|
| 465 |
-
msgid "
|
| 466 |
-
msgstr "
|
| 467 |
|
| 468 |
-
#:
|
| 469 |
-
msgid "
|
| 470 |
-
msgstr "
|
| 471 |
|
| 472 |
-
#:
|
| 473 |
-
msgid "
|
| 474 |
-
msgstr "
|
| 475 |
|
| 476 |
-
#:
|
| 477 |
-
msgid "
|
| 478 |
-
msgstr "
|
| 479 |
|
| 480 |
-
#:
|
| 481 |
-
msgid "
|
| 482 |
-
msgstr "
|
| 483 |
|
| 484 |
-
#:
|
| 485 |
msgid "RSS Token"
|
| 486 |
msgstr "RSS-token"
|
| 487 |
|
| 488 |
-
#:
|
| 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 & Page URLs"
|
| 502 |
-
msgstr "Berichten- & 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 |
-
#:
|
| 510 |
-
msgid "Monitor
|
| 511 |
-
msgstr "
|
| 512 |
|
| 513 |
-
#:
|
| 514 |
-
msgid "
|
| 515 |
-
msgstr "
|
| 516 |
|
| 517 |
-
#:
|
| 518 |
-
msgid "
|
| 519 |
-
msgstr "
|
| 520 |
|
| 521 |
-
#:
|
| 522 |
-
msgid "
|
| 523 |
-
msgstr "
|
| 524 |
|
| 525 |
-
#:
|
| 526 |
-
msgid "
|
| 527 |
-
msgstr "
|
| 528 |
|
| 529 |
-
#:
|
| 530 |
-
msgid "
|
| 531 |
-
msgstr "
|
| 532 |
|
| 533 |
-
#: view/
|
| 534 |
-
msgid "
|
| 535 |
-
msgstr "
|
| 536 |
|
| 537 |
-
#:
|
| 538 |
-
msgid "
|
| 539 |
-
msgstr "
|
| 540 |
|
| 541 |
-
#:
|
| 542 |
-
msgid "
|
| 543 |
-
msgstr "
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
msgid "
|
| 547 |
-
msgstr "
|
| 548 |
|
| 549 |
-
#:
|
| 550 |
-
msgid "
|
| 551 |
-
msgstr "
|
| 552 |
|
| 553 |
-
#:
|
| 554 |
-
msgid "
|
| 555 |
-
msgstr "
|
| 556 |
|
| 557 |
-
#: view/
|
| 558 |
-
msgid "
|
| 559 |
-
msgstr "
|
| 560 |
|
| 561 |
-
#:
|
| 562 |
-
msgid "
|
| 563 |
-
msgstr "
|
| 564 |
|
| 565 |
-
#:
|
| 566 |
-
msgid "
|
| 567 |
-
msgstr "
|
| 568 |
|
| 569 |
-
#:
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
msgstr "<strong>Uitgeschakeld: je moet <a href=\"options-permalink.php\">permalinks</a> aanzetten voordat je dit kunt gebruiken.</strong>"
|
| 573 |
|
| 574 |
-
#:
|
| 575 |
-
msgid "
|
| 576 |
-
msgstr "
|
| 577 |
|
| 578 |
-
#:
|
| 579 |
-
msgid "
|
| 580 |
-
msgstr "
|
| 581 |
|
| 582 |
-
#:
|
| 583 |
-
msgid "
|
| 584 |
-
msgstr "
|
| 585 |
|
| 586 |
-
#:
|
| 587 |
-
msgid "
|
| 588 |
-
msgstr "
|
| 589 |
|
| 590 |
-
#:
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
msgstr "Laten zoals het is"
|
| 594 |
|
| 595 |
-
#:
|
| 596 |
-
msgid "
|
| 597 |
-
msgstr "
|
| 598 |
|
| 599 |
-
#:
|
| 600 |
-
msgid "
|
| 601 |
-
msgstr "
|
| 602 |
|
| 603 |
-
#:
|
| 604 |
-
msgid "
|
| 605 |
-
msgstr "
|
| 606 |
|
| 607 |
-
#:
|
| 608 |
-
msgid "
|
| 609 |
-
msgstr "
|
| 610 |
|
| 611 |
-
#:
|
| 612 |
-
msgid "
|
| 613 |
-
msgstr "
|
| 614 |
|
| 615 |
-
#:
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
msgstr "Standaard van de server"
|
| 619 |
|
| 620 |
-
#:
|
| 621 |
-
msgid "
|
| 622 |
-
msgstr "
|
| 623 |
|
| 624 |
-
#:
|
| 625 |
-
msgid "
|
| 626 |
-
msgstr "
|
| 627 |
|
| 628 |
-
#:
|
| 629 |
-
msgid "
|
| 630 |
-
msgstr "
|
| 631 |
|
| 632 |
-
#:
|
| 633 |
-
|
| 634 |
-
|
|
|
|
| 635 |
|
| 636 |
-
#:
|
| 637 |
-
msgid "
|
| 638 |
-
msgstr "
|
| 639 |
|
| 640 |
-
#:
|
| 641 |
-
msgid "
|
| 642 |
-
msgstr "
|
| 643 |
|
| 644 |
-
#:
|
| 645 |
-
|
| 646 |
-
|
|
|
|
| 647 |
|
| 648 |
-
#:
|
| 649 |
-
msgid "
|
| 650 |
-
msgstr "
|
| 651 |
|
| 652 |
-
#:
|
| 653 |
-
msgid "
|
| 654 |
-
|
|
|
|
|
|
|
| 655 |
|
| 656 |
-
#:
|
| 657 |
-
msgid "
|
| 658 |
-
msgstr "
|
| 659 |
|
| 660 |
-
|
| 661 |
-
msgid "
|
| 662 |
-
msgstr "
|
| 663 |
|
| 664 |
-
#:
|
| 665 |
-
msgid "
|
| 666 |
-
msgstr "
|
| 667 |
|
| 668 |
-
#:
|
| 669 |
-
msgid "
|
| 670 |
-
msgstr "
|
| 671 |
|
| 672 |
-
#:
|
| 673 |
-
msgid "
|
| 674 |
-
msgstr "
|
| 675 |
|
| 676 |
-
#:
|
| 677 |
-
msgid "
|
| 678 |
-
msgstr "
|
| 679 |
|
| 680 |
-
#:
|
| 681 |
-
msgid "
|
| 682 |
-
msgstr "
|
| 683 |
|
| 684 |
-
#:
|
| 685 |
-
msgid "
|
| 686 |
-
msgstr "
|
| 687 |
|
| 688 |
-
#:
|
| 689 |
-
msgid "
|
| 690 |
-
msgstr "
|
| 691 |
|
| 692 |
-
#:
|
| 693 |
-
msgid "
|
| 694 |
-
msgstr "
|
| 695 |
|
| 696 |
-
#:
|
| 697 |
-
msgid "
|
| 698 |
-
msgstr "
|
| 699 |
|
| 700 |
-
#:
|
| 701 |
-
msgid "
|
| 702 |
-
msgstr "
|
| 703 |
|
| 704 |
-
#: models/redirect.php:
|
| 705 |
-
msgid "
|
| 706 |
-
msgstr "
|
| 707 |
|
| 708 |
-
#: models/redirect.php:
|
| 709 |
msgid "Error (404)"
|
| 710 |
msgstr "Fout (404)"
|
| 711 |
|
| 712 |
-
#: models/redirect.php:
|
| 713 |
-
msgid "
|
| 714 |
-
msgstr "
|
| 715 |
|
| 716 |
-
#: models/
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
msgstr "WordPress"
|
| 720 |
|
| 721 |
-
#: models/
|
| 722 |
-
msgid "
|
| 723 |
-
msgstr "
|
| 724 |
|
| 725 |
-
#: models/
|
| 726 |
-
msgid "
|
| 727 |
-
msgstr "
|
| 728 |
|
| 729 |
-
#: models/
|
| 730 |
-
msgid "
|
| 731 |
-
msgstr "
|
| 732 |
|
| 733 |
-
#: models/
|
| 734 |
-
msgid "
|
| 735 |
-
msgstr "
|
| 736 |
|
| 737 |
-
#: models/
|
| 738 |
-
msgid "
|
| 739 |
-
msgstr "
|
| 740 |
|
| 741 |
-
#: models/
|
| 742 |
-
msgid "
|
| 743 |
-
msgstr "
|
| 744 |
|
| 745 |
-
#:
|
| 746 |
-
msgid "
|
| 747 |
-
msgstr "
|
| 748 |
|
| 749 |
-
#:
|
| 750 |
-
msgid "
|
| 751 |
-
msgstr "
|
| 752 |
|
| 753 |
-
#:
|
| 754 |
-
msgid "
|
| 755 |
-
msgstr "
|
| 756 |
|
| 757 |
-
#:
|
| 758 |
-
|
| 759 |
-
|
|
|
|
| 760 |
|
| 761 |
-
#:
|
| 762 |
-
msgid "
|
| 763 |
-
msgstr "
|
| 764 |
|
| 765 |
-
#:
|
| 766 |
-
msgid "
|
| 767 |
-
msgstr "
|
| 768 |
|
| 769 |
-
#:
|
| 770 |
-
msgid "
|
| 771 |
-
msgstr "
|
| 772 |
|
| 773 |
-
#:
|
| 774 |
-
msgid "
|
| 775 |
-
msgstr "
|
| 776 |
|
| 777 |
-
#: redirection.php:
|
| 778 |
-
|
| 779 |
-
|
|
|
|
| 780 |
|
| 781 |
-
#: redirection.php:
|
| 782 |
-
msgid "
|
| 783 |
-
msgstr "
|
| 784 |
|
| 785 |
-
|
| 786 |
-
|
| 787 |
-
|
| 788 |
-
|
| 789 |
-
msgstr "Redirection"
|
| 790 |
|
| 791 |
-
#: redirection.php:
|
| 792 |
-
msgid "
|
| 793 |
-
msgstr "
|
| 794 |
|
| 795 |
-
#:
|
| 796 |
-
msgid "
|
| 797 |
-
msgstr "
|
| 798 |
|
| 799 |
-
#:
|
| 800 |
-
msgid "
|
| 801 |
-
msgstr "
|
| 802 |
|
| 803 |
-
#: redirection.php:
|
| 804 |
-
|
| 805 |
-
|
|
|
|
| 806 |
|
| 807 |
-
#: redirection.php:
|
| 808 |
-
|
| 809 |
-
|
| 810 |
-
msgstr
|
| 811 |
-
msgstr[1] "Er zijn %d redirects geïmporteerd."
|
| 812 |
|
| 813 |
-
#: redirection.php:
|
| 814 |
-
|
| 815 |
-
|
|
|
|
|
|
|
|
|
|
| 816 |
|
| 817 |
-
#: redirection.php:
|
| 818 |
-
msgid "
|
| 819 |
-
msgstr "
|
| 820 |
|
| 821 |
-
#:
|
| 822 |
-
msgid "
|
| 823 |
-
msgstr "
|
| 824 |
|
| 825 |
-
#:
|
| 826 |
-
msgid "
|
| 827 |
-
msgstr "
|
| 828 |
|
| 829 |
-
#:
|
| 830 |
-
msgid "
|
| 831 |
-
msgstr "
|
| 832 |
|
| 833 |
-
#:
|
| 834 |
-
msgid "
|
| 835 |
-
msgstr "
|
| 836 |
|
| 837 |
-
#:
|
| 838 |
-
|
| 839 |
-
|
| 840 |
-
msgid "HTTP Code"
|
| 841 |
-
msgstr "HTTP-code"
|
| 842 |
|
| 843 |
-
#:
|
| 844 |
-
msgid "
|
| 845 |
-
msgstr "
|
| 846 |
|
| 847 |
-
#: matches/
|
| 848 |
-
msgid "The
|
| 849 |
-
msgstr "De
|
| 850 |
|
| 851 |
-
#: matches/
|
| 852 |
-
|
| 853 |
-
|
| 854 |
-
msgstr "Ingelogd"
|
| 855 |
|
| 856 |
-
#: matches/
|
| 857 |
-
|
| 858 |
-
|
| 859 |
-
msgstr "Uitgelogd"
|
| 860 |
|
| 861 |
-
#: matches/
|
| 862 |
-
msgid "
|
| 863 |
-
msgstr "
|
| 864 |
|
| 865 |
-
#: matches/
|
| 866 |
-
msgid "
|
| 867 |
-
msgstr "
|
| 868 |
|
| 869 |
-
#: matches/
|
| 870 |
-
msgid "
|
| 871 |
-
msgstr "
|
| 872 |
|
| 873 |
-
#: matches/
|
| 874 |
-
msgid "
|
| 875 |
-
msgstr "
|
| 876 |
|
| 877 |
-
#: matches/
|
| 878 |
msgid "Opera"
|
| 879 |
msgstr "Opera"
|
| 880 |
|
| 881 |
-
#: matches/
|
| 882 |
-
msgid "
|
| 883 |
-
msgstr "
|
| 884 |
|
| 885 |
-
#: matches/
|
| 886 |
-
msgid "
|
| 887 |
-
msgstr "
|
| 888 |
|
| 889 |
-
#: matches/
|
| 890 |
-
msgid "
|
| 891 |
-
msgstr "
|
| 892 |
|
| 893 |
-
#: matches/
|
| 894 |
-
msgid "
|
| 895 |
-
msgstr "
|
| 896 |
|
| 897 |
-
#: matches/
|
| 898 |
-
|
| 899 |
-
|
| 900 |
-
#: matches/referrer.php:65
|
| 901 |
-
msgid "Matched"
|
| 902 |
-
msgstr "Overeenkomend"
|
| 903 |
|
| 904 |
-
#: matches/
|
| 905 |
-
|
| 906 |
-
|
| 907 |
-
|
|
|
|
|
|
|
| 908 |
msgid "Not matched"
|
| 909 |
msgstr "Niet overeenkomend"
|
| 910 |
|
| 911 |
-
#: matches/referrer.php:
|
| 912 |
-
|
| 913 |
-
|
|
|
|
| 914 |
|
| 915 |
-
#: matches/referrer.php:
|
| 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 |
-
|
| 920 |
-
|
| 921 |
-
|
|
|
|
| 922 |
|
| 923 |
-
|
| 924 |
-
msgid "
|
| 925 |
-
msgstr "
|
| 926 |
|
| 927 |
-
|
| 928 |
-
|
| 929 |
-
|
|
|
|
| 930 |
|
| 931 |
-
|
| 932 |
-
msgid "
|
| 933 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
#
|
| 2 |
-
# This file is distributed under the same license as the Redirection package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"
|
| 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 |
-
"
|
| 12 |
-
"
|
| 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 |
-
"
|
| 18 |
|
| 19 |
-
#:
|
| 20 |
-
msgid "
|
| 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 |
-
#:
|
| 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 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 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 |
-
#:
|
| 80 |
-
msgid ""
|
| 81 |
-
|
| 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 |
-
#:
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
msgstr "Nu corespunde"
|
| 101 |
|
| 102 |
-
#:
|
| 103 |
-
msgid "
|
| 104 |
-
msgstr "
|
| 105 |
|
| 106 |
-
#:
|
| 107 |
-
msgid "
|
| 108 |
-
msgstr "
|
| 109 |
|
| 110 |
-
#:
|
| 111 |
-
msgid "
|
| 112 |
-
msgstr "
|
| 113 |
|
| 114 |
-
#:
|
| 115 |
-
msgid "
|
| 116 |
-
msgstr "
|
| 117 |
|
| 118 |
-
#:
|
| 119 |
-
msgid "
|
| 120 |
-
msgstr "
|
| 121 |
|
| 122 |
-
#:
|
| 123 |
-
msgid "
|
| 124 |
-
msgstr "
|
| 125 |
|
| 126 |
-
#:
|
| 127 |
-
msgid "
|
| 128 |
-
msgstr "
|
| 129 |
|
| 130 |
-
#:
|
| 131 |
-
msgid "
|
| 132 |
-
msgstr "
|
| 133 |
|
| 134 |
-
#:
|
| 135 |
-
msgid "
|
| 136 |
-
msgstr "
|
| 137 |
|
| 138 |
-
#:
|
| 139 |
-
msgid "
|
| 140 |
-
msgstr "
|
| 141 |
|
| 142 |
-
#:
|
| 143 |
-
msgid "
|
| 144 |
-
msgstr "
|
| 145 |
|
| 146 |
-
#:
|
| 147 |
-
msgid "
|
| 148 |
-
msgstr "
|
| 149 |
|
| 150 |
-
#:
|
| 151 |
-
msgid "
|
| 152 |
-
msgstr "
|
| 153 |
|
| 154 |
-
#:
|
| 155 |
-
msgid ""
|
| 156 |
-
|
| 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 |
-
#:
|
| 186 |
-
msgid "
|
| 187 |
-
msgstr "
|
| 188 |
|
| 189 |
-
#:
|
| 190 |
-
msgid "
|
| 191 |
-
msgstr "
|
| 192 |
|
| 193 |
-
#:
|
| 194 |
-
msgid "
|
| 195 |
-
msgstr "
|
| 196 |
|
| 197 |
-
#:
|
| 198 |
-
msgid "
|
| 199 |
-
|
|
|
|
|
|
|
|
|
|
| 200 |
|
| 201 |
-
#:
|
| 202 |
-
msgid "
|
| 203 |
-
msgstr "
|
| 204 |
|
| 205 |
-
#:
|
| 206 |
-
msgid "
|
| 207 |
-
msgstr "
|
| 208 |
|
| 209 |
-
#:
|
| 210 |
-
msgid "
|
| 211 |
-
msgstr "
|
| 212 |
|
| 213 |
-
#:
|
| 214 |
-
msgid "
|
| 215 |
-
msgstr "
|
| 216 |
|
| 217 |
-
#:
|
| 218 |
-
msgid "
|
| 219 |
-
msgstr "
|
| 220 |
|
| 221 |
-
#:
|
| 222 |
-
msgid "
|
| 223 |
-
msgstr "
|
| 224 |
|
| 225 |
-
#:
|
| 226 |
-
msgid "
|
| 227 |
-
msgstr "
|
| 228 |
|
| 229 |
-
#:
|
| 230 |
-
msgid "
|
| 231 |
-
msgstr "
|
| 232 |
|
| 233 |
-
#:
|
| 234 |
-
msgid "
|
| 235 |
-
msgstr "
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
msgid "
|
| 239 |
-
msgstr "
|
| 240 |
|
| 241 |
-
#:
|
| 242 |
-
msgid "
|
| 243 |
-
msgstr "
|
| 244 |
|
| 245 |
-
#:
|
| 246 |
-
msgid "
|
| 247 |
-
msgstr "
|
| 248 |
|
| 249 |
-
#:
|
| 250 |
-
msgid "
|
| 251 |
-
msgstr "
|
| 252 |
|
| 253 |
-
#:
|
| 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 |
-
#:
|
| 262 |
-
msgid "
|
| 263 |
-
msgstr "
|
| 264 |
|
| 265 |
-
#:
|
| 266 |
-
msgid "
|
| 267 |
-
msgstr "
|
| 268 |
|
| 269 |
-
#:
|
| 270 |
-
msgid "
|
| 271 |
-
msgstr "
|
| 272 |
|
| 273 |
-
#:
|
| 274 |
-
msgid "
|
| 275 |
-
msgstr "
|
| 276 |
|
| 277 |
-
#:
|
| 278 |
-
msgid "
|
| 279 |
-
msgstr "
|
| 280 |
|
| 281 |
-
#:
|
| 282 |
-
msgid "
|
| 283 |
-
msgstr "
|
| 284 |
|
| 285 |
-
#:
|
| 286 |
-
msgid "
|
| 287 |
-
msgstr "
|
| 288 |
|
| 289 |
-
#:
|
| 290 |
-
msgid "
|
| 291 |
-
msgstr "
|
| 292 |
|
| 293 |
-
#:
|
| 294 |
-
msgid "
|
| 295 |
-
msgstr "
|
| 296 |
|
| 297 |
-
#:
|
| 298 |
-
msgid "
|
| 299 |
-
msgstr "
|
| 300 |
|
| 301 |
-
#:
|
| 302 |
-
msgid "
|
| 303 |
-
msgstr "
|
| 304 |
|
| 305 |
-
#:
|
| 306 |
-
msgid "
|
| 307 |
-
msgstr "
|
| 308 |
|
| 309 |
-
#:
|
| 310 |
-
msgid "
|
| 311 |
-
msgstr "
|
| 312 |
|
| 313 |
-
#:
|
| 314 |
-
msgid "
|
| 315 |
-
msgstr "
|
| 316 |
|
| 317 |
-
#:
|
| 318 |
-
msgid "
|
| 319 |
-
msgstr "
|
| 320 |
|
| 321 |
-
#:
|
| 322 |
-
msgid "
|
| 323 |
-
msgstr "
|
| 324 |
|
| 325 |
-
#:
|
| 326 |
-
msgid "
|
| 327 |
-
msgstr "
|
| 328 |
|
| 329 |
-
#:
|
| 330 |
-
msgid "
|
| 331 |
-
msgstr "
|
| 332 |
|
| 333 |
-
#:
|
| 334 |
-
msgid "
|
| 335 |
-
msgstr "
|
| 336 |
|
| 337 |
-
#:
|
| 338 |
-
msgid "
|
| 339 |
-
msgstr "
|
| 340 |
|
| 341 |
-
#:
|
| 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 |
-
#:
|
| 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 |
-
#:
|
| 358 |
-
msgid "
|
| 359 |
-
msgstr "
|
| 360 |
|
| 361 |
-
#:
|
| 362 |
-
msgid "
|
| 363 |
-
msgstr "
|
| 364 |
|
| 365 |
-
|
| 366 |
-
msgid "
|
| 367 |
-
msgstr "
|
| 368 |
|
| 369 |
-
|
| 370 |
-
msgid "
|
| 371 |
-
msgstr "
|
| 372 |
|
| 373 |
-
|
| 374 |
-
msgid "
|
| 375 |
-
msgstr "
|
| 376 |
|
| 377 |
-
|
| 378 |
-
msgid "
|
| 379 |
-
msgstr "
|
| 380 |
|
| 381 |
-
#:
|
| 382 |
-
msgid "
|
| 383 |
-
msgstr "
|
| 384 |
|
| 385 |
-
#:
|
| 386 |
-
msgid "
|
| 387 |
-
msgstr "
|
| 388 |
|
| 389 |
-
#:
|
| 390 |
-
msgid "
|
| 391 |
-
msgstr "
|
| 392 |
|
| 393 |
-
#:
|
| 394 |
-
msgid "
|
| 395 |
-
msgstr "
|
| 396 |
|
| 397 |
-
#:
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
msgstr "Sunteți sigur?"
|
| 401 |
|
| 402 |
-
#:
|
| 403 |
-
|
| 404 |
-
|
| 405 |
-
msgstr "Niciun obiect nu a fost selectat"
|
| 406 |
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
msgstr "Redirection"
|
| 411 |
|
| 412 |
-
#: redirection.php:
|
| 413 |
-
msgid "
|
| 414 |
-
msgstr "
|
| 415 |
|
| 416 |
-
#: redirection.php:
|
| 417 |
-
msgid "
|
| 418 |
-
msgstr "
|
| 419 |
|
| 420 |
-
#: redirection.php:
|
| 421 |
-
msgid "
|
| 422 |
-
msgstr "
|
| 423 |
|
| 424 |
-
#: redirection.php:
|
| 425 |
-
msgid "
|
| 426 |
-
msgstr "
|
| 427 |
|
| 428 |
-
#: redirection.php:
|
| 429 |
-
msgid "
|
| 430 |
-
|
| 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:
|
| 436 |
-
msgid "
|
| 437 |
-
msgstr "
|
| 438 |
|
| 439 |
-
#: redirection.php:
|
| 440 |
-
msgid "
|
| 441 |
-
msgstr "
|
| 442 |
|
| 443 |
-
#: redirection.php:
|
| 444 |
-
msgid "
|
| 445 |
-
msgstr "
|
| 446 |
|
| 447 |
-
#: redirection.php:
|
| 448 |
-
msgid "
|
| 449 |
-
msgstr "
|
| 450 |
|
| 451 |
-
#: redirection.php:
|
| 452 |
-
msgid "
|
| 453 |
-
msgstr "
|
| 454 |
|
| 455 |
-
#:
|
| 456 |
-
msgid "
|
| 457 |
-
msgstr "
|
| 458 |
|
| 459 |
-
#:
|
| 460 |
-
msgid "
|
| 461 |
-
msgstr "
|
| 462 |
|
| 463 |
-
#:
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
msgstr "Origine URL"
|
| 467 |
|
| 468 |
-
#:
|
| 469 |
-
msgid "
|
| 470 |
-
msgstr "
|
| 471 |
|
| 472 |
-
#:
|
| 473 |
-
msgid "
|
| 474 |
-
msgstr "
|
| 475 |
|
| 476 |
-
#: view/
|
| 477 |
-
msgid "
|
| 478 |
-
msgstr "
|
| 479 |
|
| 480 |
-
#:
|
| 481 |
-
msgid "
|
| 482 |
-
msgstr "
|
| 483 |
|
| 484 |
-
#:
|
| 485 |
-
msgid "
|
| 486 |
-
msgstr "
|
| 487 |
|
| 488 |
-
#:
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
msgid "Name"
|
| 492 |
-
msgstr "Nume"
|
| 493 |
|
| 494 |
-
#:
|
| 495 |
-
msgid "
|
| 496 |
-
msgstr "
|
| 497 |
|
| 498 |
-
#:
|
| 499 |
-
msgid "
|
| 500 |
-
msgstr "
|
| 501 |
|
| 502 |
-
#: view/
|
| 503 |
-
msgid "
|
| 504 |
-
msgstr "
|
| 505 |
|
| 506 |
-
#:
|
| 507 |
-
msgid "
|
| 508 |
-
msgstr ""
|
| 509 |
-
"Dezactivarea unui grup va dezactiva toate obiectele conținute de acesta"
|
| 510 |
|
| 511 |
-
#:
|
| 512 |
-
|
| 513 |
-
|
| 514 |
-
msgstr "Salvare"
|
| 515 |
|
| 516 |
-
#:
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
msgstr "Anulare"
|
| 520 |
|
| 521 |
-
#: view/
|
| 522 |
-
msgid "
|
| 523 |
-
msgstr "
|
| 524 |
|
| 525 |
-
#: view/
|
| 526 |
-
msgid "
|
| 527 |
-
msgstr "
|
| 528 |
|
| 529 |
-
#:
|
| 530 |
-
msgid "Groups
|
| 531 |
-
msgstr "
|
| 532 |
|
| 533 |
-
#:
|
| 534 |
-
msgid "
|
| 535 |
-
msgstr "
|
| 536 |
|
| 537 |
-
#:
|
| 538 |
-
#: view/admin/log.php:16 view/admin/log.php:23
|
| 539 |
msgid "Search"
|
| 540 |
-
msgstr "
|
| 541 |
|
| 542 |
-
#: view/
|
| 543 |
-
msgid "
|
| 544 |
-
msgstr "
|
| 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/
|
| 598 |
-
msgid "
|
| 599 |
-
msgstr "
|
| 600 |
|
| 601 |
-
#: view/
|
| 602 |
-
msgid "
|
| 603 |
-
msgstr "
|
| 604 |
|
| 605 |
-
#: view/
|
| 606 |
-
msgid "
|
| 607 |
-
msgstr "
|
| 608 |
|
| 609 |
-
#: view/
|
| 610 |
-
msgid "
|
| 611 |
-
msgstr "
|
| 612 |
|
| 613 |
-
#: view/
|
| 614 |
-
msgid "
|
| 615 |
-
msgstr "
|
| 616 |
|
| 617 |
-
#: view/
|
| 618 |
-
msgid "
|
| 619 |
-
msgstr "
|
| 620 |
|
| 621 |
-
#: view/
|
| 622 |
-
msgid "
|
| 623 |
-
msgstr "
|
| 624 |
|
| 625 |
-
#: view/
|
| 626 |
-
msgid "
|
| 627 |
-
msgstr "
|
| 628 |
|
| 629 |
-
#:
|
| 630 |
-
|
| 631 |
-
|
|
|
|
| 632 |
|
| 633 |
-
#:
|
| 634 |
-
msgid "
|
| 635 |
-
msgstr "
|
| 636 |
|
| 637 |
-
#:
|
| 638 |
-
msgid "
|
| 639 |
-
msgstr "
|
| 640 |
|
| 641 |
-
#:
|
| 642 |
-
|
| 643 |
-
|
|
|
|
| 644 |
|
| 645 |
-
#:
|
| 646 |
-
msgid "
|
| 647 |
-
msgstr "
|
| 648 |
|
| 649 |
-
#:
|
| 650 |
-
msgid "
|
| 651 |
-
|
|
|
|
|
|
|
|
|
|
| 652 |
|
| 653 |
-
#:
|
| 654 |
-
msgid "
|
| 655 |
-
msgstr "
|
| 656 |
|
| 657 |
-
|
| 658 |
-
msgid "
|
| 659 |
-
msgstr "
|
| 660 |
|
| 661 |
-
#:
|
| 662 |
-
msgid "
|
| 663 |
-
msgstr "
|
| 664 |
|
| 665 |
-
#:
|
| 666 |
-
msgid ""
|
| 667 |
-
"
|
| 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 |
-
#:
|
| 674 |
-
msgid "
|
| 675 |
-
msgstr "
|
| 676 |
|
| 677 |
-
#:
|
| 678 |
-
msgid "
|
| 679 |
-
msgstr "
|
| 680 |
|
| 681 |
-
#:
|
| 682 |
-
msgid "
|
| 683 |
-
msgstr "
|
| 684 |
|
| 685 |
-
#:
|
| 686 |
-
msgid "
|
| 687 |
-
msgstr "
|
| 688 |
|
| 689 |
-
#:
|
| 690 |
-
msgid "
|
| 691 |
-
msgstr "
|
| 692 |
|
| 693 |
-
#:
|
| 694 |
-
msgid "
|
| 695 |
-
msgstr "
|
| 696 |
|
| 697 |
-
#:
|
| 698 |
-
msgid "
|
| 699 |
-
msgstr "
|
| 700 |
|
| 701 |
-
#:
|
| 702 |
-
msgid "
|
| 703 |
-
msgstr "
|
| 704 |
|
| 705 |
-
#:
|
| 706 |
-
msgid "
|
| 707 |
-
msgstr "
|
| 708 |
|
| 709 |
-
#:
|
| 710 |
-
msgid "
|
| 711 |
-
msgstr "
|
| 712 |
|
| 713 |
-
#:
|
| 714 |
-
msgid "
|
| 715 |
-
msgstr "
|
| 716 |
|
| 717 |
-
#:
|
| 718 |
-
msgid "
|
| 719 |
-
msgstr "
|
| 720 |
|
| 721 |
-
#:
|
| 722 |
-
msgid "
|
| 723 |
-
msgstr "
|
| 724 |
|
| 725 |
-
#:
|
| 726 |
-
msgid "
|
| 727 |
-
msgstr "
|
| 728 |
|
| 729 |
-
#:
|
| 730 |
-
msgid "
|
| 731 |
-
msgstr "
|
| 732 |
|
| 733 |
-
#:
|
| 734 |
-
msgid "
|
| 735 |
-
msgstr "
|
| 736 |
|
| 737 |
-
#:
|
| 738 |
-
msgid "
|
| 739 |
-
msgstr "
|
| 740 |
|
| 741 |
-
#:
|
| 742 |
-
msgid "
|
| 743 |
-
msgstr "
|
| 744 |
|
| 745 |
-
#:
|
| 746 |
-
msgid "
|
| 747 |
-
msgstr "
|
| 748 |
|
| 749 |
-
#:
|
| 750 |
-
msgid ""
|
| 751 |
-
"
|
| 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 |
-
#:
|
| 771 |
-
msgid "
|
| 772 |
-
msgstr "
|
| 773 |
|
| 774 |
-
#: view/
|
| 775 |
-
|
| 776 |
-
"
|
| 777 |
-
"
|
| 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 |
-
#:
|
| 785 |
-
msgid "
|
| 786 |
-
msgstr "
|
| 787 |
|
| 788 |
-
#:
|
| 789 |
-
msgid "
|
| 790 |
-
msgstr "
|
| 791 |
|
| 792 |
-
#:
|
| 793 |
-
msgid "
|
| 794 |
-
msgstr "
|
| 795 |
|
| 796 |
-
#:
|
| 797 |
-
msgid "
|
| 798 |
-
msgstr "
|
| 799 |
|
| 800 |
-
#:
|
| 801 |
-
|
| 802 |
-
|
|
|
|
| 803 |
|
| 804 |
-
#: view/
|
| 805 |
-
msgid "
|
| 806 |
-
msgstr "
|
| 807 |
|
| 808 |
-
#:
|
| 809 |
-
|
| 810 |
-
|
| 811 |
-
|
| 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 |
-
#:
|
| 820 |
-
msgid "
|
| 821 |
-
msgstr "
|
| 822 |
|
| 823 |
-
#:
|
| 824 |
-
msgid "
|
| 825 |
-
msgstr "
|
| 826 |
|
| 827 |
-
#:
|
| 828 |
-
msgid "
|
| 829 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 830 |
|
| 831 |
-
#:
|
| 832 |
-
msgid ""
|
| 833 |
-
|
| 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 |
-
#:
|
| 840 |
-
msgid "
|
| 841 |
-
msgstr "
|
| 842 |
|
| 843 |
-
#:
|
| 844 |
-
msgid ""
|
| 845 |
-
|
| 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 |
-
#:
|
| 852 |
-
msgid "
|
| 853 |
-
msgstr "URL
|
| 854 |
|
| 855 |
-
#:
|
| 856 |
-
msgid "
|
| 857 |
-
msgstr "
|
| 858 |
|
| 859 |
-
#:
|
| 860 |
-
msgid "
|
| 861 |
-
msgstr "
|
| 862 |
|
| 863 |
-
#:
|
| 864 |
-
msgid "
|
| 865 |
-
msgstr "
|
| 866 |
|
| 867 |
-
#:
|
| 868 |
-
msgid "
|
| 869 |
-
msgstr "
|
| 870 |
|
| 871 |
-
#:
|
| 872 |
-
msgid "
|
| 873 |
-
msgstr "
|
| 874 |
|
| 875 |
-
#:
|
| 876 |
-
msgid ""
|
| 877 |
-
"
|
| 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 |
-
#:
|
| 884 |
-
msgid "
|
| 885 |
-
msgstr "
|
| 886 |
|
| 887 |
-
#:
|
| 888 |
-
msgid "
|
| 889 |
-
msgstr "
|
| 890 |
|
| 891 |
-
#:
|
| 892 |
-
msgid "
|
| 893 |
-
msgstr "
|
| 894 |
|
| 895 |
-
#:
|
| 896 |
-
msgid "
|
| 897 |
-
msgstr "
|
| 898 |
|
| 899 |
-
#:
|
| 900 |
-
msgid ""
|
| 901 |
-
|
| 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 |
-
#:
|
| 910 |
-
msgid "
|
| 911 |
-
msgstr "
|
| 912 |
|
| 913 |
-
#:
|
| 914 |
-
msgid "
|
| 915 |
-
msgstr "
|
| 916 |
|
| 917 |
-
#:
|
| 918 |
-
msgid "
|
| 919 |
-
msgstr "
|
| 920 |
|
| 921 |
-
#:
|
| 922 |
-
msgid "
|
| 923 |
-
msgstr "
|
| 924 |
|
| 925 |
-
#: view/
|
| 926 |
-
msgid ""
|
| 927 |
-
"
|
| 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 |
-
#:
|
| 938 |
-
msgid ""
|
| 939 |
-
"
|
| 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 |
-
#:
|
| 948 |
-
|
| 949 |
-
"
|
| 950 |
-
|
| 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 |
-
#:
|
| 958 |
-
|
| 959 |
-
|
|
|
|
| 960 |
|
| 961 |
-
#:
|
| 962 |
-
msgid "
|
| 963 |
-
msgstr "
|
| 964 |
|
| 965 |
-
#:
|
| 966 |
-
|
| 967 |
-
|
|
|
|
| 968 |
|
| 969 |
-
#: view/
|
| 970 |
-
msgid ""
|
| 971 |
-
"
|
| 972 |
-
msgstr "Dacă vorbiți mai multe limbi ați putea contribui cu o traducere:"
|
| 973 |
|
| 974 |
-
#:
|
| 975 |
-
|
| 976 |
-
|
| 977 |
-
|
| 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 |
-
#:
|
| 985 |
-
msgid ""
|
| 986 |
-
"
|
| 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 |
-
|
| 995 |
-
msgid "
|
| 996 |
-
msgstr "
|
| 997 |
|
| 998 |
-
|
| 999 |
-
msgid "
|
| 1000 |
-
msgstr "
|
| 1001 |
|
| 1002 |
-
|
| 1003 |
-
msgid "
|
| 1004 |
-
msgstr "
|
| 1005 |
|
| 1006 |
-
|
| 1007 |
-
msgid "
|
| 1008 |
-
msgstr "
|
| 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 |
-
#
|
| 2 |
-
#
|
| 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 |
-
"
|
| 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%
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
#:
|
| 20 |
-
msgid "
|
| 21 |
-
msgstr "
|
| 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 |
-
#:
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
msgid "Go"
|
| 100 |
-
msgstr "Вперед"
|
| 101 |
|
| 102 |
-
#:
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
msgstr "поменять местами"
|
| 106 |
|
| 107 |
-
#:
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
msgstr "сохранить порядок"
|
| 111 |
|
| 112 |
-
#:
|
| 113 |
-
msgid "
|
| 114 |
-
msgstr "
|
| 115 |
|
| 116 |
-
#:
|
| 117 |
-
msgid "
|
| 118 |
-
msgstr "
|
| 119 |
|
| 120 |
-
#:
|
| 121 |
-
msgid "
|
| 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 |
-
#:
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
msgstr "Группы"
|
| 146 |
|
| 147 |
-
#:
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
msgstr "Модули"
|
| 151 |
|
| 152 |
-
#:
|
| 153 |
-
msgid "
|
| 154 |
-
msgstr "
|
| 155 |
|
| 156 |
-
#:
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
msgstr "Настройки"
|
| 160 |
|
| 161 |
-
#:
|
| 162 |
-
msgid "
|
| 163 |
-
msgstr "
|
| 164 |
|
| 165 |
-
#:
|
| 166 |
-
msgid "
|
| 167 |
-
msgstr "
|
| 168 |
|
| 169 |
-
#:
|
| 170 |
-
msgid "
|
| 171 |
-
msgstr "
|
| 172 |
|
| 173 |
-
#:
|
| 174 |
-
msgid "
|
| 175 |
-
msgstr "
|
| 176 |
|
| 177 |
-
#:
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
msgid "Apache"
|
| 181 |
-
msgstr "Apache"
|
| 182 |
|
| 183 |
-
#:
|
| 184 |
-
msgid "
|
| 185 |
-
msgstr "
|
| 186 |
|
| 187 |
-
#:
|
| 188 |
-
msgid "
|
| 189 |
-
msgstr "
|
| 190 |
|
| 191 |
-
#:
|
| 192 |
-
msgid "
|
| 193 |
-
msgstr "
|
| 194 |
|
| 195 |
-
#:
|
| 196 |
-
msgid "
|
| 197 |
-
msgstr "
|
| 198 |
|
| 199 |
-
#:
|
| 200 |
-
msgid "
|
| 201 |
-
msgstr "
|
| 202 |
|
| 203 |
-
#:
|
| 204 |
-
msgid "
|
| 205 |
-
msgstr "
|
| 206 |
|
| 207 |
-
#:
|
| 208 |
-
msgid "
|
| 209 |
-
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
-
#:
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
msgid "Group"
|
| 215 |
-
msgstr "Группа"
|
| 216 |
|
| 217 |
-
#:
|
| 218 |
-
msgid "
|
| 219 |
-
msgstr "
|
| 220 |
|
| 221 |
-
#:
|
| 222 |
-
msgid "
|
| 223 |
-
msgstr "
|
| 224 |
|
| 225 |
-
#:
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
#: view/admin/add.php:12
|
| 229 |
-
msgid "Source URL"
|
| 230 |
-
msgstr "URL источника"
|
| 231 |
|
| 232 |
-
#:
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
msgstr "Реферер"
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
msgid "
|
| 239 |
-
msgstr "
|
| 240 |
|
| 241 |
-
#:
|
| 242 |
-
msgid "
|
| 243 |
-
msgstr "
|
| 244 |
|
| 245 |
-
#:
|
| 246 |
-
msgid "
|
| 247 |
-
msgstr "
|
| 248 |
|
| 249 |
-
#:
|
| 250 |
-
msgid "
|
| 251 |
-
msgstr "
|
| 252 |
|
| 253 |
-
#:
|
| 254 |
-
msgid "
|
| 255 |
-
msgstr "
|
| 256 |
|
| 257 |
-
#:
|
| 258 |
-
msgid "
|
| 259 |
-
msgstr "
|
| 260 |
|
| 261 |
-
#:
|
| 262 |
-
msgid "
|
| 263 |
-
msgstr "
|
| 264 |
|
| 265 |
-
#:
|
| 266 |
-
|
| 267 |
-
|
| 268 |
-
msgstr "Тип"
|
| 269 |
|
| 270 |
-
#:
|
| 271 |
-
msgid "
|
| 272 |
-
msgstr "
|
| 273 |
|
| 274 |
-
#:
|
| 275 |
-
msgid "
|
| 276 |
-
msgstr "
|
| 277 |
|
| 278 |
-
#:
|
| 279 |
-
msgid "
|
| 280 |
-
msgstr "
|
| 281 |
|
| 282 |
-
#:
|
| 283 |
-
msgid "
|
| 284 |
-
msgstr "
|
| 285 |
|
| 286 |
-
#:
|
| 287 |
-
msgid "
|
| 288 |
-
msgstr "
|
| 289 |
|
| 290 |
-
#:
|
| 291 |
-
msgid "
|
| 292 |
-
msgstr "
|
| 293 |
|
| 294 |
-
#:
|
| 295 |
-
|
| 296 |
-
|
| 297 |
-
msgstr "User-Agent"
|
| 298 |
|
| 299 |
-
#:
|
| 300 |
-
|
| 301 |
-
|
| 302 |
-
msgstr "отключено"
|
| 303 |
|
| 304 |
-
#:
|
| 305 |
-
msgid "
|
| 306 |
-
msgstr "
|
| 307 |
|
| 308 |
-
#:
|
| 309 |
-
msgid "
|
| 310 |
-
msgstr "
|
| 311 |
|
| 312 |
-
#:
|
| 313 |
-
msgid "
|
| 314 |
-
msgstr "
|
| 315 |
|
| 316 |
-
#:
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
msgstr "Регулярное выражение"
|
| 320 |
|
| 321 |
-
#:
|
| 322 |
-
|
| 323 |
-
|
| 324 |
-
msgid "Save"
|
| 325 |
-
msgstr "Сохранить"
|
| 326 |
|
| 327 |
-
#:
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
msgid "Cancel"
|
| 331 |
-
msgstr "Отмена"
|
| 332 |
|
| 333 |
-
#:
|
| 334 |
-
msgid "
|
| 335 |
-
msgstr "
|
| 336 |
|
| 337 |
-
#:
|
| 338 |
-
msgid "
|
| 339 |
-
msgstr "
|
| 340 |
|
| 341 |
-
#:
|
| 342 |
-
msgid "
|
| 343 |
-
msgstr "
|
| 344 |
|
| 345 |
-
#:
|
| 346 |
-
msgid "
|
| 347 |
-
msgstr "
|
| 348 |
|
| 349 |
-
#:
|
| 350 |
-
msgid "
|
| 351 |
-
msgstr "
|
| 352 |
|
| 353 |
-
#:
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
msgstr "URL назначения"
|
| 357 |
|
| 358 |
-
#:
|
| 359 |
-
msgid "
|
| 360 |
-
msgstr "
|
| 361 |
|
| 362 |
-
#:
|
| 363 |
-
msgid "
|
| 364 |
-
msgstr "
|
| 365 |
|
| 366 |
-
#:
|
| 367 |
-
msgid "
|
| 368 |
-
msgstr "
|
| 369 |
|
| 370 |
-
#:
|
| 371 |
-
msgid "
|
| 372 |
-
msgstr "
|
| 373 |
|
| 374 |
-
#: view/
|
| 375 |
-
msgid "
|
| 376 |
-
msgstr "
|
| 377 |
|
| 378 |
-
|
| 379 |
-
msgid "
|
| 380 |
-
msgstr "
|
| 381 |
|
| 382 |
-
|
| 383 |
-
msgid "
|
| 384 |
-
msgstr "
|
| 385 |
|
| 386 |
-
|
| 387 |
-
msgid "
|
| 388 |
-
msgstr "
|
| 389 |
|
| 390 |
-
|
| 391 |
-
msgid "
|
| 392 |
-
msgstr "
|
| 393 |
|
| 394 |
-
#:
|
| 395 |
-
msgid "
|
| 396 |
-
msgstr "
|
| 397 |
|
| 398 |
-
#: view/
|
| 399 |
msgid "Redirection Support"
|
| 400 |
msgstr "Поддержка"
|
| 401 |
|
| 402 |
-
#: view/
|
| 403 |
-
msgid "
|
| 404 |
-
msgstr "
|
| 405 |
|
| 406 |
-
#: view/
|
| 407 |
-
msgid "
|
| 408 |
-
msgstr "
|
| 409 |
|
| 410 |
-
#: view/
|
| 411 |
-
msgid "
|
| 412 |
-
msgstr "
|
| 413 |
|
| 414 |
-
#: view/
|
| 415 |
-
msgid "
|
| 416 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 417 |
|
| 418 |
-
#:
|
| 419 |
-
msgid "
|
| 420 |
-
msgstr "
|
| 421 |
|
| 422 |
-
#:
|
| 423 |
-
msgid "
|
| 424 |
-
msgstr "
|
| 425 |
|
| 426 |
-
#:
|
| 427 |
-
msgid "
|
| 428 |
-
msgstr "
|
| 429 |
|
| 430 |
-
#:
|
| 431 |
-
msgid "
|
| 432 |
-
msgstr "
|
| 433 |
|
| 434 |
-
#:
|
| 435 |
-
msgid "
|
| 436 |
-
msgstr "
|
| 437 |
|
| 438 |
-
#:
|
| 439 |
msgid "Auto-generate URL"
|
| 440 |
msgstr "Автоматическая генерация URL"
|
| 441 |
|
| 442 |
-
#:
|
| 443 |
-
msgid "
|
| 444 |
-
msgstr "
|
| 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 |
-
#:
|
| 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 |
-
#:
|
| 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 & 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 |
-
#:
|
| 508 |
-
msgid "Monitor
|
| 509 |
-
msgstr "
|
| 510 |
|
| 511 |
-
#:
|
| 512 |
-
msgid "
|
| 513 |
-
msgstr "
|
| 514 |
|
| 515 |
-
#:
|
| 516 |
-
msgid "
|
| 517 |
-
msgstr "
|
| 518 |
|
| 519 |
-
#:
|
| 520 |
-
msgid "
|
| 521 |
-
msgstr "
|
| 522 |
|
| 523 |
-
#:
|
| 524 |
-
msgid "
|
| 525 |
-
msgstr "
|
| 526 |
|
| 527 |
-
#:
|
| 528 |
-
msgid "
|
| 529 |
-
msgstr "
|
| 530 |
|
| 531 |
-
#: view/
|
| 532 |
-
msgid "
|
| 533 |
-
msgstr "
|
| 534 |
|
| 535 |
-
#:
|
| 536 |
-
msgid "
|
| 537 |
-
msgstr "
|
| 538 |
|
| 539 |
-
#:
|
| 540 |
-
msgid "
|
| 541 |
-
msgstr "
|
| 542 |
|
| 543 |
-
#:
|
| 544 |
-
msgid "
|
| 545 |
-
msgstr "
|
| 546 |
|
| 547 |
-
#:
|
| 548 |
-
msgid "
|
| 549 |
-
msgstr "
|
| 550 |
|
| 551 |
-
#:
|
| 552 |
-
msgid "
|
| 553 |
-
msgstr "
|
| 554 |
|
| 555 |
-
#: view/
|
| 556 |
-
msgid "
|
| 557 |
-
msgstr "
|
| 558 |
|
| 559 |
-
#:
|
| 560 |
-
msgid "
|
| 561 |
-
msgstr "
|
| 562 |
|
| 563 |
-
#:
|
| 564 |
-
msgid "
|
| 565 |
-
msgstr "
|
| 566 |
|
| 567 |
-
#:
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
msgstr "<strong>Отключено: Перед использованием должны быть включены <a href=\"options-permalink.php\">ЧПУ</a>"
|
| 571 |
|
| 572 |
-
#:
|
| 573 |
-
msgid "
|
| 574 |
-
msgstr "
|
| 575 |
|
| 576 |
-
#:
|
| 577 |
-
msgid "
|
| 578 |
-
msgstr "
|
| 579 |
|
| 580 |
-
#:
|
| 581 |
-
msgid "
|
| 582 |
-
msgstr "
|
| 583 |
|
| 584 |
-
#:
|
| 585 |
-
msgid "
|
| 586 |
-
msgstr "
|
| 587 |
|
| 588 |
-
#:
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
msgstr "Оставить как есть"
|
| 592 |
|
| 593 |
-
#:
|
| 594 |
-
msgid "
|
| 595 |
-
msgstr "
|
| 596 |
|
| 597 |
-
#:
|
| 598 |
-
msgid "
|
| 599 |
-
msgstr "
|
| 600 |
|
| 601 |
-
#:
|
| 602 |
-
msgid "
|
| 603 |
-
msgstr "
|
| 604 |
|
| 605 |
-
#:
|
| 606 |
-
msgid "
|
| 607 |
-
msgstr "
|
| 608 |
|
| 609 |
-
#:
|
| 610 |
-
msgid "
|
| 611 |
-
msgstr "
|
| 612 |
|
| 613 |
-
#:
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
msgstr "Настройки сервера"
|
| 617 |
|
| 618 |
-
#:
|
| 619 |
-
msgid "
|
| 620 |
-
msgstr "
|
| 621 |
|
| 622 |
-
#:
|
| 623 |
-
msgid "
|
| 624 |
-
msgstr "
|
| 625 |
|
| 626 |
-
#:
|
| 627 |
-
msgid "
|
| 628 |
-
msgstr "
|
| 629 |
|
| 630 |
-
#:
|
| 631 |
-
|
| 632 |
-
|
|
|
|
| 633 |
|
| 634 |
-
#:
|
| 635 |
-
msgid "
|
| 636 |
-
msgstr "
|
| 637 |
|
| 638 |
-
#:
|
| 639 |
-
msgid "
|
| 640 |
-
msgstr "
|
| 641 |
|
| 642 |
-
#:
|
| 643 |
-
|
| 644 |
-
|
|
|
|
| 645 |
|
| 646 |
-
#:
|
| 647 |
-
msgid "
|
| 648 |
-
msgstr "
|
| 649 |
|
| 650 |
-
#:
|
| 651 |
-
msgid "
|
| 652 |
-
|
|
|
|
|
|
|
|
|
|
| 653 |
|
| 654 |
-
#:
|
| 655 |
-
msgid "
|
| 656 |
-
msgstr "
|
| 657 |
|
| 658 |
-
|
| 659 |
-
msgid "
|
| 660 |
-
msgstr "
|
| 661 |
|
| 662 |
-
#:
|
| 663 |
-
msgid "
|
| 664 |
-
msgstr "
|
| 665 |
|
| 666 |
-
#:
|
| 667 |
-
msgid "
|
| 668 |
-
msgstr "
|
| 669 |
|
| 670 |
-
#:
|
| 671 |
-
msgid "
|
| 672 |
-
msgstr "
|
| 673 |
|
| 674 |
-
#:
|
| 675 |
-
msgid "
|
| 676 |
-
msgstr "
|
| 677 |
|
| 678 |
-
#:
|
| 679 |
-
msgid "
|
| 680 |
-
msgstr "
|
| 681 |
|
| 682 |
-
#:
|
| 683 |
-
msgid "
|
| 684 |
-
msgstr "
|
| 685 |
|
| 686 |
-
#:
|
| 687 |
-
msgid "
|
| 688 |
-
msgstr "
|
| 689 |
|
| 690 |
-
#:
|
| 691 |
-
msgid "
|
| 692 |
-
msgstr "
|
| 693 |
|
| 694 |
-
#:
|
| 695 |
-
msgid "
|
| 696 |
-
msgstr "
|
| 697 |
|
| 698 |
-
#:
|
| 699 |
-
msgid "
|
| 700 |
-
msgstr "
|
| 701 |
|
| 702 |
-
#: models/redirect.php:
|
| 703 |
-
msgid "
|
| 704 |
-
msgstr "
|
| 705 |
|
| 706 |
-
#: models/redirect.php:
|
| 707 |
msgid "Error (404)"
|
| 708 |
msgstr "Ошибка 404"
|
| 709 |
|
| 710 |
-
#: models/redirect.php:
|
| 711 |
-
msgid "
|
| 712 |
-
msgstr "
|
| 713 |
|
| 714 |
-
#: models/
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
msgstr "WordPress"
|
| 718 |
|
| 719 |
-
#: models/
|
| 720 |
-
msgid "
|
| 721 |
-
msgstr "
|
| 722 |
|
| 723 |
-
#: models/
|
| 724 |
-
msgid "
|
| 725 |
-
msgstr "
|
| 726 |
|
| 727 |
-
#: models/
|
| 728 |
-
msgid "
|
| 729 |
-
msgstr "
|
| 730 |
|
| 731 |
-
#: models/
|
| 732 |
-
msgid "
|
| 733 |
-
msgstr "
|
| 734 |
|
| 735 |
-
#: models/
|
| 736 |
-
msgid "
|
| 737 |
-
msgstr "
|
| 738 |
|
| 739 |
-
#: models/
|
| 740 |
-
msgid "
|
| 741 |
-
msgstr "
|
| 742 |
|
| 743 |
-
#:
|
| 744 |
-
msgid "
|
| 745 |
-
msgstr "
|
| 746 |
|
| 747 |
-
#:
|
| 748 |
-
msgid "
|
| 749 |
-
msgstr "
|
| 750 |
|
| 751 |
-
#:
|
| 752 |
-
msgid "
|
| 753 |
-
msgstr "
|
| 754 |
-
|
| 755 |
-
#: models/pager.php:463
|
| 756 |
-
msgid "%d per-page"
|
| 757 |
-
msgstr "%d на страницу"
|
| 758 |
|
| 759 |
-
#:
|
| 760 |
-
|
| 761 |
-
|
|
|
|
| 762 |
|
| 763 |
-
#:
|
| 764 |
-
msgid "
|
| 765 |
-
msgstr "
|
| 766 |
|
| 767 |
-
#:
|
| 768 |
-
msgid "
|
| 769 |
-
msgstr "
|
| 770 |
|
| 771 |
-
#:
|
| 772 |
-
msgid "
|
| 773 |
-
msgstr "
|
| 774 |
|
| 775 |
-
#: redirection.php:
|
| 776 |
-
msgid "
|
| 777 |
-
msgstr "
|
| 778 |
|
| 779 |
-
#: redirection.php:
|
| 780 |
-
|
| 781 |
-
|
|
|
|
| 782 |
|
| 783 |
-
|
| 784 |
-
|
| 785 |
-
#: redirection.php:121
|
| 786 |
-
msgid "Redirection"
|
| 787 |
msgstr "Перенаправления"
|
| 788 |
|
| 789 |
-
#: redirection.php:
|
| 790 |
-
|
| 791 |
-
|
|
|
|
| 792 |
|
| 793 |
-
#: redirection.php:
|
| 794 |
-
msgid "
|
| 795 |
-
msgstr "
|
| 796 |
|
| 797 |
-
#:
|
| 798 |
-
msgid "
|
| 799 |
-
msgstr "
|
| 800 |
|
| 801 |
-
#:
|
| 802 |
-
msgid "
|
| 803 |
-
msgstr "
|
| 804 |
|
| 805 |
-
#: redirection.php:
|
| 806 |
-
|
| 807 |
-
|
| 808 |
-
msgstr
|
| 809 |
-
msgstr[1] "%d перенаправления были успешно импортированы"
|
| 810 |
|
| 811 |
-
#: redirection.php:
|
| 812 |
-
|
| 813 |
-
|
|
|
|
| 814 |
|
| 815 |
-
#: redirection.php:
|
| 816 |
-
|
| 817 |
-
|
|
|
|
|
|
|
|
|
|
| 818 |
|
| 819 |
-
#: redirection.php:
|
| 820 |
-
msgid "
|
| 821 |
-
msgstr "
|
| 822 |
|
| 823 |
-
#:
|
| 824 |
-
msgid "
|
| 825 |
-
msgstr "
|
| 826 |
|
| 827 |
-
#:
|
| 828 |
-
msgid "
|
| 829 |
-
msgstr "
|
| 830 |
|
| 831 |
-
#:
|
| 832 |
-
msgid "URL
|
| 833 |
-
msgstr "
|
| 834 |
|
| 835 |
-
#:
|
| 836 |
-
|
| 837 |
-
|
| 838 |
-
msgid "HTTP Code"
|
| 839 |
-
msgstr "Код HTTP"
|
| 840 |
|
| 841 |
-
#:
|
| 842 |
-
msgid "
|
| 843 |
-
msgstr "
|
| 844 |
|
| 845 |
-
#:
|
| 846 |
-
msgid "
|
| 847 |
-
msgstr "
|
| 848 |
|
| 849 |
-
#: matches/
|
| 850 |
-
|
| 851 |
-
|
| 852 |
-
msgstr "Залогинен"
|
| 853 |
|
| 854 |
-
#: matches/
|
| 855 |
-
|
| 856 |
-
|
| 857 |
-
msgstr "Разлогинен"
|
| 858 |
|
| 859 |
-
#: matches/
|
| 860 |
-
msgid "
|
| 861 |
-
msgstr "
|
| 862 |
|
| 863 |
-
#: matches/
|
| 864 |
-
msgid "
|
| 865 |
-
msgstr "
|
| 866 |
|
| 867 |
-
#: matches/
|
| 868 |
-
msgid "
|
| 869 |
-
msgstr "
|
| 870 |
|
| 871 |
-
#: matches/
|
| 872 |
-
msgid "
|
| 873 |
-
msgstr "
|
| 874 |
|
| 875 |
-
#: matches/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 876 |
msgid "Opera"
|
| 877 |
msgstr "Opera"
|
| 878 |
|
| 879 |
-
#: matches/
|
| 880 |
-
msgid "
|
| 881 |
-
msgstr "
|
| 882 |
|
| 883 |
-
#: matches/
|
| 884 |
-
msgid "
|
| 885 |
-
msgstr "
|
| 886 |
|
| 887 |
-
#: matches/
|
| 888 |
-
msgid "
|
| 889 |
-
msgstr "
|
| 890 |
|
| 891 |
-
#: matches/
|
| 892 |
-
msgid "
|
| 893 |
-
msgstr "
|
| 894 |
|
| 895 |
-
#: matches/
|
| 896 |
-
|
| 897 |
-
|
| 898 |
-
|
| 899 |
-
|
| 900 |
-
|
|
|
|
| 901 |
|
| 902 |
-
#: matches/
|
| 903 |
-
#: matches/
|
| 904 |
-
#: matches/referrer.php:73
|
| 905 |
-
#: matches/referrer.php:75
|
| 906 |
msgid "Not matched"
|
| 907 |
msgstr "Не совпадают"
|
| 908 |
|
| 909 |
-
#: matches/referrer.php:
|
| 910 |
-
|
| 911 |
-
|
|
|
|
| 912 |
|
| 913 |
-
#: matches/referrer.php:
|
| 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 |
-
|
| 918 |
-
|
| 919 |
-
|
| 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 |
-
|
| 968 |
-
|
|
|
|
| 969 |
|
| 970 |
-
|
| 971 |
-
|
|
|
|
|
|
|
| 972 |
|
| 973 |
-
|
| 974 |
-
|
|
|
|
| 975 |
|
| 976 |
-
|
| 977 |
-
|
|
|
|
| 978 |
|
| 979 |
-
|
| 980 |
-
|
|
|
|
| 981 |
|
| 982 |
-
|
| 983 |
-
|
|
|
|
| 984 |
|
| 985 |
-
|
| 986 |
-
|
|
|
| 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 |
-
"
|
| 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 |
-
"
|
| 13 |
-
"X-
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
| 17 |
|
| 18 |
-
#:
|
| 19 |
-
msgid "
|
| 20 |
-
msgstr "
|
| 21 |
|
| 22 |
-
#:
|
| 23 |
-
msgid "
|
| 24 |
-
msgstr "
|
| 25 |
|
| 26 |
-
#:
|
| 27 |
-
msgid "
|
| 28 |
-
msgstr "
|
| 29 |
|
| 30 |
-
#:
|
| 31 |
-
|
| 32 |
-
|
| 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 |
-
#:
|
| 40 |
-
msgid "
|
| 41 |
-
msgstr "
|
| 42 |
|
| 43 |
-
#:
|
| 44 |
-
msgid "
|
| 45 |
-
msgstr "
|
| 46 |
|
| 47 |
-
#:
|
| 48 |
-
msgid "
|
| 49 |
-
msgstr "
|
| 50 |
|
| 51 |
-
#:
|
| 52 |
-
msgid "
|
| 53 |
-
msgstr "
|
| 54 |
|
| 55 |
-
#:
|
| 56 |
-
msgid "
|
| 57 |
-
msgstr "
|
| 58 |
|
| 59 |
-
#:
|
| 60 |
-
msgid "
|
| 61 |
-
msgstr "
|
| 62 |
|
| 63 |
-
#:
|
| 64 |
-
msgid "
|
| 65 |
-
msgstr "
|
| 66 |
|
| 67 |
-
#:
|
| 68 |
-
msgid "
|
| 69 |
-
msgstr "
|
| 70 |
|
| 71 |
-
#:
|
| 72 |
-
msgid "
|
| 73 |
-
msgstr "
|
| 74 |
|
| 75 |
-
#:
|
| 76 |
-
msgid "
|
| 77 |
-
msgstr "
|
| 78 |
|
| 79 |
-
#:
|
| 80 |
-
msgid "
|
| 81 |
-
msgstr "
|
| 82 |
|
| 83 |
-
#:
|
| 84 |
-
msgid "
|
| 85 |
-
msgstr "
|
| 86 |
|
| 87 |
-
#:
|
| 88 |
-
msgid "
|
| 89 |
-
msgstr "
|
| 90 |
|
| 91 |
-
#:
|
| 92 |
-
msgid "
|
| 93 |
-
msgstr "
|
| 94 |
|
| 95 |
-
#:
|
| 96 |
-
msgid "
|
| 97 |
-
msgstr "
|
| 98 |
|
| 99 |
-
#:
|
| 100 |
-
msgid "
|
| 101 |
-
msgstr "
|
| 102 |
|
| 103 |
-
#:
|
| 104 |
-
msgid "
|
| 105 |
-
msgstr "
|
| 106 |
|
| 107 |
-
#:
|
| 108 |
-
msgid "
|
| 109 |
-
msgstr "
|
| 110 |
|
| 111 |
-
#:
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
msgstr "
|
|
|
|
| 115 |
|
| 116 |
-
#:
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
msgstr "module_%d.xml"
|
| 120 |
|
| 121 |
-
#:
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
msgstr "%s aktarıldığı tarih %s в %s"
|
| 125 |
|
| 126 |
-
#:
|
| 127 |
-
msgid "
|
| 128 |
-
msgstr "
|
| 129 |
|
| 130 |
-
#:
|
| 131 |
-
msgid "
|
| 132 |
-
msgstr "
|
| 133 |
|
| 134 |
-
#:
|
| 135 |
-
msgid "
|
| 136 |
-
msgstr "
|
| 137 |
|
| 138 |
-
#:
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
msgstr "Giriş Yapıldı"
|
| 142 |
|
| 143 |
-
#:
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
msgstr "Çıkış Yapıldı"
|
| 147 |
|
| 148 |
-
#:
|
| 149 |
-
msgid "
|
| 150 |
-
msgstr "
|
| 151 |
|
| 152 |
-
#:
|
| 153 |
-
msgid "
|
| 154 |
-
msgstr "
|
| 155 |
|
| 156 |
-
#:
|
| 157 |
-
msgid "
|
| 158 |
-
msgstr "
|
| 159 |
|
| 160 |
-
#:
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
msgid "HTTP Code"
|
| 164 |
-
msgstr "HTTP Kodu"
|
| 165 |
|
| 166 |
-
#:
|
| 167 |
-
msgid "
|
| 168 |
-
msgstr "
|
| 169 |
|
| 170 |
-
#:
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
#: c:/temp/redirection/matches/user_agent.php:76
|
| 174 |
-
msgid "Matched"
|
| 175 |
-
msgstr "Karşılaştırıldı"
|
| 176 |
|
| 177 |
-
#:
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
#: c:/temp/redirection/matches/user_agent.php:86
|
| 181 |
-
msgid "Not matched"
|
| 182 |
-
msgstr "Karşılaştırılamadı"
|
| 183 |
|
| 184 |
-
#:
|
| 185 |
-
msgid "
|
| 186 |
-
msgstr "
|
| 187 |
|
| 188 |
-
#:
|
| 189 |
-
msgid "
|
| 190 |
-
msgstr "
|
| 191 |
|
| 192 |
-
#:
|
| 193 |
-
msgid "
|
| 194 |
-
msgstr "
|
| 195 |
|
| 196 |
-
#:
|
| 197 |
-
msgid "
|
| 198 |
-
msgstr "
|
| 199 |
|
| 200 |
-
#:
|
| 201 |
-
msgid "
|
| 202 |
-
msgstr "
|
| 203 |
|
| 204 |
-
#:
|
| 205 |
-
msgid "
|
| 206 |
-
msgstr "
|
| 207 |
|
| 208 |
-
#:
|
| 209 |
-
msgid "
|
| 210 |
-
msgstr "
|
| 211 |
|
| 212 |
-
#:
|
| 213 |
-
msgid "
|
| 214 |
-
msgstr "
|
| 215 |
|
| 216 |
-
#:
|
| 217 |
-
msgid "
|
| 218 |
-
msgstr "
|
| 219 |
|
| 220 |
-
#:
|
| 221 |
-
msgid "
|
| 222 |
-
msgstr "
|
| 223 |
|
| 224 |
-
#:
|
| 225 |
-
msgid "
|
| 226 |
-
msgstr "
|
| 227 |
|
| 228 |
-
#:
|
| 229 |
-
msgid "
|
| 230 |
-
msgstr "
|
| 231 |
|
| 232 |
-
#:
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
msgstr "WordPress"
|
| 236 |
|
| 237 |
-
#:
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
msgstr "Apache"
|
| 241 |
|
| 242 |
-
#:
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
msgstr "404 Hataları"
|
| 246 |
|
| 247 |
-
#:
|
| 248 |
-
msgid "
|
| 249 |
-
msgstr "
|
| 250 |
|
| 251 |
-
#:
|
| 252 |
-
msgid "
|
| 253 |
-
msgstr "
|
| 254 |
|
| 255 |
-
#:
|
| 256 |
-
msgid "
|
| 257 |
-
msgstr "
|
| 258 |
|
| 259 |
-
#:
|
| 260 |
-
msgid "
|
| 261 |
-
msgstr "
|
| 262 |
|
| 263 |
-
#:
|
| 264 |
-
msgid "
|
| 265 |
-
msgstr "
|
| 266 |
|
| 267 |
-
#:
|
| 268 |
-
msgid "
|
| 269 |
-
msgstr "
|
| 270 |
|
| 271 |
-
#:
|
| 272 |
-
msgid "
|
| 273 |
-
msgstr "
|
| 274 |
|
| 275 |
-
#:
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
msgstr "%d sayfa-basi"
|
| 279 |
|
| 280 |
-
#:
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
msgstr "Gösterilen %s–%s of %s"
|
| 284 |
|
| 285 |
-
|
| 286 |
-
msgid "
|
| 287 |
-
msgstr "
|
| 288 |
|
| 289 |
-
|
| 290 |
-
msgid "
|
| 291 |
-
msgstr "
|
| 292 |
|
| 293 |
-
|
| 294 |
-
msgid "
|
| 295 |
-
msgstr "
|
| 296 |
|
| 297 |
-
|
| 298 |
-
msgid "
|
| 299 |
-
msgstr "
|
| 300 |
|
| 301 |
-
#:
|
| 302 |
-
msgid "
|
| 303 |
-
msgstr "
|
| 304 |
|
| 305 |
-
#:
|
| 306 |
-
msgid "
|
| 307 |
-
msgstr "
|
| 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 |
-
#:
|
| 372 |
-
msgid "
|
| 373 |
-
msgstr "
|
| 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 |
-
#:
|
| 494 |
-
msgid "
|
| 495 |
-
msgstr "
|
| 496 |
|
| 497 |
-
#:
|
| 498 |
-
msgid "
|
| 499 |
-
msgstr "
|
| 500 |
|
| 501 |
-
#:
|
| 502 |
-
msgid "
|
| 503 |
-
msgstr "
|
| 504 |
|
| 505 |
-
#:
|
| 506 |
-
msgid "
|
| 507 |
-
msgstr "
|
| 508 |
|
| 509 |
-
#:
|
| 510 |
-
msgid "
|
| 511 |
-
msgstr "
|
| 512 |
|
| 513 |
-
#:
|
| 514 |
-
msgid "
|
| 515 |
-
msgstr "
|
| 516 |
|
| 517 |
-
#:
|
| 518 |
-
msgid "
|
| 519 |
-
msgstr "
|
| 520 |
|
| 521 |
-
#:
|
| 522 |
-
|
| 523 |
-
|
| 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 |
-
#:
|
| 530 |
-
msgid "
|
| 531 |
-
msgstr "
|
| 532 |
|
| 533 |
-
#:
|
| 534 |
-
msgid "
|
| 535 |
-
msgstr "
|
| 536 |
|
| 537 |
-
#:
|
| 538 |
-
msgid "
|
| 539 |
-
msgstr "
|
| 540 |
|
| 541 |
-
#:
|
| 542 |
-
msgid "
|
| 543 |
-
msgstr "
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
msgid "Cancel"
|
| 549 |
-
msgstr "İptal"
|
| 550 |
|
| 551 |
-
#:
|
| 552 |
-
msgid "
|
| 553 |
-
msgstr "
|
| 554 |
|
| 555 |
-
#:
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
msgstr "aktif değil"
|
| 559 |
|
| 560 |
-
#:
|
| 561 |
-
msgid "
|
| 562 |
-
msgstr "
|
| 563 |
|
| 564 |
-
#:
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
msgstr "Modüle"
|
| 568 |
|
| 569 |
-
#:
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
#: c:/temp/redirection/view/admin/log.php:19
|
| 573 |
-
msgid "Search"
|
| 574 |
-
msgstr "Ara"
|
| 575 |
|
| 576 |
-
#:
|
| 577 |
-
msgid "
|
| 578 |
-
msgstr "
|
| 579 |
|
| 580 |
-
#:
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
msgid "Hits"
|
| 584 |
-
msgstr "Hitler"
|
| 585 |
|
| 586 |
-
#:
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
msgstr "Hepsini Seç"
|
| 590 |
|
| 591 |
-
#:
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
msgstr "Bağla"
|
| 595 |
|
| 596 |
-
#:
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
msgstr "Hitleri Sıfırla"
|
| 600 |
|
| 601 |
-
#:
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
#: c:/temp/redirection/view/admin/options.php:105
|
| 605 |
-
msgid "Delete"
|
| 606 |
-
msgstr "Sil"
|
| 607 |
|
| 608 |
-
#:
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
msgstr "Taşı"
|
| 612 |
|
| 613 |
-
#:
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 617 |
|
| 618 |
-
#:
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
msgstr "sıralamayı kaydet"
|
| 622 |
|
| 623 |
-
#:
|
| 624 |
-
msgid "
|
| 625 |
-
msgstr "
|
| 626 |
|
| 627 |
-
#:
|
| 628 |
msgid "Add Group"
|
| 629 |
msgstr "Yeni Grup Ekle"
|
| 630 |
|
| 631 |
-
#:
|
| 632 |
-
msgid "
|
| 633 |
-
msgstr "
|
| 634 |
|
| 635 |
-
#:
|
| 636 |
-
msgid "
|
| 637 |
-
msgstr "
|
| 638 |
|
| 639 |
-
#:
|
| 640 |
-
msgid "
|
| 641 |
-
msgstr "
|
| 642 |
|
| 643 |
-
#:
|
| 644 |
-
msgid "
|
| 645 |
-
msgstr "
|
| 646 |
|
| 647 |
-
#:
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
msgstr "%s karsilik gelen %s"
|
| 651 |
|
| 652 |
-
#:
|
| 653 |
-
msgid "
|
| 654 |
-
msgstr "
|
| 655 |
|
| 656 |
-
#:
|
| 657 |
-
msgid "
|
| 658 |
-
msgstr "
|
| 659 |
|
| 660 |
-
#:
|
| 661 |
-
msgid "
|
| 662 |
-
msgstr "
|
| 663 |
|
| 664 |
-
#:
|
| 665 |
-
msgid "
|
| 666 |
-
msgstr "
|
| 667 |
|
| 668 |
-
#:
|
| 669 |
-
msgid "
|
| 670 |
-
msgstr "
|
| 671 |
|
| 672 |
-
#:
|
| 673 |
-
#:
|
| 674 |
-
msgid "
|
| 675 |
-
msgstr "
|
| 676 |
|
| 677 |
-
#:
|
| 678 |
-
msgid "
|
| 679 |
-
msgstr "
|
| 680 |
|
| 681 |
-
#:
|
| 682 |
-
msgid "
|
| 683 |
-
msgstr "
|
| 684 |
|
| 685 |
-
#:
|
| 686 |
-
|
| 687 |
-
|
|
|
|
| 688 |
|
| 689 |
-
#:
|
| 690 |
-
msgid "
|
| 691 |
-
msgstr "
|
| 692 |
|
| 693 |
-
#:
|
| 694 |
-
msgid "
|
| 695 |
-
|
|
|
|
|
|
|
| 696 |
|
| 697 |
-
#:
|
| 698 |
-
msgid "
|
| 699 |
-
msgstr "
|
| 700 |
|
| 701 |
-
|
| 702 |
-
msgid "
|
| 703 |
-
msgstr "
|
| 704 |
|
| 705 |
-
#:
|
| 706 |
-
msgid "
|
| 707 |
-
msgstr "
|
| 708 |
|
| 709 |
-
#:
|
| 710 |
-
msgid "
|
| 711 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 712 |
|
| 713 |
-
#:
|
| 714 |
-
msgid "
|
| 715 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 716 |
|
| 717 |
-
#:
|
| 718 |
-
msgid "
|
| 719 |
-
msgstr "
|
| 720 |
|
| 721 |
-
#:
|
| 722 |
-
msgid "
|
| 723 |
-
msgstr "
|
| 724 |
|
| 725 |
-
#:
|
| 726 |
-
msgid "
|
| 727 |
-
msgstr "
|
| 728 |
|
| 729 |
-
#:
|
| 730 |
-
msgid "
|
| 731 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 732 |
|
| 733 |
-
#:
|
| 734 |
-
msgid "
|
| 735 |
-
msgstr "
|
| 736 |
|
| 737 |
-
#:
|
| 738 |
-
msgid "
|
| 739 |
-
msgstr "
|
| 740 |
|
| 741 |
-
#:
|
| 742 |
-
msgid "
|
| 743 |
-
msgstr "
|
| 744 |
|
| 745 |
-
#:
|
| 746 |
-
msgid "
|
| 747 |
-
msgstr "
|
| 748 |
|
| 749 |
-
#:
|
| 750 |
-
msgid "
|
| 751 |
-
msgstr "
|
| 752 |
|
| 753 |
-
#:
|
| 754 |
-
msgid "
|
| 755 |
-
msgstr "
|
| 756 |
|
| 757 |
-
#:
|
| 758 |
-
msgid "
|
| 759 |
-
msgstr "
|
| 760 |
|
| 761 |
-
#:
|
| 762 |
-
msgid "
|
| 763 |
-
msgstr "
|
| 764 |
|
| 765 |
-
#:
|
| 766 |
-
msgid "
|
| 767 |
-
msgstr "
|
| 768 |
|
| 769 |
-
#:
|
| 770 |
-
msgid "
|
| 771 |
-
msgstr "
|
| 772 |
|
| 773 |
-
#:
|
| 774 |
-
|
| 775 |
-
|
| 776 |
-
msgstr "Modüller"
|
| 777 |
|
| 778 |
-
#:
|
| 779 |
-
msgid "
|
| 780 |
-
msgstr "
|
| 781 |
|
| 782 |
-
#:
|
| 783 |
-
|
| 784 |
-
|
| 785 |
-
msgstr "Gruplar"
|
| 786 |
|
| 787 |
-
#:
|
| 788 |
-
|
| 789 |
-
|
|
|
|
| 790 |
|
| 791 |
-
#:
|
| 792 |
-
msgid "
|
| 793 |
-
msgstr "
|
| 794 |
|
| 795 |
-
#:
|
| 796 |
-
msgid "
|
| 797 |
-
msgstr "
|
| 798 |
|
| 799 |
-
#:
|
| 800 |
-
msgid "
|
| 801 |
-
msgstr "
|
| 802 |
|
| 803 |
-
#:
|
| 804 |
-
msgid "
|
| 805 |
-
msgstr "
|
| 806 |
|
| 807 |
-
#:
|
| 808 |
-
|
| 809 |
-
|
|
|
|
| 810 |
|
| 811 |
-
#:
|
| 812 |
-
msgid "
|
| 813 |
-
msgstr "
|
| 814 |
|
| 815 |
-
#:
|
| 816 |
-
#:
|
| 817 |
-
msgid "
|
| 818 |
-
msgstr "
|
| 819 |
|
| 820 |
-
#:
|
| 821 |
-
msgid "
|
| 822 |
-
msgstr "
|
| 823 |
|
| 824 |
-
#:
|
| 825 |
-
msgid "
|
| 826 |
-
msgstr "
|
| 827 |
|
| 828 |
-
#:
|
| 829 |
-
msgid "
|
| 830 |
-
msgstr "
|
| 831 |
|
| 832 |
-
#:
|
| 833 |
-
|
| 834 |
-
|
|
|
|
| 835 |
|
| 836 |
-
#:
|
| 837 |
-
|
| 838 |
-
|
|
|
|
| 839 |
|
| 840 |
-
#:
|
| 841 |
-
|
| 842 |
-
|
|
|
|
|
|
|
|
|
|
| 843 |
|
| 844 |
-
#:
|
| 845 |
-
msgid "
|
| 846 |
-
msgstr "
|
| 847 |
|
| 848 |
-
#:
|
| 849 |
-
msgid "
|
| 850 |
-
msgstr "
|
| 851 |
|
| 852 |
-
#:
|
| 853 |
-
msgid "
|
| 854 |
-
msgstr "
|
| 855 |
|
| 856 |
-
#:
|
| 857 |
-
msgid "URL
|
| 858 |
-
msgstr "URL
|
| 859 |
|
| 860 |
-
#:
|
| 861 |
-
msgid "
|
| 862 |
-
msgstr "
|
| 863 |
|
| 864 |
-
#:
|
| 865 |
-
msgid "
|
| 866 |
-
msgstr "
|
| 867 |
|
| 868 |
-
#:
|
| 869 |
-
|
| 870 |
-
|
| 871 |
-
msgstr "URL Takip etme"
|
| 872 |
|
| 873 |
-
#:
|
| 874 |
-
msgid "
|
| 875 |
-
msgstr "
|
| 876 |
|
| 877 |
-
#:
|
| 878 |
-
msgid "
|
| 879 |
-
msgstr "
|
| 880 |
|
| 881 |
-
#:
|
| 882 |
-
msgid "
|
| 883 |
-
msgstr "
|
| 884 |
|
| 885 |
-
#:
|
| 886 |
-
msgid "
|
| 887 |
-
msgstr "
|
| 888 |
|
| 889 |
-
#:
|
| 890 |
-
msgid "
|
| 891 |
-
msgstr "
|
| 892 |
|
| 893 |
-
#:
|
| 894 |
-
msgid "
|
| 895 |
-
msgstr "
|
| 896 |
|
| 897 |
-
#:
|
| 898 |
-
msgid "
|
| 899 |
-
msgstr "
|
| 900 |
|
| 901 |
-
#:
|
| 902 |
-
msgid "
|
| 903 |
-
msgstr "
|
| 904 |
|
| 905 |
-
#:
|
| 906 |
-
msgid "
|
| 907 |
-
msgstr "
|
| 908 |
|
| 909 |
-
#:
|
| 910 |
-
msgid "
|
| 911 |
-
msgstr "
|
| 912 |
|
| 913 |
-
#:
|
| 914 |
-
msgid "
|
| 915 |
-
msgstr "
|
| 916 |
|
| 917 |
-
#:
|
| 918 |
-
msgid "
|
| 919 |
-
msgstr "
|
| 920 |
|
| 921 |
-
#:
|
| 922 |
-
msgid "
|
| 923 |
-
msgstr "
|
| 924 |
|
| 925 |
-
#:
|
| 926 |
-
msgid "
|
| 927 |
-
msgstr "
|
| 928 |
|
| 929 |
-
#:
|
| 930 |
-
|
| 931 |
-
|
|
|
|
| 932 |
|
| 933 |
-
#:
|
| 934 |
-
|
| 935 |
-
|
|
|
|
| 936 |
|
| 937 |
-
#:
|
| 938 |
-
msgid "
|
| 939 |
-
msgstr "
|
| 940 |
|
| 941 |
-
#:
|
| 942 |
-
|
| 943 |
-
|
|
|
|
| 944 |
|
| 945 |
-
#:
|
| 946 |
-
msgid "
|
| 947 |
-
msgstr "
|
| 948 |
|
| 949 |
-
#:
|
| 950 |
-
|
| 951 |
-
|
|
|
|
| 952 |
|
| 953 |
-
#:
|
| 954 |
-
msgid "
|
| 955 |
-
msgstr "
|
| 956 |
|
| 957 |
-
#:
|
| 958 |
-
msgid "
|
| 959 |
-
msgstr "
|
| 960 |
|
| 961 |
-
#:
|
| 962 |
-
msgid "
|
| 963 |
-
msgstr "
|
| 964 |
|
| 965 |
-
#:
|
| 966 |
-
msgid "
|
| 967 |
-
msgstr "
|
| 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:
|
| 18 |
msgid "Settings"
|
| 19 |
msgstr ""
|
| 20 |
|
| 21 |
-
#: redirection-admin.php:
|
| 22 |
-
msgid "Log entries"
|
| 23 |
msgstr ""
|
| 24 |
|
| 25 |
-
#: redirection-admin.php:
|
| 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:
|
| 32 |
msgid "No items were imported"
|
| 33 |
msgstr ""
|
| 34 |
|
| 35 |
-
#: redirection-admin.php:
|
| 36 |
msgid "Redirection Log"
|
| 37 |
msgstr ""
|
| 38 |
|
| 39 |
-
#: redirection-admin.php:
|
| 40 |
msgid "Redirection 404"
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
-
#: redirection-
|
| 44 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
-
#: redirection-strings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
msgid "Name"
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
-
#: redirection-strings.php:
|
| 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:
|
| 56 |
msgid "Add Group"
|
| 57 |
msgstr ""
|
| 58 |
|
| 59 |
-
#: redirection-strings.php:
|
| 60 |
msgid "All modules"
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
-
#: redirection-strings.php:
|
| 64 |
msgid "Disable"
|
| 65 |
msgstr ""
|
| 66 |
|
| 67 |
-
#: redirection-strings.php:
|
| 68 |
msgid "Enable"
|
| 69 |
msgstr ""
|
| 70 |
|
| 71 |
-
#: redirection-strings.php:
|
| 72 |
msgid "Delete"
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
-
#: redirection-strings.php:
|
| 76 |
msgid "Module"
|
| 77 |
msgstr ""
|
| 78 |
|
| 79 |
-
#: redirection-strings.php:
|
| 80 |
msgid "Redirects"
|
| 81 |
msgstr ""
|
| 82 |
|
| 83 |
-
#: redirection-strings.php:
|
| 84 |
msgid "Cancel"
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
-
#: redirection-strings.php:
|
| 88 |
msgid "Save"
|
| 89 |
msgstr ""
|
| 90 |
|
| 91 |
-
#: redirection-strings.php:
|
| 92 |
msgid "View Redirects"
|
| 93 |
msgstr ""
|
| 94 |
|
| 95 |
-
#: redirection-strings.php:
|
| 96 |
msgid "Edit"
|
| 97 |
msgstr ""
|
| 98 |
|
| 99 |
-
#: redirection-strings.php:
|
| 100 |
msgid "No! Don't delete the logs"
|
| 101 |
msgstr ""
|
| 102 |
|
| 103 |
-
#: redirection-strings.php:
|
| 104 |
msgid "Yes! Delete the logs"
|
| 105 |
msgstr ""
|
| 106 |
|
| 107 |
-
#: redirection-strings.php:
|
| 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:
|
| 112 |
msgid "Delete the logs - are you sure?"
|
| 113 |
msgstr ""
|
| 114 |
|
| 115 |
-
#: redirection-strings.php:
|
| 116 |
msgid "Delete All"
|
| 117 |
msgstr ""
|
| 118 |
|
| 119 |
-
#: redirection-strings.php:
|
| 120 |
msgid "Export to CSV"
|
| 121 |
msgstr ""
|
| 122 |
|
| 123 |
-
#: redirection-strings.php:
|
| 124 |
msgid "IP"
|
| 125 |
msgstr ""
|
| 126 |
|
| 127 |
-
#: redirection-strings.php:
|
| 128 |
msgid "Referrer"
|
| 129 |
msgstr ""
|
| 130 |
|
| 131 |
-
#: redirection-strings.php:
|
| 132 |
msgid "Source URL"
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
-
#: redirection-strings.php:
|
| 136 |
msgid "Date"
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
-
#: redirection-strings.php:
|
| 140 |
msgid "Show only this IP"
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
-
#: redirection-strings.php:
|
| 144 |
msgid "Add Redirect"
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
-
#: redirection-strings.php:
|
| 148 |
msgid "Automatically remove or add www to your site."
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
-
#: redirection-strings.php:
|
| 152 |
msgid "Add WWW"
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
-
#: redirection-strings.php:
|
| 156 |
msgid "Remove WWW"
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
-
#: redirection-strings.php:
|
| 160 |
msgid "Default server"
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
-
#: redirection-strings.php:
|
| 164 |
msgid "Canonical URL"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: redirection-strings.php:
|
| 168 |
msgid "WordPress is installed in: {{code}}%s{{/code}}"
|
| 169 |
msgstr ""
|
| 170 |
|
| 171 |
-
#: redirection-strings.php:
|
| 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:
|
| 176 |
msgid ".htaccess Location"
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
-
#: redirection-strings.php:
|
| 180 |
msgid "Download"
|
| 181 |
msgstr ""
|
| 182 |
|
| 183 |
-
#: redirection-strings.php:
|
| 184 |
msgid "Failed to load"
|
| 185 |
msgstr ""
|
| 186 |
|
| 187 |
-
#: redirection-strings.php:
|
| 188 |
msgid "Configure"
|
| 189 |
msgstr ""
|
| 190 |
|
| 191 |
-
#: redirection-strings.php:
|
| 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:
|
| 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:
|
| 200 |
msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
|
| 201 |
msgstr ""
|
| 202 |
|
| 203 |
-
#: redirection-strings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
msgid "No! Don't delete the plugin"
|
| 205 |
msgstr ""
|
| 206 |
|
| 207 |
-
#: redirection-strings.php:
|
| 208 |
msgid "Yes! Delete the plugin"
|
| 209 |
msgstr ""
|
| 210 |
|
| 211 |
-
#: redirection-strings.php:
|
| 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:
|
| 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:
|
| 220 |
msgid "Delete the plugin - are you sure?"
|
| 221 |
msgstr ""
|
| 222 |
|
| 223 |
-
#: redirection-strings.php:
|
| 224 |
msgid "Delete Redirection"
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
-
#: redirection-strings.php:
|
| 228 |
msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
|
| 229 |
msgstr ""
|
| 230 |
|
| 231 |
-
#: redirection-strings.php:
|
| 232 |
msgid "CSV Format"
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
-
#: redirection-strings.php:
|
| 236 |
msgid "Upload"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
-
#: redirection-strings.php:
|
| 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:
|
| 244 |
msgid "Import"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
-
#: redirection-strings.php:
|
| 248 |
-
msgid "Failed to load data"
|
| 249 |
-
msgstr ""
|
| 250 |
-
|
| 251 |
-
#: redirection-strings.php:76
|
| 252 |
msgid "Update"
|
| 253 |
msgstr ""
|
| 254 |
|
| 255 |
-
#: redirection-strings.php:
|
| 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:
|
| 260 |
msgid "Auto-generate URL"
|
| 261 |
msgstr ""
|
| 262 |
|
| 263 |
-
#: redirection-strings.php:
|
| 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:
|
| 268 |
msgid "RSS Token"
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
-
#: redirection-strings.php:
|
| 272 |
msgid "Monitor changes to posts"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
-
#: redirection-strings.php:
|
| 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 "
|
| 313 |
-
msgstr ""
|
| 314 |
-
|
| 315 |
-
#: redirection-strings.php:93
|
| 316 |
-
msgid "A month"
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: redirection-strings.php:94
|
| 320 |
-
msgid "
|
| 321 |
msgstr ""
|
| 322 |
|
| 323 |
#: redirection-strings.php:95
|
| 324 |
-
msgid "
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
#: redirection-strings.php:96
|
| 328 |
-
msgid "
|
| 329 |
msgstr ""
|
| 330 |
|
| 331 |
#: redirection-strings.php:97
|
| 332 |
-
msgid "
|
| 333 |
msgstr ""
|
| 334 |
|
| 335 |
#: redirection-strings.php:98
|
| 336 |
-
msgid "
|
| 337 |
msgstr ""
|
| 338 |
|
| 339 |
#: redirection-strings.php:99
|
| 340 |
-
msgid "
|
| 341 |
msgstr ""
|
| 342 |
|
| 343 |
#: redirection-strings.php:100
|
| 344 |
-
msgid "
|
| 345 |
msgstr ""
|
| 346 |
|
| 347 |
#: redirection-strings.php:101
|
| 348 |
-
msgid "
|
| 349 |
msgstr ""
|
| 350 |
|
| 351 |
#: redirection-strings.php:102
|
| 352 |
-
msgid "
|
| 353 |
msgstr ""
|
| 354 |
|
| 355 |
#: redirection-strings.php:103
|
| 356 |
-
msgid "
|
| 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 "
|
| 365 |
msgstr ""
|
| 366 |
|
| 367 |
-
#: redirection-strings.php:106
|
| 368 |
-
msgid "
|
| 369 |
msgstr ""
|
| 370 |
|
| 371 |
-
#: redirection-strings.php:107
|
| 372 |
-
msgid "
|
| 373 |
msgstr ""
|
| 374 |
|
| 375 |
#: redirection-strings.php:108
|
| 376 |
-
msgid "
|
| 377 |
msgstr ""
|
| 378 |
|
| 379 |
#: redirection-strings.php:109
|
| 380 |
-
msgid "
|
| 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 "
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: redirection-strings.php:113
|
| 396 |
-
msgid "
|
| 397 |
msgstr ""
|
| 398 |
|
| 399 |
-
#: redirection-strings.php:
|
| 400 |
-
msgid "
|
| 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 "
|
| 413 |
msgstr ""
|
| 414 |
|
| 415 |
#: redirection-strings.php:119
|
| 416 |
-
msgid "
|
| 417 |
msgstr ""
|
| 418 |
|
| 419 |
#: redirection-strings.php:120
|
| 420 |
-
msgid "
|
| 421 |
-
|
| 422 |
-
msgstr[0] ""
|
| 423 |
-
msgstr[1] ""
|
| 424 |
|
| 425 |
#: redirection-strings.php:121
|
| 426 |
-
msgid "
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: redirection-strings.php:122
|
| 430 |
-
msgid "
|
| 431 |
msgstr ""
|
| 432 |
|
| 433 |
#: redirection-strings.php:123
|
| 434 |
-
msgid "
|
| 435 |
msgstr ""
|
| 436 |
|
| 437 |
#: redirection-strings.php:124
|
| 438 |
-
msgid "
|
| 439 |
msgstr ""
|
| 440 |
|
| 441 |
#: redirection-strings.php:125
|
| 442 |
-
msgid "
|
| 443 |
msgstr ""
|
| 444 |
|
| 445 |
#: redirection-strings.php:126
|
| 446 |
-
msgid "
|
| 447 |
msgstr ""
|
| 448 |
|
| 449 |
#: redirection-strings.php:127
|
| 450 |
-
msgid "
|
| 451 |
msgstr ""
|
| 452 |
|
| 453 |
#: redirection-strings.php:128
|
| 454 |
-
msgid "
|
| 455 |
msgstr ""
|
| 456 |
|
| 457 |
#: redirection-strings.php:129
|
| 458 |
-
msgid "
|
| 459 |
msgstr ""
|
| 460 |
|
| 461 |
#: redirection-strings.php:130
|
| 462 |
-
msgid "
|
| 463 |
msgstr ""
|
| 464 |
|
| 465 |
#: redirection-strings.php:131
|
| 466 |
-
msgid "
|
| 467 |
msgstr ""
|
| 468 |
|
| 469 |
#: redirection-strings.php:132
|
| 470 |
-
msgid "
|
| 471 |
msgstr ""
|
| 472 |
|
| 473 |
#: redirection-strings.php:133
|
| 474 |
-
msgid "
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
#: redirection-strings.php:134
|
| 478 |
-
msgid "
|
| 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:
|
| 486 |
-
msgid "
|
| 487 |
msgstr ""
|
| 488 |
|
| 489 |
-
#: redirection-strings.php:
|
| 490 |
-
msgid "
|
| 491 |
msgstr ""
|
| 492 |
|
| 493 |
-
#: redirection-strings.php:
|
| 494 |
-
msgid "
|
| 495 |
msgstr ""
|
| 496 |
|
| 497 |
-
#: redirection-strings.php:
|
| 498 |
-
msgid "
|
| 499 |
msgstr ""
|
| 500 |
|
| 501 |
#: redirection-strings.php:140
|
| 502 |
-
msgid "
|
| 503 |
msgstr ""
|
| 504 |
|
| 505 |
#: redirection-strings.php:141
|
| 506 |
-
msgid "
|
| 507 |
msgstr ""
|
| 508 |
|
| 509 |
-
#:
|
| 510 |
-
msgid "
|
| 511 |
msgstr ""
|
| 512 |
|
| 513 |
-
#:
|
| 514 |
-
msgid "
|
| 515 |
msgstr ""
|
| 516 |
|
| 517 |
-
#:
|
| 518 |
-
msgid "
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
-
#:
|
| 522 |
-
msgid "
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
-
#:
|
| 526 |
-
msgid "
|
| 527 |
msgstr ""
|
| 528 |
|
| 529 |
-
#:
|
| 530 |
-
msgid "
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
-
#:
|
| 534 |
-
msgid "
|
| 535 |
msgstr ""
|
| 536 |
|
| 537 |
-
#:
|
| 538 |
-
msgid "
|
| 539 |
msgstr ""
|
| 540 |
|
| 541 |
-
#:
|
| 542 |
-
msgid "
|
| 543 |
msgstr ""
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
msgid "
|
| 547 |
msgstr ""
|
| 548 |
|
| 549 |
-
#:
|
| 550 |
-
msgid "
|
| 551 |
msgstr ""
|
| 552 |
|
| 553 |
-
#:
|
| 554 |
-
msgid "
|
| 555 |
msgstr ""
|
| 556 |
|
| 557 |
-
#:
|
| 558 |
-
msgid "
|
| 559 |
msgstr ""
|
| 560 |
|
| 561 |
-
#:
|
| 562 |
-
msgid "
|
| 563 |
msgstr ""
|
| 564 |
|
| 565 |
-
#:
|
| 566 |
-
msgid "
|
| 567 |
msgstr ""
|
| 568 |
|
| 569 |
-
#:
|
| 570 |
-
msgid "
|
| 571 |
msgstr ""
|
| 572 |
|
| 573 |
-
#:
|
| 574 |
-
msgid "
|
| 575 |
msgstr ""
|
| 576 |
|
| 577 |
-
#:
|
| 578 |
-
msgid "
|
| 579 |
msgstr ""
|
| 580 |
|
| 581 |
-
#:
|
| 582 |
-
msgid "
|
| 583 |
msgstr ""
|
| 584 |
|
| 585 |
-
#:
|
| 586 |
-
msgid "
|
| 587 |
msgstr ""
|
| 588 |
|
| 589 |
-
#:
|
| 590 |
-
msgid "
|
| 591 |
msgstr ""
|
| 592 |
|
| 593 |
-
#:
|
| 594 |
-
msgid "
|
| 595 |
msgstr ""
|
| 596 |
|
| 597 |
-
#:
|
| 598 |
-
msgid "
|
| 599 |
msgstr ""
|
| 600 |
|
| 601 |
-
#:
|
| 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 |
-
#:
|
| 608 |
-
msgid "
|
| 609 |
msgstr ""
|
| 610 |
|
| 611 |
-
#:
|
| 612 |
-
msgid "
|
| 613 |
msgstr ""
|
| 614 |
|
| 615 |
-
#:
|
| 616 |
-
msgid "
|
| 617 |
msgstr ""
|
| 618 |
|
| 619 |
-
#:
|
| 620 |
-
msgid "
|
| 621 |
msgstr ""
|
| 622 |
|
| 623 |
-
#:
|
| 624 |
-
msgid "
|
| 625 |
msgstr ""
|
| 626 |
|
| 627 |
-
#:
|
| 628 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
-
#:
|
| 632 |
-
msgid "
|
| 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
|
