はじまりの大地
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Catalan language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Albert Gasset Romo <albert.gasset@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Pàgina";
|
||||
$lang["vector_discussion"] = "Discussió";
|
||||
$lang["vector_read"] = "Llegeix";
|
||||
$lang["vector_edit"] = "Edita";
|
||||
$lang["vector_create"] = "Crea";
|
||||
$lang["vector_userpage"] = "Pàgina d'usuari";
|
||||
$lang["vector_specialpage"] = "Pàgines especials";
|
||||
$lang["vector_mytalk"] = "Discussió";
|
||||
$lang["vector_exportodt"] = "Exporta a ODT";
|
||||
$lang["vector_exportpdf"] = "Exporta a PDF";
|
||||
$lang["vector_subscribens"] = "Subscriu als canvis de l'espai"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Cancel·la subscripció a l'espai"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Llengües";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navegació";
|
||||
$lang["vector_toolbox"] = "Eines";
|
||||
$lang["vector_exportbox"] = "Exportació";
|
||||
$lang["vector_qrcodebox"] = "Codi QR";
|
||||
$lang["vector_inotherlanguages"] = "Llengües";
|
||||
$lang["vector_printexport"] = "Exportació";
|
||||
$lang["vector_personnaltools"] = "Eines personals";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Vés";
|
||||
$lang["vector_btn_search"] = "Cerca";
|
||||
$lang["vector_btn_search_title"] = "Cerca aquest text";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Versió per a impressió";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Baixa en format ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Baixa en format PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Què hi enllaça";
|
||||
$lang["vector_toolbxdef_upload"] = "Gestor de fitxers";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Mapa del lloc";
|
||||
$lang["vector_toolboxdef_permanent"] = "Enllaç permanent";
|
||||
$lang["vector_toolboxdef_cite"] = "Cita aquesta pàgina";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "Codi QR";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "generat per a la pàgina actual";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "Pàgina actual en codi QR (per accedir fàcilment des de mòbils)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Detalls bibliogràfics per a";
|
||||
$lang["vector_cite_pagename"] = "Nom de la pàgina";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Editorial";
|
||||
$lang["vector_cite_dateofrev"] = "Data d'aquesta revisió";
|
||||
$lang["vector_cite_dateretrieved"] = "Data de recuperació";
|
||||
$lang["vector_cite_permurl"] = "URL permanent";
|
||||
$lang["vector_cite_pageversionid"] = "ID de la versió de la pàgina";
|
||||
$lang["vector_cite_citationstyles"] = "Estils de cita per a";
|
||||
$lang["vector_cite_checkstandards"] = "Si us plau, recordeu de comprar el vostre manual d'estil, guia de normes o directrius de l'instructor per a la sintaxi exacta per a les vostres necessitats.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Si feu servir el paquet de LaTeX url (\usepackage{url} en algun lloc del preàmbul), que tendeix a donar un format més agradable a les adreces web, potser preferiu el següent";
|
||||
$lang["vector_cite_retrieved"] = "Recuperat";
|
||||
$lang["vector_cite_from"] = "de";
|
||||
$lang["vector_cite_in"] = "A";
|
||||
$lang["vector_cite_accessed"] = "Accecit";
|
||||
$lang["vector_cite_cited"] = "Citat";
|
||||
$lang["vector_cite_lastvisited"] = "Visitat";
|
||||
$lang["vector_cite_availableat"] = "Disponible a";
|
||||
$lang["vector_cite_discussionpages"] = "Pàgines de discussió de la DokuWiki";
|
||||
$lang["vector_cite_markup"] = "Etiquetage";
|
||||
$lang["vector_cite_result"] = "Resultat";
|
||||
$lang["vector_cite_thisversion"] = "aquesta versió";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Cerca";
|
||||
$lang["vector_accessdenied"] = "Accés denegat";
|
||||
$lang["vector_fillplaceholder"] = "Si us plau, ompliu aquest text variable";
|
||||
$lang["vector_donate"] = "Fes una donació";
|
||||
$lang["vector_mdtemplatefordw"] = "Plantilla vector per a DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Canvis recents";
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Catalan language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Albert Gasset Romo <albert.gasset@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Habilita les pàgines d'usuari";
|
||||
$lang["vector_userpage_ns"] = "Espai arrel de les pàgines d'usauri";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Habilita les discussions";
|
||||
$lang["vector_discuss_ns"] = "Espai arrel de les discussions";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Mostra l'avís del lloc";
|
||||
$lang["vector_sitenotice_location"] = "Pàgina de l'avís del lloc";
|
||||
$lang["vector_sitenotice_translate"] = "Utilitza l'avís del lloc traduït si el <a href=\"https://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br />La pàgina de l'avís del lloc traduït és [valor de 'vector_sitenotice_location']_[icodi llengüa ISO] (per exemple. ':wiki:site_notice_de').";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Mostra la navegació";
|
||||
$lang["vector_navigation_location"] = "Pàgina de la navegació";
|
||||
$lang["vector_navigation_translate"] = "Utilitza la navegació traduïda si el <a href=\"https://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br/>La pàgina de navegació traduïda és [valor de 'vector_navigation_location']_[codi de llengüa ISO] (per exemple, ':wiki:navigation_de').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Mostra el quadre 'imprimeix/exporta'";
|
||||
$lang["vector_exportbox_default"] = "Quadre 'imprimeix/exporta' predeterminat";
|
||||
$lang["vector_exportbox_location"] = "Pàgina del quadre 'imprimeix/exporta'";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Mostra el quadre d'eines";
|
||||
$lang["vector_toolbox_default"] = "Quadre d'eines predeterminat";
|
||||
$lang["vector_toolbox_location"] = "Pàgina del quadre d'eines";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "Mostra el codi QR de la pàgina actual (per a transferir fàcilment l'URL a navegadors mòbils)";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Mostra l'avís de drets d'autor";
|
||||
$lang["vector_copyright_default"] = "Avís de drets d'autor predeterminat";
|
||||
$lang["vector_copyright_location"] = "Pàgina de l'avís de drets d'autor";
|
||||
$lang["vector_copyright_translate"] = "Utilitza l'avís de drets d'autor traduït si el <a href=\"https://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br />La pàgina de l'avís de drets d'autor traduït és [valor de 'vector_copyright_location']_[icodi llengüa ISO] (per exemple. ':wiki:copyright_de').";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Mostra l'enllaç/botó de donacions";
|
||||
$lang["vector_donate_url"] = "URL de donacions:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Posició de la taule de continguts";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Posició del camí de navegació";
|
||||
$lang["vector_youarehere_position"] = "Posició de la navegació 'sou aquí'";
|
||||
$lang["vector_cite_author"] = "Nom de l'autor a 'cita aquest article'";
|
||||
$lang["vector_loaduserjs"] = "Carrega 'vector/user/user.js'";
|
||||
$lang["vector_closedwiki"] = "Wiki tancada (la majoria d'enllaços/pestanyes/quadres s'amaguen fins que l'usuari entri)";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Czech language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author David Roesel <http://david.roesel.cz/>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Článek";
|
||||
$lang["vector_discussion"] = "Diskuse";
|
||||
$lang["vector_read"] = "Číst";
|
||||
$lang["vector_edit"] = "Upravit";
|
||||
$lang["vector_create"] = "Vytvořit";
|
||||
$lang["vector_userpage"] = "Uživatelská stránka";
|
||||
$lang["vector_specialpage"] = "Speciální stránky";
|
||||
$lang["vector_mytalk"] = "Můj pokec";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "Odebírat NS změny"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Přestat odebírat NS změny"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Jazyky";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigace";
|
||||
$lang["vector_toolbox"] = "Nástroje";
|
||||
$lang["vector_exportbox"] = "Tisk/export";
|
||||
$lang["vector_inotherlanguages"] = "Jazyky";
|
||||
$lang["vector_printexport"] = "Vytisknout/exportovat";
|
||||
$lang["vector_personnaltools"] = "Osobní nástroje";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Přejít";
|
||||
$lang["vector_btn_search"] = "Hledat";
|
||||
$lang["vector_btn_search_title"] = "Hledat tento text";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Verze k tisku";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Stáhnout jako ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Stáhnout jako PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Stránky odkazující sem";
|
||||
$lang["vector_toolbxdef_upload"] = "Nahrát soubor";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Hlavní stránka";
|
||||
$lang["vector_toolboxdef_permanent"] = "Trvalý odkaz";
|
||||
$lang["vector_toolboxdef_cite"] = "Citovat tuto stránku";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografické údaje";
|
||||
$lang["vector_cite_pagename"] = "Název stránky";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Vydavatel";
|
||||
$lang["vector_cite_dateofrev"] = "Datum této verze";
|
||||
$lang["vector_cite_dateretrieved"] = "Vytažené datum"; //not sure about the actual implementation
|
||||
$lang["vector_cite_permurl"] = "Trvalý odkaz";
|
||||
$lang["vector_cite_pageversionid"] = "ID verze stránky";
|
||||
$lang["vector_cite_citationstyles"] = "Styly citací pro";
|
||||
$lang["vector_cite_checkstandards"] = "Nezpomeňte si zkontrolovat, který z následujících stylů přesně odpovídá formátu, vyžadovanému vaším zadávajícím/odborným vedoucím.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Při používání odkazů na LaTeX balíky (\usepackage{url} někde v preambuli), které často dávají hezčí adresy, by se vám mohlo hodit následující";
|
||||
$lang["vector_cite_retrieved"] = "Vytaženo";
|
||||
$lang["vector_cite_from"] = "od";
|
||||
$lang["vector_cite_in"] = "V";
|
||||
$lang["vector_cite_accessed"] = "Zobrazeno"; //or "Přistoupeno k", but a complete reformulation would be necessary
|
||||
$lang["vector_cite_cited"] = "Citováno";
|
||||
$lang["vector_cite_lastvisited"] = "Naposledy navštíveno";
|
||||
$lang["vector_cite_availableat"] = "Dostupné na";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki diskuse";
|
||||
$lang["vector_cite_markup"] = "Markup"; //no suitable translation as far as I know, perhaps "Značkovací jazyk"/"Značkování"
|
||||
$lang["vector_cite_result"] = "Výsledek";
|
||||
$lang["vector_cite_thisversion"] = "tato verze";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Hledat";
|
||||
$lang["vector_accessdenied"] = "Nepovolený přístup";
|
||||
$lang["vector_fillplaceholder"] = "Vyplňte prosím toto umístění";
|
||||
$lang["vector_donate"] = "Přispět";
|
||||
$lang["vector_mdtemplatefordw"] = "téma vector pro systém DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Poslední změny";
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Czech language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author David Roesel <http://david.roesel.cz/>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Používat uživatelské stránky?";
|
||||
$lang["vector_userpage_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Používat diskusní taby/stránky?";
|
||||
$lang["vector_discuss_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář pro diskuse:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Zobrazovat globální upozornění?";
|
||||
$lang["vector_sitenotice_location"] = "Pokud ano, použít jako globální upozornění tuto stránku:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Zobrazovat navigaci?";
|
||||
$lang["vector_navigation_location"] = "Pokud ano, použít jako navigaci následující stránku:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Zobrazovat 'tisk/export' sekci?";
|
||||
$lang["vector_exportbox_default"] = "Pokud ano, používat původní 'tisk/export' sekci?";
|
||||
$lang["vector_exportbox_location"] = "Pokud ne tu původní, potom používat následující stránku jako 'tisk/export' sekci:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Zobrazovat nástroje?";
|
||||
$lang["vector_toolbox_default"] = "Pokud ano, používat původní nástroje?";
|
||||
$lang["vector_toolbox_location"] = "Pokud ne ty původní, potom používat následující stránku jako nástroje:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Zobrazovat informace o autorských právech?";
|
||||
$lang["vector_copyright_default"] = "Pokud ano, používat původní informace o autorských právech?";
|
||||
$lang["vector_copyright_location"] = "Pokud ne ty původní, potom používat následující stránku jako informace o autorských právech:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Zobrazovat možnost \"Přispět\"?";
|
||||
$lang["vector_donate_url"] = "Pokud ne ten původní, potom tento odkaz:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Pozice obsahu:";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_mediamanager_embedded"] = "Zobrazovat mediamanger vložený v běžném layoutu?";
|
||||
$lang["vector_breadcrumbs_position"] = "Pozice aktuální cesty (breadcrumbs) (je-li tato funkce povolena):";
|
||||
$lang["vector_youarehere_position"] = "Pozice navigace 'Jste tady' (je-li tato funkce povolena):";
|
||||
$lang["vector_cite_author"] = "Jméno autora při použití 'Citovat tento článek':";
|
||||
$lang["vector_loaduserjs"] = "Nahrávat 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "Je wiki zavřená (většina odkazů/tabů/boxů nebude vidět do přihlášení)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* German language (informal, "Du") for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Artikel";
|
||||
$lang["vector_discussion"] = "Diskussion";
|
||||
$lang["vector_read"] = "Lesen";
|
||||
$lang["vector_edit"] = "Bearbeiten";
|
||||
$lang["vector_create"] = "Erstellen";
|
||||
$lang["vector_userpage"] = "Benutzerseite";
|
||||
$lang["vector_specialpage"] = "Spezialseiten";
|
||||
$lang["vector_mytalk"] = "Meine Diskussion";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "NR-Änderungen abbonieren"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "NR-Änderungen abbestellen"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "In anderen Sprachen";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigation";
|
||||
$lang["vector_toolbox"] = "Werkzeuge";
|
||||
$lang["vector_exportbox"] = "Drucken/exportieren";
|
||||
$lang["vector_qrcodebox"] = "QR-Code";
|
||||
$lang["vector_inotherlanguages"] = "In anderen Sprachen";
|
||||
$lang["vector_printexport"] = "Drucken/exportieren";
|
||||
$lang["vector_personnaltools"] = "Eigene Werkzeuge";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Los";
|
||||
$lang["vector_btn_search"] = "Suche";
|
||||
$lang["vector_btn_search_title"] = "Suche nach Seiten, die diesen Text enthalten";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Druckversion";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Als ODT herunterladen";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Als PDF herunterladen";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Links auf diese Seite";
|
||||
$lang["vector_toolbxdef_upload"] = "Hochladen";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Seitenindex";
|
||||
$lang["vector_toolboxdef_permanent"] = "Permanenter link";
|
||||
$lang["vector_toolboxdef_cite"] = "Seite zitieren";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "QR-Code";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "erstellt für aktuelle Seite";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "Aktuelle Seite als QR Code (scannen für einfachen, mobilen Zugriff)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografische Details für";
|
||||
$lang["vector_cite_pagename"] = "Seitenname";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Herausgeber";
|
||||
$lang["vector_cite_dateofrev"] = "Datum dieser Revision";
|
||||
$lang["vector_cite_dateretrieved"] = "Datum des Abrufs";
|
||||
$lang["vector_cite_permurl"] = "Permanente URL";
|
||||
$lang["vector_cite_pageversionid"] = "Seiten-Versions-ID";
|
||||
$lang["vector_cite_citationstyles"] = "Zitatstile für";
|
||||
$lang["vector_cite_checkstandards"] = "Denke bitte daran die Angaben mit den dir vorliegenden Vorgaben oder den Vorgaben deines Professors zu vergleichen um die exakte Syntax, welche die Anforderungen erfüllt, zu erhalten.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Bei Benutzung der LaTeX-Paketes „url“ (\usepackage{url} im Bereich der Einleitung), welches eine schöner formatierte Internetadresse ausgibt, oder „hyperref“ (\usepackage{hyperref}, nur bei Erzeugung von PDF-Dokumenten), welches diese zusätzlich noch verlinkt, kann die folgende Ausgabe genommen werden";
|
||||
$lang["vector_cite_retrieved"] = "Abgefragt";
|
||||
$lang["vector_cite_from"] = "von";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_accessed"] = "Abgerufen";
|
||||
$lang["vector_cite_cited"] = "Zitiert";
|
||||
$lang["vector_cite_lastvisited"] = "Zuletzt besucht";
|
||||
$lang["vector_cite_availableat"] = "Verfügbar auf";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki Diskussionsseiten";
|
||||
$lang["vector_cite_markup"] = "Markup";
|
||||
$lang["vector_cite_result"] = "Ergebnis";
|
||||
$lang["vector_cite_thisversion"] = "Diese Version";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Suche";
|
||||
$lang["vector_accessdenied"] = "Zugriff verweigert";
|
||||
$lang["vector_fillplaceholder"] = "Diesen Platzhalter bitte füllen oder deaktivieren";
|
||||
$lang["vector_donate"] = "Spenden";
|
||||
$lang["vector_mdtemplatefordw"] = "vector-Template für DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Neuste Änderungen";
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* German language (informal, "Du") for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Benutzerseiten benutzen?";
|
||||
$lang["vector_userpage_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Benutzerseiten nutzen:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Diskussions-Tabs/Seiten benutzen?";
|
||||
$lang["vector_discuss_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Diskussionen nutzen:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Seitenübergreifenden Hinweis einblenden?";
|
||||
$lang["vector_sitenotice_location"] = "Falls ja, folgende wiki-Seite als Hinweis verwenden:";
|
||||
$lang["vector_sitenotice_translate"] = "Falls ja und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Seiten-Hinweis(e) laden?<br />Die wiki-Seite des/der übersetzten Seiten-Hinweis(e) lautet [Wert von 'vector_sitenotice_location']_[iso-sprach-code] (z.B. ':wiki:site_notice_en').";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Navigation anzeigen?";
|
||||
$lang["vector_navigation_location"] = "Falls ja, folgende wiki-Seite als Navigation verwenden:";
|
||||
$lang["vector_navigation_translate"] = "Falls ja und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Navigation laden?<br />Die wiki-Seite der übersetzten Navigation(en) lautet [Wert von 'vector_navigation_location']_[iso-sprach-code] (z.B. ':wiki:navigation_en').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "'Drucken/exportieren'-Box anzeigen?";
|
||||
$lang["vector_exportbox_default"] = "Falls ja, Standard-'Drucken/exportieren'-Box nutzen?";
|
||||
$lang["vector_exportbox_location"] = "Falls nicht die Standard-'Drucken/exportieren'-Box, folgende wiki-Seite als Toolbox verwenden:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Toolbox/Werkzeuge anzeigen?";
|
||||
$lang["vector_toolbox_default"] = "Falls ja, Standard-Toolbox nutzen?";
|
||||
$lang["vector_toolbox_location"] = "Falls nicht die Standard-Toolbox, folgende wiki-Seite als Toolbox verwenden:";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "Box mit QR-Code der aktuellen Wiki-Seiten-URL anzeigen (für einfache Übertragung der URL auf Mobiltelefone)?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Copyright-Hinweis einblenden?";
|
||||
$lang["vector_copyright_default"] = "Falls ja, Standard-Copyright-Hinweis nutzen?";
|
||||
$lang["vector_copyright_location"] = "Falls nicht den Standard-Copyright-Hinweis, folgende wiki-Seite als Copyright-Hinweis verwenden:";
|
||||
$lang["vector_copyright_translate"] = "Falls nicht den Standard-Copyright-Hinweis und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Copyright-Hinweis(e) laden?<br />Die wiki-Seite des/der übersetzten Copyright-Hinweis(e) lautet [Wert von 'vector_copyright_location']_[iso-sprach-code] (z.B. ':wiki:copyright_en').";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "'Spenden'-Link/button anzeigen?";
|
||||
$lang["vector_donate_url"] = "Folgende URL als Spendenziel benutzen:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Position des Inhaltsverzeichnisses";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Position der breadcrumb-Navigation (sofern aktiviert):";
|
||||
$lang["vector_youarehere_position"] = "Position der 'Sie befinden sich hier'-Navigation (sofern aktiviert):";
|
||||
$lang["vector_cite_author"] = "Zu nutzender Autorenname in 'Artikel zitieren':";
|
||||
$lang["vector_loaduserjs"] = "Datei 'vector/user/user.js' laden?";
|
||||
$lang["vector_closedwiki"] = "Nicht-öffentliches Wiki (die meisten Links/Tabs/Boxen werden versteckt bis man sich einloggt)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* German language (formal, "Sie") for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Artikel";
|
||||
$lang["vector_discussion"] = "Diskussion";
|
||||
$lang["vector_read"] = "Lesen";
|
||||
$lang["vector_edit"] = "Bearbeiten";
|
||||
$lang["vector_create"] = "Erstellen";
|
||||
$lang["vector_userpage"] = "Benutzerseite";
|
||||
$lang["vector_specialpage"] = "Spezialseiten";
|
||||
$lang["vector_mytalk"] = "Meine Diskussion";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "NR-Änderungen abbonieren"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "NR-Änderungen abbestellen"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "In anderen Sprachen";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigation";
|
||||
$lang["vector_toolbox"] = "Werkzeuge";
|
||||
$lang["vector_exportbox"] = "Drucken/exportieren";
|
||||
$lang["vector_qrcodebox"] = "QR-Code";
|
||||
$lang["vector_inotherlanguages"] = "In anderen Sprachen";
|
||||
$lang["vector_printexport"] = "Drucken/exportieren";
|
||||
$lang["vector_personnaltools"] = "Eigene Werkzeuge";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Los";
|
||||
$lang["vector_btn_search"] = "Suche";
|
||||
$lang["vector_btn_search_title"] = "Suche nach Seiten, die diesen Text enthalten";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Druckversion";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Als ODT herunterladen";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Als PDF herunterladen";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Links auf diese Seite";
|
||||
$lang["vector_toolbxdef_upload"] = "Hochladen";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Seitenindex";
|
||||
$lang["vector_toolboxdef_permanent"] = "Permanenter link";
|
||||
$lang["vector_toolboxdef_cite"] = "Seite zitieren";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "QR-Code";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "erstellt für aktuelle Seite";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "Aktuelle Seite als QR Code (scannen für einfachen, mobilen Zugriff)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografische Details für";
|
||||
$lang["vector_cite_pagename"] = "Seitenname";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Herausgeber";
|
||||
$lang["vector_cite_dateofrev"] = "Datum dieser Revision";
|
||||
$lang["vector_cite_dateretrieved"] = "Datum des Abrufs";
|
||||
$lang["vector_cite_permurl"] = "Permanente URL";
|
||||
$lang["vector_cite_pageversionid"] = "Seiten-Versions-ID";
|
||||
$lang["vector_cite_citationstyles"] = "Zitatstile für";
|
||||
$lang["vector_cite_checkstandards"] = "Denken Sie bitte daran die Angaben mit den Ihnen vorliegenden Vorgaben oder den Vorgaben Ihres Professors zu vergleichen um die exakte Syntax, welche die Anforderungen erfüllt, zu erhalten.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Bei Benutzung der LaTeX-Paketes „url“ (\usepackage{url} im Bereich der Einleitung), welches eine schöner formatierte Internetadresse ausgibt, oder „hyperref“ (\usepackage{hyperref}, nur bei Erzeugung von PDF-Dokumenten), welches diese zusätzlich noch verlinkt, kann die folgende Ausgabe genommen werden";
|
||||
$lang["vector_cite_retrieved"] = "Abgefragt";
|
||||
$lang["vector_cite_from"] = "von";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_accessed"] = "Abgerufen";
|
||||
$lang["vector_cite_cited"] = "Zitiert";
|
||||
$lang["vector_cite_lastvisited"] = "Zuletzt besucht";
|
||||
$lang["vector_cite_availableat"] = "Verfügbar auf";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki Diskussionsseiten";
|
||||
$lang["vector_cite_markup"] = "Markup";
|
||||
$lang["vector_cite_result"] = "Ergebnis";
|
||||
$lang["vector_cite_thisversion"] = "Diese Version";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Suche";
|
||||
$lang["vector_accessdenied"] = "Zugriff verweigert";
|
||||
$lang["vector_fillplaceholder"] = "Diesen Platzhalter bitte füllen oder deaktivieren";
|
||||
$lang["vector_donate"] = "Spenden";
|
||||
$lang["vector_mdtemplatefordw"] = "vector-Template für DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Neuste Änderungen";
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* German language (formal, "Sie") for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Benutzerseiten benutzen?";
|
||||
$lang["vector_userpage_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Benutzerseiten nutzen:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Diskussions-Tabs/Seiten benutzen?";
|
||||
$lang["vector_discuss_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Diskussionen nutzen:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Seitenübergreifenden Hinweis einblenden?";
|
||||
$lang["vector_sitenotice_location"] = "Falls ja, folgende wiki-Seite als Hinweis verwenden:";
|
||||
$lang["vector_sitenotice_translate"] = "Falls ja und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Seiten-Hinweis(e) laden?<br />Die wiki-Seite des/der übersetzten Seiten-Hinweis(e) lautet [Wert von 'vector_sitenotice_location']_[iso-sprach-code] (z.B. ':wiki:site_notice_en').";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Navigation anzeigen?";
|
||||
$lang["vector_navigation_location"] = "Falls ja, folgende wiki-Seite als Navigation verwenden:";
|
||||
$lang["vector_navigation_translate"] = "Falls ja und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Navigation laden?<br />Die wiki-Seite der übersetzten Navigation(en) lautet [Wert von 'vector_navigation_location']_[iso-sprach-code] (z.B. ':wiki:navigation_en').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "'Drucken/exportieren'-Box anzeigen?";
|
||||
$lang["vector_exportbox_default"] = "Falls ja, Standard-'Drucken/exportieren'-Box nutzen?";
|
||||
$lang["vector_exportbox_location"] = "Falls nicht die Standard-'Drucken/exportieren'-Box, folgende wiki-Seite als Toolbox verwenden:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Toolbox/Werkzeuge anzeigen?";
|
||||
$lang["vector_toolbox_default"] = "Falls ja, Standard-Toolbox nutzen?";
|
||||
$lang["vector_toolbox_location"] = "Falls nicht die Standard-Toolbox, folgende wiki-Seite als Toolbox verwenden:";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "Box mit QR-Code der aktuellen Wiki-Seiten-URL anzeigen (für einfache Übertragung der URL auf Mobiltelefone)?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Copyright-Hinweis einblenden?";
|
||||
$lang["vector_copyright_default"] = "Falls ja, Standard-Copyright-Hinweis nutzen?";
|
||||
$lang["vector_copyright_location"] = "Falls nicht den Standard-Copyright-Hinweis, folgende wiki-Seite als Copyright-Hinweis verwenden:";
|
||||
$lang["vector_copyright_translate"] = "Falls nicht den Standard-Copyright-Hinweis und <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation-Plugin</a> verfügbar: sprachspezifische Copyright-Hinweis(e) laden?<br />Die wiki-Seite des/der übersetzten Copyright-Hinweis(e) lautet [Wert von 'vector_copyright_location']_[iso-sprach-code] (z.B. ':wiki:copyright_en').";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "'Spenden'-Link/button anzeigen?";
|
||||
$lang["vector_donate_url"] = "Folgende URL als Spendenziel benutzen:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Position des Inhaltsverzeichnisses";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Position der breadcrumb-Navigation (sofern aktiviert):";
|
||||
$lang["vector_youarehere_position"] = "Position der 'Sie befinden sich hier'-Navigation (sofern aktiviert):";
|
||||
$lang["vector_cite_author"] = "Zu nutzender Autorenname in 'Artikel zitieren':";
|
||||
$lang["vector_loaduserjs"] = "Datei 'vector/user/user.js' laden?";
|
||||
$lang["vector_closedwiki"] = "Nicht-öffentliches Wiki (die meisten Links/Tabs/Boxen werden versteckt bis man sich einloggt)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* English language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Article";
|
||||
$lang["vector_discussion"] = "Discussion";
|
||||
$lang["vector_read"] = "Read";
|
||||
$lang["vector_edit"] = "Edit";
|
||||
$lang["vector_create"] = "Create";
|
||||
$lang["vector_userpage"] = "User Page";
|
||||
$lang["vector_specialpage"] = "Special Pages";
|
||||
$lang["vector_mytalk"] = "My Talk";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Languages";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigation";
|
||||
$lang["vector_toolbox"] = "Tools";
|
||||
$lang["vector_exportbox"] = "Print/export";
|
||||
$lang["vector_qrcodebox"] = "QR Code";
|
||||
$lang["vector_inotherlanguages"] = "Languages";
|
||||
$lang["vector_printexport"] = "Print/export";
|
||||
$lang["vector_personnaltools"] = "Personal Tools";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Go";
|
||||
$lang["vector_btn_search"] = "Search";
|
||||
$lang["vector_btn_search_title"] = "Search for this text";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Printable version";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Download as ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Download as PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "What links here";
|
||||
$lang["vector_toolbxdef_upload"] = "Upload file";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Sitemap";
|
||||
$lang["vector_toolboxdef_permanent"] = "Permanent link";
|
||||
$lang["vector_toolboxdef_cite"] = "Cite this page";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "QR Code";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "generated for current page";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliographic details for";
|
||||
$lang["vector_cite_pagename"] = "Page name";
|
||||
$lang["vector_cite_author"] = "Author";
|
||||
$lang["vector_cite_publisher"] = "Publisher";
|
||||
$lang["vector_cite_dateofrev"] = "Date of this revision";
|
||||
$lang["vector_cite_dateretrieved"] = "Date retrieved";
|
||||
$lang["vector_cite_permurl"] = "Permanent URL";
|
||||
$lang["vector_cite_pageversionid"] = "Page Version ID";
|
||||
$lang["vector_cite_citationstyles"] = "Citation styles for";
|
||||
$lang["vector_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "When using the LaTeX package url (\usepackage{url} somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred";
|
||||
$lang["vector_cite_retrieved"] = "Retrieved";
|
||||
$lang["vector_cite_from"] = "from";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_accessed"] = "Accessed";
|
||||
$lang["vector_cite_cited"] = "Cited";
|
||||
$lang["vector_cite_lastvisited"] = "Last visited";
|
||||
$lang["vector_cite_availableat"] = "Available at";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki talk pages";
|
||||
$lang["vector_cite_markup"] = "Markup";
|
||||
$lang["vector_cite_result"] = "Result";
|
||||
$lang["vector_cite_thisversion"] = "this version";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Search";
|
||||
$lang["vector_accessdenied"] = "Access denied";
|
||||
$lang["vector_fillplaceholder"] = "Please fill or disable this placeholder";
|
||||
$lang["vector_donate"] = "Donate";
|
||||
$lang["vector_mdtemplatefordw"] = "vector template for DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Recent changes";
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* English language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Use User pages?";
|
||||
$lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Use discussion tabs/sites?";
|
||||
$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Show site wide notice?";
|
||||
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
|
||||
$lang["vector_sitenotice_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific site wide notice?<br />The wiki page of the translated site notice(s) is [value of 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Show navigation?";
|
||||
$lang["vector_navigation_location"] = "If yes, use following wiki page as navigation:";
|
||||
$lang["vector_navigation_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific navigation?<br />The wiki page of the translated navigation(s) is [value of 'vector_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Show 'print/export' box?";
|
||||
$lang["vector_exportbox_default"] = "If yes, use default 'print/export' box?";
|
||||
$lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Show tools?";
|
||||
$lang["vector_toolbox_default"] = "If yes, use default tools?";
|
||||
$lang["vector_toolbox_location"] = "If not default, use following wiki page as tools location:";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Show copyright notice?";
|
||||
$lang["vector_copyright_default"] = "If yes, use default copyright notice?";
|
||||
$lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:";
|
||||
$lang["vector_copyright_translate"] = "If not default and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific copyright notice?<br />The wiki page of the translated copyright notice(s) is [value of 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Show donation link/button?";
|
||||
$lang["vector_donate_url"] = "Use following URL for donations:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Table of contents (TOC) position";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):";
|
||||
$lang["vector_youarehere_position"] = "Position of 'You are here' navigation (if enabled):";
|
||||
$lang["vector_cite_author"] = "Author name in 'Cite this Article':";
|
||||
$lang["vector_loaduserjs"] = "Load 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Spanish language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Jesús Muñoz Martínez <kisumum@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Artículo";
|
||||
$lang["vector_discussion"] = "Discusión";
|
||||
$lang["vector_read"] = "Leer";
|
||||
$lang["vector_edit"] = "Editar";
|
||||
$lang["vector_create"] = "Crear";
|
||||
$lang["vector_userpage"] = "Página de Usuario";
|
||||
$lang["vector_specialpage"] = "Páginas Especiales";
|
||||
$lang["vector_mytalk"] = "Mi Discurso";
|
||||
$lang["vector_exportodt"] = "Exportar: ODT";
|
||||
$lang["vector_exportpdf"] = "Exportar: PDF";
|
||||
$lang["vector_subscribens"] = "Suscribirse a NS Cambios"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Borrarse de NS Cambios"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Idiomas";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navegación";
|
||||
$lang["vector_toolbox"] = "Herramientas";
|
||||
$lang["vector_exportbox"] = "Imprimir/exportar";
|
||||
$lang["vector_inotherlanguages"] = "Idiomas";
|
||||
$lang["vector_printexport"] = "Imprimir/exportar";
|
||||
$lang["vector_personnaltools"] = "Herramientas Personales";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Ir";
|
||||
$lang["vector_btn_search"] = "Buscar";
|
||||
$lang["vector_btn_search_title"] = "Buscar este texto";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Versión imprimible";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Descargar como ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Descargar como PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Qué enlaza aquí";
|
||||
$lang["vector_toolbxdef_upload"] = "Cargar archivo";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Índice";
|
||||
$lang["vector_toolboxdef_permanent"] = "Inicio";
|
||||
$lang["vector_toolboxdef_cite"] = "Citar esta página";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Detalles bibliográficos de";
|
||||
$lang["vector_cite_pagename"] = "Nombre de la página";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Editor";
|
||||
$lang["vector_cite_dateofrev"] = "Día de esta revisión";
|
||||
$lang["vector_cite_dateretrieved"] = "Día recuperado";
|
||||
$lang["vector_cite_permurl"] = "URL Permanente";
|
||||
$lang["vector_cite_pageversionid"] = "ID de la Versión de la Página";
|
||||
$lang["vector_cite_citationstyles"] = "Estilos de cita para";
|
||||
$lang["vector_cite_checkstandards"] = "Por favor recuerda consultar el manual de estilo, guías de estándares o las directrices del instructor para una sintáxis exacta para satisfacer sus necesidades.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Cuando uses el paquete LaTeX url (\usepackage{url} en algún sitio en el preámbulo),tiende a dar el formato para las direcciones web, lo siguiente pueden ser preferido";
|
||||
$lang["vector_cite_retrieved"] = "Recuperado";
|
||||
$lang["vector_cite_from"] = "de";
|
||||
$lang["vector_cite_in"] = "En";
|
||||
$lang["vector_cite_accessed"] = "Accedido";
|
||||
$lang["vector_cite_cited"] = "Citado";
|
||||
$lang["vector_cite_lastvisited"] = "Último visitado";
|
||||
$lang["vector_cite_availableat"] = "Disponible en";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki páginas de charla";
|
||||
$lang["vector_cite_markup"] = "Margen";
|
||||
$lang["vector_cite_result"] = "Resultado";
|
||||
$lang["vector_cite_thisversion"] = "esta versión";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Buscar";
|
||||
$lang["vector_accessdenied"] = "Acceso denegado";
|
||||
$lang["vector_fillplaceholder"] = "Por favor rellena este marcador";
|
||||
$lang["vector_donate"] = "Donaciones";
|
||||
$lang["vector_mdtemplatefordw"] = "Plantilla vector para DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Cambios recientes";
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Spanish language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Jesús Muñoz Martínez <kisumum@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Usar páginas de Usuario?";
|
||||
$lang["vector_userpage_ns"] = "Sí, usa la siguiente ':namespace:' como raíz para las páginas de usuario:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "¿Usar pestañas/sitios de discusión?";
|
||||
$lang["vector_discuss_ns"] = "Sí, usa la siguiente ':namespace:' como raíz para las discusiones:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Show site wide notice?";
|
||||
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "¿Mostrar navegación?";
|
||||
$lang["vector_navigation_location"] = "Sí, usar la siguiente página de la wiki como navegación:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "¿Mostrar la caja 'imprimir/exportar'?";
|
||||
$lang["vector_exportbox_default"] = "Sí, usar la caja predeterminada'imprimir/exportar' por defecto";
|
||||
$lang["vector_exportbox_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como localización de la caja'imprimir/exportar':";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "¿Mostrar herramientas?";
|
||||
$lang["vector_toolbox_default"] = "Si, usar herramientas predeterminadas";
|
||||
$lang["vector_toolbox_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como localización de las herramientas:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "¿Mostrar aviso de derechos de autor?";
|
||||
$lang["vector_copyright_default"] = "Sí, usar aviso de derechos de autor predeterminado";
|
||||
$lang["vector_copyright_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como aviso de derechos de autor:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Mostrar enlace/botón de donación?";
|
||||
$lang["vector_donate_url"] = "si no usar predeterminado, usar la siguiente URL para las donaciones:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Posición de la Tabla de Contenidos";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Posición de breadcrumb en navegación (si habilitada):";
|
||||
$lang["vector_youarehere_position"] = "Posicion de 'Tu estás aquí' en navegación (si habilitada):";
|
||||
$lang["vector_cite_author"] = "Nombre del author en 'Cita este Artículo':";
|
||||
$lang["vector_loaduserjs"] = "¿Cargar 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "¿Wiki cerrada?.(la mayoría de enlaces/pestañas/cajas están escondidas hasta que el usuario se conecta)";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Basque language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ander
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Artikulua";
|
||||
$lang["vector_discussion"] = "Eztabaida";
|
||||
$lang["vector_read"] = "Irakurri";
|
||||
$lang["vector_edit"] = "Aldatu";
|
||||
$lang["vector_create"] = "Sortu";
|
||||
$lang["vector_userpage"] = "Erabiltzaile Orria";
|
||||
$lang["vector_specialpage"] = "Orrialde Bereziak";
|
||||
$lang["vector_mytalk"] = "Nire Eztabaida";
|
||||
$lang["vector_exportodt"] = "Esportatu: ODT";
|
||||
$lang["vector_exportpdf"] = "Esportatu: PDF";
|
||||
$lang["vector_subscribens"] = "Harpidetu NS aldaketetara"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Kendu NS aldaketetako harpidetza"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Hizkuntzak";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Nabigazioa";
|
||||
$lang["vector_toolbox"] = "Tresnak";
|
||||
$lang["vector_exportbox"] = "Imprimatu/esportatu";
|
||||
$lang["vector_inotherlanguages"] = "Hizkuntzak";
|
||||
$lang["vector_printexport"] = "Imprimatu/esportatu";
|
||||
$lang["vector_personnaltools"] = "Tresna pertsonalak";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Joan";
|
||||
$lang["vector_btn_search"] = "Bilatu";
|
||||
$lang["vector_btn_search_title"] = "Bilatu testu hau";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Imprimatzeko bertsioa";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Jaitsi ODT formatuan";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Jaitsi PDF formatuan";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Orri honetaranzko lotura dutenak";
|
||||
$lang["vector_toolbxdef_upload"] = "Fitxategia igo";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Gunearen aurkibidea";
|
||||
$lang["vector_toolboxdef_permanent"] = "Lotura iraunkorra";
|
||||
$lang["vector_toolboxdef_cite"] = "Sortu orrialde hau";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografiko xehetasunak";
|
||||
$lang["vector_cite_pagename"] = "Orrialde izena";
|
||||
$lang["vector_cite_author"] = "Autorea";
|
||||
$lang["vector_cite_publisher"] = "Argitaratzailea";
|
||||
$lang["vector_cite_dateofrev"] = "Berrikuspen honen data";
|
||||
$lang["vector_cite_dateretrieved"] = "Data berreskuratuta";
|
||||
$lang["vector_cite_permurl"] = "URL iraunkorra";
|
||||
$lang["vector_cite_pageversionid"] = "Orriaren bertsioaren ID-a";
|
||||
$lang["vector_cite_citationstyles"] = "Aipatzeko estiloak";
|
||||
$lang["vector_cite_checkstandards"] = "Gogoan izan zure estilo eskuliburua egiaztatzeao, arau gida edo irakaslearen jarraibideak sintaxia zehatza dela eta zure beharretara egokitzea lortzeko.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "LaTeX pakete url-a erabiltzean (\ usepackage {url} hitzaurrean nonbait), hobeto formateatutako web helbideak emateko joera duenez, gogokoagoa izan daiteke";
|
||||
$lang["vector_cite_retrieved"] = "Berreskuratuta";
|
||||
$lang["vector_cite_from"] = "-tik";
|
||||
$lang["vector_cite_in"] = "-an";
|
||||
$lang["vector_cite_accessed"] = "Atzituta";
|
||||
$lang["vector_cite_cited"] = "Aipatuta";
|
||||
$lang["vector_cite_lastvisited"] = "Azken bisita";
|
||||
$lang["vector_cite_availableat"] = "Eskuragarri";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki-ko hitz egiteko orrialdeak";
|
||||
$lang["vector_cite_markup"] = "Markatu";
|
||||
$lang["vector_cite_result"] = "Emaitza";
|
||||
$lang["vector_cite_thisversion"] = "bertsio hau";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Bilatu";
|
||||
$lang["vector_accessdenied"] = "Sarbidea ukatuta";
|
||||
$lang["vector_fillplaceholder"] = "Mesedez bete hauek";
|
||||
$lang["vector_donate"] = "Dohaintza egin";
|
||||
$lang["vector_mdtemplatefordw"] = "DokuWikirako Vector txantiloia";
|
||||
$lang["vector_recentchanges"] = "Aldaketa berriak";
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Basque language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ander
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Erabili erabiltzaile orrialdeak?";
|
||||
$lang["vector_userpage_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' erabiltzaile orrialdeen erro bezala:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Erabili eztabaida fitxak/lekuak?";
|
||||
$lang["vector_discuss_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' eztabaiden orrialdeen erro bezala:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Erakutsi lekuaren oharrak?";
|
||||
$lang["vector_sitenotice_location"] = "Bai bada, erabili hurrengo wiki orrialdea lekuaren oharrenfako:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Erakutsi Nabigazioa?";
|
||||
$lang["vector_navigation_location"] = "Bai bada, erabili hurrengo wiki orria nabigaziorako:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Erakutsi 'imprimatu/esportatu' koadroa?";
|
||||
$lang["vector_exportbox_default"] = "Bai bada, erabili lehenetsitako 'imprimatu/esportatu' koadroa?";
|
||||
$lang["vector_exportbox_location"] = "Ez bada lehenetsia, erabili hurrengo orrialdea 'inprimatu/esportatu' koadroaren kokapen bezala:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Erakutsi tresna koadroa?";
|
||||
$lang["vector_toolbox_default"] = "Bai bada, lehenetsitako tresna koadroa erabili?";
|
||||
$lang["vector_toolbox_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea tresna koadroaren kokapen bezala:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Erakutsi copyright oharra?";
|
||||
$lang["vector_copyright_default"] = "Bai bada, erabili lehenetsitako copyright oharra?";
|
||||
$lang["vector_copyright_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea copyright oharrarendako:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Erakutsi dohaintza lotura/botoia?";
|
||||
$lang["vector_donate_url"] = "Ez bada lehenetsia, erabili hurrengo URL-a dohaintzetarako:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Edukien taularen (TOC) posizioa";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Breadcrumb-aren posizioa nabigazioan (gaituta badago):";
|
||||
$lang["vector_youarehere_position"] = "'Hemen zaude'-ren posizioa nabigazioan (gaituta badago):";
|
||||
$lang["vector_cite_author"] = "Jarri autorearen izena 'Artikuluaren aipamenean':";
|
||||
$lang["vector_loaduserjs"] = "Kargatu 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "Wiki itxia (lotura/fitxa/koadro gehienak ezkutatuta daude erabiltzailea sartu arte)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Persian language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is free software and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Salman Mohammadi <salman@shimool.org>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "مقاله";
|
||||
$lang["vector_discussion"] = "بحث";
|
||||
$lang["vector_read"] = "خواندن";
|
||||
$lang["vector_edit"] = "ویرایش";
|
||||
$lang["vector_create"] = "ساختن";
|
||||
$lang["vector_userpage"] = "صفحهی کاربر";
|
||||
$lang["vector_specialpage"] = "صفحههای ویژه";
|
||||
$lang["vector_mytalk"] = "گفتگوی کم";
|
||||
$lang["vector_exportodt"] = "بارگیری به صورت ODT";
|
||||
$lang["vector_exportpdf"] = "بارگیری به صورت PDF";
|
||||
$lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "زبانها";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "ناوبری";
|
||||
$lang["vector_toolbox"] = "جعبه ابزار";
|
||||
$lang["vector_exportbox"] = "چاپ/برونبری";
|
||||
$lang["vector_inotherlanguages"] = "زبانها";
|
||||
$lang["vector_printexport"] = "چاپ/برونبری";
|
||||
$lang["vector_personnaltools"] = "ابزارهای شخصی";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "برو";
|
||||
$lang["vector_btn_search"] = "جستوجو";
|
||||
$lang["vector_btn_search_title"] = "جستوجو برای این متن";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "نسخهی قابل چاپ";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "بارگیری به صورت ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "بارگیری به صورت PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "پیوندهای به این صفحه";
|
||||
$lang["vector_toolbxdef_upload"] = "بارگذاری پرونده";
|
||||
$lang["vector_toolbxdef_siteindex"] = "شاخص وبگاه";
|
||||
$lang["vector_toolboxdef_permanent"] = "پیوند پایدار";
|
||||
$lang["vector_toolboxdef_cite"] = "یادکرد این صفحه";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "جزییات کتابشناسی برای";
|
||||
$lang["vector_cite_pagename"] = "نام صفحه";
|
||||
$lang["vector_cite_author"] = "نویسنده";
|
||||
$lang["vector_cite_publisher"] = "منتشر کننده";
|
||||
$lang["vector_cite_dateofrev"] = "تاریخ آخرین بازبینی";
|
||||
$lang["vector_cite_dateretrieved"] = "تاریخ بازیابی";
|
||||
$lang["vector_cite_permurl"] = "پیوند دایمی";
|
||||
$lang["vector_cite_pageversionid"] = "شناسه ویرایش صفحه";
|
||||
$lang["vector_cite_citationstyles"] = "شیوههای یادکرد برای";
|
||||
$lang["vector_cite_checkstandards"] = "لطفاُ به یاد داشته باشید که برای سینتکس دقیق که مطابق با نیازهای شما باشد، باید به دفترچهراهنمای شیوه، راهنماهای استاندارد و یا دیگر راهنماها مراجعه کنید";
|
||||
$lang["vector_cite_latexusepackagehint"] = "When using the LaTeX package url (\usepackage{url} somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred";
|
||||
$lang["vector_cite_retrieved"] = "بازبینیشده";
|
||||
$lang["vector_cite_from"] = "از";
|
||||
$lang["vector_cite_in"] = "در";
|
||||
$lang["vector_cite_accessed"] = "بازبینی شده";
|
||||
$lang["vector_cite_cited"] = "یاد شده";
|
||||
$lang["vector_cite_lastvisited"] = "آخرین دیدار";
|
||||
$lang["vector_cite_availableat"] = "موجود در";
|
||||
$lang["vector_cite_discussionpages"] = "صفحههای گفتگوی دوکوویکی";
|
||||
$lang["vector_cite_markup"] = "نشانهگذاری";
|
||||
$lang["vector_cite_result"] = "نتیجه";
|
||||
$lang["vector_cite_thisversion"] = "این ویرایش";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "جستوجو";
|
||||
$lang["vector_accessdenied"] = "دسترسی محدود شده است";
|
||||
$lang["vector_fillplaceholder"] = "Please fill this placeholder";
|
||||
$lang["vector_donate"] = "اهدا کردن";
|
||||
$lang["vector_mdtemplatefordw"] = "الگوی «وکتور» برای دوکوویکی";
|
||||
$lang["vector_recentchanges"] = "تغییرهای اخیر";
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Persian language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is free software and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Salman Mohammadi <salman@shimool.org>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "از صفحهی کاربر استفاده شود؟";
|
||||
$lang["vector_userpage_ns"] = "اگر بله، از :namespace: زیر به عنوان ریشه برای صفحههای کاربرها استفاده کن:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "از وبگاههای/برگههای بحث استفاده شود؟";
|
||||
$lang["vector_discuss_ns"] = "اگر بله، از :namespace: زیر به عنوان ریشه یرای صفحههای بحث استفاده کن:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "آیا از اعلامیهی سراسری در وبگاه استفاده شود؟";
|
||||
$lang["vector_sitenotice_location"] = ":اگر بله، از صفحهی ویکی زیر برای اعلامیهی سراسری در وبگاه استفاده کن";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "ناوبری نشان داده شود؟";
|
||||
$lang["vector_navigation_location"] = ":اگر بله، از صفحهی ویکی زیر برای ناوبری استفاده کن";
|
||||
$lang["vector_navigation_translate"] = "اگر بله و <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> در دسترس بود: آیا آیا از ناوبری مخصوص هر زبان استفاده شود؟<br />صفحهی ویرایش برای ناوبری(های) ترجمه شده به مانند روبرو است [مقدار 'vector_navigation_location']_[iso lang code] (مثلا ':wiki:navigation_fa').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "جعبهی «چاپ/برونریزی را نشان دهد؟?";
|
||||
$lang["vector_exportbox_default"] = "اگر بله، از جعبهی «چاپ/برونریزی» پیشفرض استفاده کند؟";
|
||||
$lang["vector_exportbox_location"] = "اگر نمیخواهید از پیشفرض استفاده کند، از صفحهی ویکی زیر به عنوان مکان «چاپ/برونریزی» استفاده کند.";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "جعبهابزار را نشان دهد؟";
|
||||
$lang["vector_toolbox_default"] = "اگر بله، از جعبهابزار پیشفرض استفاده کند؟";
|
||||
$lang["vector_toolbox_location"] = "اگر نمیخواهید از پیشفرض استفاده کند، از صفحهی ویکی زیر به عنوان مکان جعبهابزار استفاده کند.";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "آیا اعلامیهی حقکپی را نشان دهد؟";
|
||||
$lang["vector_copyright_default"] = "اگر بله، از اعلامیهی حق کپی پیشفرض استفاده کند؟";
|
||||
$lang["vector_copyright_location"] = "اگر نمیخواهید از پیشفرض استفاده کند، از صفحهی ویکی زیر به عنوان اعلامیهی حقکپی استفاده کند.";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "پیوند/دکمهی اهدا را نشان دهد؟";
|
||||
$lang["vector_donate_url"] = "اگر نمیخواهید از پیشفرض استفاده کند، از پیوند زیر برای اهدا استفاده کند:.";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "موقعیت فهرست مطالب";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "موقعیت ناوبری بردکرامب (اگر فعال شده باشد):";
|
||||
$lang["vector_youarehere_position"] = "موقعیت «شما اینجا هستید» (اگر فعال شده باشد):";
|
||||
$lang["vector_cite_author"] = "نام نویسنده در «یادکرد این مقاله«";
|
||||
$lang["vector_loaduserjs"] = "آیا 'vector/user/user.js' را بارگذاری کند؟";
|
||||
$lang["vector_closedwiki"] = " ویکی بستهشده (بیشتر پیوندها/برگهها/جعبهها تا زمانی که کاربر وارد حساب کاربری خود شود، به صورت مخفی است)";
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* French language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Julien Revault d'Allonnes <jrevault@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Article";
|
||||
$lang["vector_discussion"] = "Discussion";
|
||||
$lang["vector_read"] = "Lire";
|
||||
$lang["vector_edit"] = "Editer";
|
||||
$lang["vector_create"] = "Créer";
|
||||
$lang["vector_userpage"] = "Page utilisateur";
|
||||
$lang["vector_specialpage"] = "Page spéciales";
|
||||
$lang["vector_mytalk"] = "Mes discussions";
|
||||
$lang["vector_exportodt"] = "Exporter : ODT";
|
||||
$lang["vector_exportpdf"] = "Exporter : PDF";
|
||||
$lang["vector_subscribens"] = "Souscrire modif NS"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Désouscrire modif NS"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Langages";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigation";
|
||||
$lang["vector_toolbox"] = "Outils";
|
||||
$lang["vector_exportbox"] = "Imprimer/exporter";
|
||||
$lang["vector_inotherlanguages"] = "Langages";
|
||||
$lang["vector_printexport"] = "Imprimer/exporter";
|
||||
$lang["vector_personnaltools"] = "Outils personels";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Go";
|
||||
$lang["vector_btn_search"] = "Recherche";
|
||||
$lang["vector_btn_search_title"] = "Rechercher ce texte";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Version imprimable";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Télécharger en ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Télécharger en PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Page amont liées";
|
||||
$lang["vector_toolbxdef_upload"] = "Envoyer un fichier";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Site index";
|
||||
$lang["vector_toolboxdef_permanent"] = "Lien permanent";
|
||||
$lang["vector_toolboxdef_cite"] = "Citer cette page";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Détail bibliographique pour";
|
||||
$lang["vector_cite_pagename"] = "Nom de page";
|
||||
$lang["vector_cite_author"] = "Auteur";
|
||||
$lang["vector_cite_publisher"] = "Publieur";
|
||||
$lang["vector_cite_dateofrev"] = "Date de revision";
|
||||
$lang["vector_cite_dateretrieved"] = "Date récupérée";
|
||||
$lang["vector_cite_permurl"] = "URL permanente";
|
||||
$lang["vector_cite_pageversionid"] = "Version ID de la page";
|
||||
$lang["vector_cite_citationstyles"] = "Style de citation pour";
|
||||
$lang["vector_cite_checkstandards"] = "Veuillez vérifier dans un manuel, un guide standards ou avec un instructeur pour la syntaxe exacte lié à vos besoins.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Lorsque vous utilisez l'URL de packaging LaTeX (\usepackage{url} quelquepart au début), qui donne souvent des addresses webs mieux formatées, ce qui suit peut être préféré";
|
||||
$lang["vector_cite_retrieved"] = "Récupéré";
|
||||
$lang["vector_cite_from"] = "depuis";
|
||||
$lang["vector_cite_in"] = "Dans";
|
||||
$lang["vector_cite_accessed"] = "Accès";
|
||||
$lang["vector_cite_cited"] = "Cité";
|
||||
$lang["vector_cite_lastvisited"] = "Dernière visite";
|
||||
$lang["vector_cite_availableat"] = "Dipso à";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki discussion";
|
||||
$lang["vector_cite_markup"] = "Annotation";
|
||||
$lang["vector_cite_result"] = "Resultat";
|
||||
$lang["vector_cite_thisversion"] = "cette version";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Recherche";
|
||||
$lang["vector_accessdenied"] = "Accès interdit";
|
||||
$lang["vector_fillplaceholder"] = "Remplissez cet espace réservé";
|
||||
$lang["vector_donate"] = "Dons";
|
||||
$lang["vector_mdtemplatefordw"] = "vector template pour DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Changements récents";
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* French language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Julien Revault d'Allonnes <jrevault@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Utiliser les pages utilisateurs ?";
|
||||
$lang["vector_userpage_ns"] = "Si oui, utilisez ':namespace:' comme pages racines :";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Utiliser les onglets discussion ?";
|
||||
$lang["vector_discuss_ns"] = "Si oui, utilisez':namespace:' comme pages racines :";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Afficher la notice du site ?";
|
||||
$lang["vector_sitenotice_location"] = "Si oui, utilisez la page wiki suivante pour la notice :";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Afficher la navigation ?";
|
||||
$lang["vector_navigation_location"] = "Si oui, utilisez la page wiki suivante pour la navigation :";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Afficher la boite 'imprimer/exporter' ?";
|
||||
$lang["vector_exportbox_default"] = "Si oui, utilisez la boite 'imprimer/exporter' par default ?";
|
||||
$lang["vector_exportbox_location"] = "Si non, utilisez la page wiki suivante :";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Afficher la outils ?";
|
||||
$lang["vector_toolbox_default"] = "Si oui, utilisez la outils par default ?";
|
||||
$lang["vector_toolbox_location"] = "Si non, utilisez la page wiki suivante :";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Afficher le copyright en pied de page?";
|
||||
$lang["vector_copyright_default"] = "Si oui, utilisez la notice de copyright par default ?";
|
||||
$lang["vector_copyright_location"] = "Si non, utilisez la page wiki suivante :";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Afficher le lien de dons ?";
|
||||
$lang["vector_donate_url"] = "Si non, utilisez l'URL suivante our les donations :";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Sommaire position";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Position du fil d'ariane (si actif) :";
|
||||
$lang["vector_youarehere_position"] = "Position du 'Vous êtes ici' (si actif) :";
|
||||
$lang["vector_cite_author"] = "Nom de l'auteur dans 'Citer cet article' :";
|
||||
$lang["vector_loaduserjs"] = "Charger 'vector/user/user.js' ?";
|
||||
$lang["vector_closedwiki"] = "Wiki fermé (la plupart des liens/onglets/boites sont masquée sans connexion) ?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Hebrew language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Dave
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "îàîø";
|
||||
$lang["vector_discussion"] = "ùéçä";
|
||||
$lang["vector_read"] = "÷øéàä";
|
||||
$lang["vector_edit"] = "òøéëä";
|
||||
$lang["vector_create"] = "éöéøä";
|
||||
$lang["vector_userpage"] = "ãó îùúîù";
|
||||
$lang["vector_specialpage"] = "ãôéí îéåçãéí";
|
||||
$lang["vector_mytalk"] = "äùéçä ùìé";
|
||||
$lang["vector_exportodt"] = "éöåà ì-ODT";
|
||||
$lang["vector_exportpdf"] = "éöåà ì-PDF";
|
||||
$lang["vector_subscribens"] = "øéùåí ìùéðåééí áãó"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "áéèåì øéùåí ìùéðåééí áãó"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "ùôåú";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "ðéååè";
|
||||
$lang["vector_toolbox"] = "úéáú ëìéí";
|
||||
$lang["vector_exportbox"] = "äãôñä/éöåà";
|
||||
$lang["vector_qrcodebox"] = "÷åã QR";
|
||||
$lang["vector_inotherlanguages"] = "ùôåú";
|
||||
$lang["vector_printexport"] = "äãôñä/éöåà";
|
||||
$lang["vector_personnaltools"] = "ëìéí àéùééí";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "äîùê";
|
||||
$lang["vector_btn_search"] = "çéôåù";
|
||||
$lang["vector_btn_search_title"] = "çéôåù è÷ñè æä";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "âøñú äãôñä";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "äåøãä ë-ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "äåøãä ë-PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "ãôéí äî÷åùøéí ìëàï";
|
||||
$lang["vector_toolbxdef_upload"] = "äòìàú ÷åáõ";
|
||||
$lang["vector_toolbxdef_siteindex"] = "àéðã÷ñ àúø";
|
||||
$lang["vector_toolboxdef_permanent"] = "÷éùåø ÷áåò";
|
||||
$lang["vector_toolboxdef_cite"] = "öéèåè ãó æä";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "÷åã QR";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "ðåöø ìãó æä";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "ãó ðåëçé ë÷åã QR (ñøé÷ä ìöôééä áîëùéøéí ðééãéí)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "îéãò áéáìéåâøôé òì";
|
||||
$lang["vector_cite_pagename"] = "ùí äãó";
|
||||
$lang["vector_cite_author"] = "îçáø";
|
||||
$lang["vector_cite_publisher"] = "îôøñí";
|
||||
$lang["vector_cite_dateofrev"] = "úàøéê ùì ùéðåé æä";
|
||||
$lang["vector_cite_dateretrieved"] = "úàøéê àçæåø";
|
||||
$lang["vector_cite_permurl"] = "÷éùåø ÷áåò";
|
||||
$lang["vector_cite_pageversionid"] = "÷åã æéäåé âøñú ãó";
|
||||
$lang["vector_cite_citationstyles"] = "ñâðåðåú öéèåè òáåø";
|
||||
$lang["vector_cite_checkstandards"] = "àðà æëøå ì÷øåà àú îãøéê äñâðåï, îãøéê äú÷ï àå îãøéê ä÷ååéí äîðçéí ìúçáéø îãåé÷ ëãé ìäúàéí àú äöøëéí ùìëí.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "ëàùø îùúîùéí áÎURL îçáéìú LaTeX (áàîöòåú ëúéáú \usepackage{url} áî÷åí ëìùäå áîáåà), äîðéáä ëúåáåú àéðèøðè äîòåöáåú èåá éåúø, éù ìäòãéó àú ãøê äëúéáä äáàä:";
|
||||
$lang["vector_cite_retrieved"] = "àåçæø";
|
||||
$lang["vector_cite_from"] = "î-";
|
||||
$lang["vector_cite_in"] = "á-";
|
||||
$lang["vector_cite_accessed"] = "ðñ÷ø";
|
||||
$lang["vector_cite_cited"] = "îöåèè";
|
||||
$lang["vector_cite_lastvisited"] = "ðñ÷ø ìàçøåðä";
|
||||
$lang["vector_cite_availableat"] = "æîéï á-";
|
||||
$lang["vector_cite_discussionpages"] = "ãôé ùéçåú ùì ãå÷å-ååé÷é";
|
||||
$lang["vector_cite_markup"] = "òìééä";
|
||||
$lang["vector_cite_result"] = "úåöàä";
|
||||
$lang["vector_cite_thisversion"] = "âøñä æå";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "çéôåù";
|
||||
$lang["vector_accessdenied"] = "äâéùä ðãçúä";
|
||||
$lang["vector_fillplaceholder"] = "àðà îìàå àå áèìå î÷åí ùîåø æä";
|
||||
$lang["vector_donate"] = "úøåîä";
|
||||
$lang["vector_mdtemplatefordw"] = "úáðéú vector ìãå÷å-ååé÷é";
|
||||
$lang["vector_recentchanges"] = "ùéðåééí àçøåðéí";
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Italian language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Luigi Micco <l.micco@tiscali.it>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs
|
||||
$lang["vector_article"] = "Articolo";
|
||||
$lang["vector_discussion"] = "Discussione";
|
||||
$lang["vector_read"] = "Leggi";
|
||||
$lang["vector_edit"] = "Modifica";
|
||||
$lang["vector_create"] = "Crea";
|
||||
$lang["vector_userpage"] = "Pagina utente";
|
||||
$lang["vector_specialpage"] = "Pagine spaciali";
|
||||
$lang["vector_mytalk"] = "Le mie discussioni";
|
||||
$lang["vector_exportodt"] = "Esporta: ODT";
|
||||
$lang["vector_exportpdf"] = "Esporta: PDF";
|
||||
$lang["vector_sendmail"] = "Segnala via mail";
|
||||
$lang["vector_translations"] = "Altre lingue";
|
||||
|
||||
//headlines for the different bars
|
||||
$lang["vector_views"] = "Viste";
|
||||
$lang["vector_personnaltools"] = "Strumenti personali";
|
||||
$lang["vector_navigation"] = "Navigazione";
|
||||
$lang["vector_toolbox"] = "Strumenti";
|
||||
$lang["vector_exportbox"] = "Stampa/Esporta";
|
||||
$lang["vector_inotherlanguages"] = "Altre lingue";
|
||||
$lang["vector_search"] = "Cerca";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Vai";
|
||||
$lang["vector_btn_search"] = "Cerca";
|
||||
$lang["vector_btn_search_title"] = "Ricerca questo testo";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Versione stampabile";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Esporta come ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Esporta come PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Pagine che puntano qui";
|
||||
$lang["vector_toolbxdef_upload"] = "Carica file";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Indice del sito";
|
||||
$lang["vector_toolboxdef_permanent"] = "Link permanente";
|
||||
$lang["vector_toolboxdef_cite"] = "Cita questo articolo";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Dettagli bibliografici per";
|
||||
$lang["vector_cite_pagename"] = "Nome pagina";
|
||||
$lang["vector_cite_author"] = "Autore";
|
||||
$lang["vector_cite_publisher"] = "Editore";
|
||||
$lang["vector_cite_dateofrev"] = "Data dell'ultima revisione";
|
||||
$lang["vector_cite_dateretrieved"] = "Data della citazione";
|
||||
$lang["vector_cite_permurl"] = "Link permanente";
|
||||
$lang["vector_cite_pageversionid"] = "ID della revisione";
|
||||
$lang["vector_cite_citationstyles"] = "Stili di citazione per";
|
||||
$lang["vector_cite_checkstandards"] = "Usate la versione che risponde meglio ai vostri bisogni.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Quando viene usato il package url di LaTeX ('\usepackage{url}' all'inizio del documento), che in genere da' indirizzi web formattati in modo migliore, e' preferibile usare il seguente codice:";
|
||||
$lang["vector_cite_retrieved"] = "Retrieved";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_from"] = "da";
|
||||
$lang["vector_cite_accessed"] = "Accessed";
|
||||
$lang["vector_cite_cited"] = "Cited";
|
||||
$lang["vector_lastvisited"] = "Ultima visita";
|
||||
$lang["vector_cite_availableat"] = "Disponibile su";
|
||||
$lang["vector_cite_discussionpages"] = "Pagina delle discussioni";
|
||||
$lang["vector_cite_markup"] = "Markup";
|
||||
$lang["vector_cite_result"] = "Risultato";
|
||||
$lang["vector_cite_thisversion"] = "questa versione";
|
||||
|
||||
//other
|
||||
$lang["vector_accessdenied"] = "Accesso negato";
|
||||
$lang["vector_fillplaceholder"] = "Sostituisci questo segnaposto";
|
||||
$lang["vector_donate"] = "Dona";
|
||||
$lang["vector_mdtemplatefordw"] = "stile vector per DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Modifiche recenti";
|
||||
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Italian language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Luigi Micco <l.micco@tiscali.it>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Usare linguetta discussioni?";
|
||||
$lang["vector_discuss_ns"] = "Se si, usa questo ':namespace:' come radice per le discussioni:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Mostra annunci generali?";
|
||||
$lang["vector_sitenotice_location"] = "Se si, usa la seguente pagina wiki come annuncio:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Mostra pannello di navigazione?";
|
||||
$lang["vector_navigation_location"] = "Se si, usa la seguente pagina wiki come pannello di navigazione:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Mostrat pannello 'stampa/esporta'";
|
||||
$lang["vector_exportbox_default"] = "Se si, usa il pannello predefinito 'stampa/esporta'?";
|
||||
$lang["vector_exportbox_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come pannello 'stampa/esporta':";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Mostra pannello strumenti?";
|
||||
$lang["vector_toolbox_default"] = "Se si, usa il pannello predefinito?";
|
||||
$lang["vector_toolbox_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come pannello degli strumenti:";
|
||||
$lang["vector_toolbox_default_print"] = "Se utilizzi il pannello predefinito, mostra link per versione stampabile?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Mostra avviso di copyright?";
|
||||
$lang["vector_copyright_default"] = "Se si, usa l'avviso di copyright predefinito?";
|
||||
$lang["vector_copyright_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come avviso di copyright:";
|
||||
|
||||
//search form
|
||||
$lang["vector_search"] = "Mostra casella di ricerca?";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Mostra link/pulsante per le donazioni?";
|
||||
$lang["vector_donate_url"] = "Se non predefinito, usa il seguente indirizzo URL per le donazioni:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Posizione indice dei contenuti";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Posizione del pannello breadcrumb (se abilitato):";
|
||||
$lang["vector_youarehere_position"] = "Posizione del pannello 'Tu sei qui' (se abilitato):";
|
||||
$lang["vector_cite_author"] = "Nome autore in 'Cita questo articolo':";
|
||||
$lang["vector_loaduserjs"] = "Carica 'vector/user/user.js'?";
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* English language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "記事";
|
||||
$lang["vector_discussion"] = "会議";
|
||||
$lang["vector_read"] = "閲覧";
|
||||
$lang["vector_edit"] = "編輯";
|
||||
$lang["vector_create"] = "作成";
|
||||
$lang["vector_userpage"] = "利用者ページ";
|
||||
$lang["vector_specialpage"] = "特別ページ";
|
||||
$lang["vector_mytalk"] = "会話";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "言語";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "ナビゲーション";
|
||||
$lang["vector_toolbox"] = "ツール";
|
||||
$lang["vector_exportbox"] = "印刷と出力";
|
||||
$lang["vector_qrcodebox"] = "QR コード";
|
||||
$lang["vector_inotherlanguages"] = "言語";
|
||||
$lang["vector_printexport"] = "印刷と出力";
|
||||
$lang["vector_personnaltools"] = "個人ツール";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Go";
|
||||
$lang["vector_btn_search"] = "Search";
|
||||
$lang["vector_btn_search_title"] = "Search for this text";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "印刷用ページ";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Download as ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Download as PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "バックリンク";
|
||||
$lang["vector_toolbxdef_upload"] = "Upload file";
|
||||
$lang["vector_toolbxdef_siteindex"] = "サイトマップ";
|
||||
$lang["vector_toolboxdef_permanent"] = "版固定リンク";
|
||||
$lang["vector_toolboxdef_cite"] = "出典にする";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "QR Code";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "generated for current page";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliographic details for";
|
||||
$lang["vector_cite_pagename"] = "Page name";
|
||||
$lang["vector_cite_author"] = "Author";
|
||||
$lang["vector_cite_publisher"] = "Publisher";
|
||||
$lang["vector_cite_dateofrev"] = "Date of this revision";
|
||||
$lang["vector_cite_dateretrieved"] = "Date retrieved";
|
||||
$lang["vector_cite_permurl"] = "Permanent URL";
|
||||
$lang["vector_cite_pageversionid"] = "Page Version ID";
|
||||
$lang["vector_cite_citationstyles"] = "Citation styles for";
|
||||
$lang["vector_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "When using the LaTeX package url (\usepackage{url} somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred";
|
||||
$lang["vector_cite_retrieved"] = "Retrieved";
|
||||
$lang["vector_cite_from"] = "from";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_accessed"] = "Accessed";
|
||||
$lang["vector_cite_cited"] = "Cited";
|
||||
$lang["vector_cite_lastvisited"] = "Last visited";
|
||||
$lang["vector_cite_availableat"] = "Available at";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki talk pages";
|
||||
$lang["vector_cite_markup"] = "Markup";
|
||||
$lang["vector_cite_result"] = "Result";
|
||||
$lang["vector_cite_thisversion"] = "this version";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Search";
|
||||
$lang["vector_accessdenied"] = "Access denied";
|
||||
$lang["vector_fillplaceholder"] = "Please fill or disable this placeholder";
|
||||
$lang["vector_donate"] = "Donate";
|
||||
$lang["vector_mdtemplatefordw"] = "vector template for DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Recent changes";
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* English language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author ARSAVA <dokuwiki@dev.arsava.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Use User pages?";
|
||||
$lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Use discussion tabs/sites?";
|
||||
$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Show site wide notice?";
|
||||
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
|
||||
$lang["vector_sitenotice_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific site wide notice?<br />The wiki page of the translated site notice(s) is [value of 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Show navigation?";
|
||||
$lang["vector_navigation_location"] = "If yes, use following wiki page as navigation:";
|
||||
$lang["vector_navigation_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific navigation?<br />The wiki page of the translated navigation(s) is [value of 'vector_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Show 'print/export' box?";
|
||||
$lang["vector_exportbox_default"] = "If yes, use default 'print/export' box?";
|
||||
$lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Show tools?";
|
||||
$lang["vector_toolbox_default"] = "If yes, use default tools?";
|
||||
$lang["vector_toolbox_location"] = "If not default, use following wiki page as tools location:";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Show copyright notice?";
|
||||
$lang["vector_copyright_default"] = "If yes, use default copyright notice?";
|
||||
$lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:";
|
||||
$lang["vector_copyright_translate"] = "If not default and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific copyright notice?<br />The wiki page of the translated copyright notice(s) is [value of 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Show donation link/button?";
|
||||
$lang["vector_donate_url"] = "Use following URL for donations:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Table of contents (TOC) position";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):";
|
||||
$lang["vector_youarehere_position"] = "Position of 'You are here' navigation (if enabled):";
|
||||
$lang["vector_cite_author"] = "Author name in 'Cite this Article':";
|
||||
$lang["vector_loaduserjs"] = "Load 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Korean language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author 관인생략
|
||||
* @author Myeongjin <aranet100@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "문서";
|
||||
$lang["vector_discussion"] = "토론";
|
||||
$lang["vector_read"] = "읽기";
|
||||
$lang["vector_edit"] = "편집";
|
||||
$lang["vector_create"] = "만들기";
|
||||
$lang["vector_userpage"] = "사용자 문서";
|
||||
$lang["vector_specialpage"] = "특수 문서";
|
||||
$lang["vector_mytalk"] = "사용자 토론";
|
||||
$lang["vector_exportodt"] = "내보내기: ODT";
|
||||
$lang["vector_exportpdf"] = "내보내기: PDF";
|
||||
$lang["vector_subscribens"] = "이름공간 바뀜 구독"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "이름공간 바뀜 구독 취소"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "언어";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "둘러보기";
|
||||
$lang["vector_toolbox"] = "도구";
|
||||
$lang["vector_exportbox"] = "인쇄/내보내기";
|
||||
$lang["vector_qrcodebox"] = "QR 코드";
|
||||
$lang["vector_inotherlanguages"] = "언어";
|
||||
$lang["vector_printexport"] = "인쇄/내보내기";
|
||||
$lang["vector_personnaltools"] = "개인 도구";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "보기";
|
||||
$lang["vector_btn_search"] = "검색";
|
||||
$lang["vector_btn_search_title"] = "이 문자열이 포함된 문서 검색";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "인쇄용 판";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "ODT로 다운로드";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "PDF로 다운로드";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "여기를 가리키는 문서";
|
||||
$lang["vector_toolbxdef_upload"] = "파일 올리기";
|
||||
$lang["vector_toolbxdef_siteindex"] = "사이트맵";
|
||||
$lang["vector_toolboxdef_permanent"] = "고유 링크";
|
||||
$lang["vector_toolboxdef_cite"] = "이 문서 인용하기";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox_qrcode"] = "QR 코드";
|
||||
$lang["vector_qrcodebox_genforcurrentpage"] = "현재 문서의 생성된 QR 코드";
|
||||
$lang["vector_qrcodebox_urlofcurrentpage"] = "현재 문서의 QR 코드 (쉽게 모바일 접근을 하려면 스캔)";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "다음 문서의 출처 정보:";
|
||||
$lang["vector_cite_pagename"] = "문서 이름";
|
||||
$lang["vector_cite_author"] = "저자";
|
||||
$lang["vector_cite_publisher"] = "발행처";
|
||||
$lang["vector_cite_dateofrev"] = "이 판의 날짜";
|
||||
$lang["vector_cite_dateretrieved"] = "확인한 날짜";
|
||||
$lang["vector_cite_permurl"] = "고유 URL";
|
||||
$lang["vector_cite_pageversionid"] = "문서 판 ID";
|
||||
$lang["vector_cite_citationstyles"] = "다음 문서의 인용 양식:";
|
||||
$lang["vector_cite_checkstandards"] = "필요에 따라 정확한 구문에 대한 양식 매뉴얼, 표준 가이드 또는 안내자의 지침을 확인하는 것을 기억하세요.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "LaTeX 패키지 URL(프리앰블의 어딘가에 \usepackage{url})을 사용하면 더 정돈된 형식의 웹 주소를 얻을 수 있습니다. 다음과 같은 방법을 선호합니다";
|
||||
$lang["vector_cite_retrieved"] = "확인한 날짜:";
|
||||
$lang["vector_cite_from"] = "다음에서 찾아볼 수 있음:";
|
||||
$lang["vector_cite_in"] = "발행처:";
|
||||
$lang["vector_cite_accessed"] = "접근한 날짜:";
|
||||
$lang["vector_cite_cited"] = "인용한 날짜:";
|
||||
$lang["vector_cite_lastvisited"] = "마지막으로 방문한 날짜:";
|
||||
$lang["vector_cite_availableat"] = "다음에서 찾아볼 수 있음";
|
||||
$lang["vector_cite_discussionpages"] = "도쿠위키 토론 문서";
|
||||
$lang["vector_cite_markup"] = "문법";
|
||||
$lang["vector_cite_result"] = "결과";
|
||||
$lang["vector_cite_thisversion"] = "이 판";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "검색";
|
||||
$lang["vector_accessdenied"] = "접근 거부됨";
|
||||
$lang["vector_fillplaceholder"] = "이 자리를 채우거나 비활성화하세요";
|
||||
$lang["vector_donate"] = "기부";
|
||||
$lang["vector_mdtemplatefordw"] = "도쿠위키를 위한 벡터 템플릿";
|
||||
$lang["vector_recentchanges"] = "최근 바뀜";
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Korean language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Myeongjin <aranet100@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "사용자 문서를 사용하겠습니까?";
|
||||
$lang["vector_userpage_ns"] = "만약 사용한다면 사용자 문서에 대한 루트로 다음 ':이름공간:' 사용:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "토론 탭/사이트를 사용하겠습니까?";
|
||||
$lang["vector_discuss_ns"] = "만약 사용한다면 토론에 대한 루트로 다음 ':이름공간:' 사용:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "사이트 넓은 알림을 보여줄까요?";
|
||||
$lang["vector_sitenotice_location"] = "만약 보여준다면 사이트 넓은 알림에 대해 다음 위키 문서 사용:";
|
||||
$lang["vector_sitenotice_translate"] = "만약 보여주고 <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation 플러그인</a>을 사용할 수 있다면: 언어별 사이트 넓은 알림을 불러올까요?<br />번역된 사이트 알림의 위키 문서는 ['vector_sitenotice_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:site_notice_de') 입니다.";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "둘러보기를 보여줄까요?";
|
||||
$lang["vector_navigation_location"] = "만약 보여준다면 둘러보기로 다음 위키 문서 사용:";
|
||||
$lang["vector_navigation_translate"] = "만약 보여주고 <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation 플러그인</a>을 사용할 수 있다면: 언어별 둘러보기를 불러올까요?<br />번역된 둘러보기의 위키 문서는 ['vector_navigation_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:navigation_de') 입니다.";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "'인쇄/내보내기' 모음를 보여줄까요?";
|
||||
$lang["vector_exportbox_default"] = "만약 보여준다면 기본 '인쇄/내보내기' 모음을 사용하겠습니까?";
|
||||
$lang["vector_exportbox_location"] = "기본 모음을 사용하지 않는다면 '인쇄/내보내기' 모음 위치로 다음 위키 문서 사용:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "도구를 보여줄까요?";
|
||||
$lang["vector_toolbox_default"] = "만약 보여준다면 기본 도구를 사용하겠습니까?";
|
||||
$lang["vector_toolbox_location"] = "기본 모음을 사용하지 않는다면 도구 위치로 다음 위키 문서 사용:";
|
||||
|
||||
//qr code box
|
||||
$lang["vector_qrcodebox"] = "(모바일 브라우저에 쉽게 URL 전송을 위해) 현재 위키 문서 URL의 QR 코드로 된 상자를 보여줄까요?";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "저작권 알림을 보여줄까요?";
|
||||
$lang["vector_copyright_default"] = "만약 보여준다면 기본 저작권 알림을 사용하겠습니까?";
|
||||
$lang["vector_copyright_location"] = "기본 알림을 사용하지 않는다면 저작권 알림으로 다음 위키 문서 사용:";
|
||||
$lang["vector_copyright_translate"] = "만약 보여주고 <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation 플러그인</a>을 사용할 수 있다면: 언어별 저작권 알림을 불러올까요?<br />번역된 저작권 일림의 위키 문서는 ['vector_copyright_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:copyright_de') 입니다.";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "기부 링크/버튼을 보여줄까요?";
|
||||
$lang["vector_donate_url"] = "기부에 대한 다음 URL 사용:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "목차 위치";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "(활성화되었다면) 위치 추적 둘러보기의 위치:";
|
||||
$lang["vector_youarehere_position"] = "(활성화되었다면) '현재 위치' 둘러보기의 위치:";
|
||||
$lang["vector_cite_author"] = "'이 문서 인용하기'의 저자 이름:";
|
||||
$lang["vector_loaduserjs"] = "'vector/user/user.js'를 불러올까요?";
|
||||
$lang["vector_closedwiki"] = "닫힌 위키입니까? (대부분의 링크/탭/도구를 사용자가 로그인하기 전에 숨깁니다)";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Dutch language for the "vector" DokuWiki template
|
||||
* by Theo Klein (14/06/2010)
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Theo Klein
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Artikel";
|
||||
$lang["vector_discussion"] = "Overleg";
|
||||
$lang["vector_read"] = "Lezen";
|
||||
$lang["vector_edit"] = "Bewerken";
|
||||
$lang["vector_create"] = "Aanmaken";
|
||||
$lang["vector_userpage"] = "Gebruikers Pagina";
|
||||
$lang["vector_specialpage"] = "Speciale Pagina's";
|
||||
$lang["vector_mytalk"] = "Mijn overleg";
|
||||
$lang["vector_exportodt"] = "Downloaden als ODT";
|
||||
$lang["vector_exportpdf"] = "Downloaden als PDF";
|
||||
$lang["vector_subscribens"] = "Inschrijven folderwijzigingen"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Uitschrijven folderwijzigingen"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Talen";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigatie";
|
||||
$lang["vector_toolbox"] = "Hulpmiddelen";
|
||||
$lang["vector_exportbox"] = "Afdrukken/exporteren";
|
||||
$lang["vector_inotherlanguages"] = "In andere talen";
|
||||
$lang["vector_printexport"] = "Print/exporteer";
|
||||
$lang["vector_personnaltools"] = "Persoonlijke hulpmiddelen";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Ga naar";
|
||||
$lang["vector_btn_search"] = "Zoek";
|
||||
$lang["vector_btn_search_title"] = "Zoek naar deze tekst";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Printbare versie";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Download als ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Download als PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Links naar deze pagina";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Site index";
|
||||
$lang["vector_toolbxdef_upload"] = "Upload bestand";
|
||||
$lang["vector_toolboxdef_permanent"] = "Permanente verwijzing";
|
||||
$lang["vector_toolboxdef_cite"] = "Deze pagina citeren";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografische details voor";
|
||||
$lang["vector_cite_pagename"] = "Paginanaam";
|
||||
$lang["vector_cite_author"] = "Auteur";
|
||||
$lang["vector_cite_publisher"] = "Uitgever";
|
||||
$lang["vector_cite_dateofrev"] = "Datum van deze revisie";
|
||||
$lang["vector_cite_dateretrieved"] = "Opgehaald op";
|
||||
$lang["vector_cite_permurl"] = "Permanente URL";
|
||||
$lang["vector_cite_pageversionid"] = "Pagina Versie ID";
|
||||
$lang["vector_cite_citationstyles"] = "Stylen om te verwijzen naar";
|
||||
$lang["vector_cite_checkstandards"] = "Vergeet niet uw eigen normen of richtlijnen te controleren voor de exacte zinsbouw die voldoet aan uw behoeften.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Bij gebruik van URLs in het LaTeX-pakket geeft deze methode veel mooiere opgemaakte webadressen, hint: zoek naar '\usepackage {url} ' in de handleiding'";
|
||||
$lang["vector_cite_retrieved"] = "Opgehaald op";
|
||||
$lang["vector_cite_from"] = "van";
|
||||
$lang["vector_cite_in"] = "In";
|
||||
$lang["vector_cite_accessed"] = "Op";
|
||||
$lang["vector_cite_cited"] = "Geciteerd";
|
||||
$lang["vector_cite_lastvisited"] = "Laatst bezocht op";
|
||||
$lang["vector_cite_availableat"] = "Beschikbaar op";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki overlegpagina's";
|
||||
$lang["vector_cite_markup"] = "Opmaak";
|
||||
$lang["vector_cite_result"] = "Resultaat";
|
||||
$lang["vector_cite_thisversion"] = "deze versie";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Zoek";
|
||||
$lang["vector_accessdenied"] = "Toegang gewijgerd";
|
||||
$lang["vector_fillplaceholder"] = "Vul dit veld in";
|
||||
$lang["vector_donate"] = "Doneer";
|
||||
$lang["vector_mdtemplatefordw"] = "vector template voor DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Recent gewijzigd";
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Dutch language for the Config Manager
|
||||
* by Theo Klein (14/06/2010)
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Theo Klein
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Gebruik discussie pagina's en tabs?";
|
||||
$lang["vector_discuss_ns"] = "Indien ja, gebruik de volgende ':namespace:' als root voor discussies:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Toon notificatie door de gehele site?";
|
||||
$lang["vector_sitenotice_location"] = "Indien ja, gebruik de volgende wiki pagina als notificatie:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Toon navigatie?";
|
||||
$lang["vector_navigation_location"] = "Indien ja, gebruik de volgende wiki pagina als navigatie:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Toon 'Afdrukken/exporteren' box?";
|
||||
$lang["vector_exportbox_default"] = "Indien ja, gebruik de standaard 'Afdrukken/exporteren' box?";
|
||||
$lang["vector_exportbox_location"] = "Indien niet standaard, gebruik de volgende wikipagina als 'Afdrukken/exporteren' box locatie:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Toon hulpmiddelen?";
|
||||
$lang["vector_toolbox_default"] = "Indien ja, gebruik de standaard hulpmiddelen?";
|
||||
$lang["vector_toolbox_location"] = "Indien niet standaard, gebruik de volgende wikipagina als 'hulpmiddelen' locatie:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Toon copyright notificatie?";
|
||||
$lang["vector_copyright_default"] = "Indien ja, gebruik de standaard copyright notificatie?";
|
||||
$lang["vector_copyright_location"] = "Wanneer de standaard niet gebruikt wordt, gebruik de volgende wiki pagina als copyright notificatie:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Toon donatie button?";
|
||||
$lang["vector_donate_url"] = "Gebruik de volgende URL voor donaties:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Positionering van de inhoudopgave";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Positie van broodkruimel navigatie (indien ingeschakeld):";
|
||||
$lang["vector_youarehere_position"] = "Positie van 'U bent hier' navigatie (indien ingeschakeld):";
|
||||
$lang["vector_cite_author"] = "Naam van de auteur in 'Citeer dit artikel':";
|
||||
$lang["vector_loaduserjs"] = "Laad 'vector/user/user.js'?";
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Brazilian Portuguese language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Fabio Reis <fabio.netsys@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Página";
|
||||
$lang["vector_discussion"] = "Discussão";
|
||||
$lang["vector_read"] = "Ler";
|
||||
$lang["vector_edit"] = "Editar";
|
||||
$lang["vector_create"] = "Criar";
|
||||
$lang["vector_userpage"] = "Página do Usuário";
|
||||
$lang["vector_specialpage"] = "Páginas especiais";
|
||||
$lang["vector_mytalk"] = "Minha discussão";
|
||||
$lang["vector_exportodt"] = "Exportar: ODT";
|
||||
$lang["vector_exportpdf"] = "Exportar: PDF";
|
||||
$lang["vector_subscribens"] = "Assinar Alterações"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Remover Assinatura das Alterações"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Idiomas";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navegação";
|
||||
$lang["vector_toolbox"] = "Ferramentas";
|
||||
$lang["vector_exportbox"] = "Imprimir/Exportar";
|
||||
$lang["vector_inotherlanguages"] = "Idiomas";
|
||||
$lang["vector_printexport"] = "Versão para impressão";
|
||||
$lang["vector_personnaltools"] = "Ferramentas Pessoais";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Ir";
|
||||
$lang["vector_btn_search"] = "Procurar por páginas contendo este texto";
|
||||
$lang["vector_btn_search_title"] = "Pesquisar nesta wiki";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Versão para impressão";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Download como ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Download como PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "What links here";
|
||||
$lang["vector_toolbxdef_upload"] = "Upload de arquivo";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Índice";
|
||||
$lang["vector_toolboxdef_permanent"] = "Link permanente";
|
||||
$lang["vector_toolboxdef_cite"] = "Citar esta página";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Detalhes bibliográficos para";
|
||||
$lang["vector_cite_pagename"] = "Nome da página";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Editor";
|
||||
$lang["vector_cite_dateofrev"] = "Data desta revisão";
|
||||
$lang["vector_cite_dateretrieved"] = "Data encontrada";
|
||||
$lang["vector_cite_permurl"] = "URL permanente";
|
||||
$lang["vector_cite_pageversionid"] = "ID da versão da página";
|
||||
$lang["vector_cite_citationstyles"] = "Estilos de citação para";
|
||||
$lang["vector_cite_checkstandards"] = "Por favor, lembre-se de verificar no seu guia de padrões ou diretivas do seu professor pela sintaxe exata para as suas necessidades.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Quando usar o pacote url LaTeX (\usepackage{url} em algum lugar no prefácio), que tende a dar muito mais bem formatada endereços da web, o seguinte pode ser preferido";
|
||||
$lang["vector_cite_retrieved"] = "Encontrado";
|
||||
$lang["vector_cite_from"] = "De";
|
||||
$lang["vector_cite_in"] = "Em";
|
||||
$lang["vector_cite_accessed"] = "Accessado";
|
||||
$lang["vector_cite_cited"] = "Citado";
|
||||
$lang["vector_cite_lastvisited"] = "Visitado por último";
|
||||
$lang["vector_cite_availableat"] = "Disponível em";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki páginas de discussão";
|
||||
$lang["vector_cite_markup"] = "Remarcação";
|
||||
$lang["vector_cite_result"] = "Resultado";
|
||||
$lang["vector_cite_thisversion"] = "esta versão";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Procurar";
|
||||
$lang["vector_accessdenied"] = "Acesso Negado";
|
||||
$lang["vector_fillplaceholder"] = "Preencha o espaço reservado";
|
||||
$lang["vector_donate"] = "Doações";
|
||||
$lang["vector_mdtemplatefordw"] = "template vector para DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Alterações Recentes";
|
||||
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Brazilian Portuguese language for the "vector" Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Fabio Reis <fabio.netsys@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Usar guias 'Discussão'?";
|
||||
$lang["vector_discuss_ns"] = "Se sim, usar a seguinte ':namespace:' como raiz para as discussões:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Mostrar aviso no site?";
|
||||
$lang["vector_sitenotice_location"] = "Se sim, usar a seguinte página wiki:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Mostrar 'Navegação' no menu?";
|
||||
$lang["vector_navigation_location"] = "Se sim, usar a seguinte página wiki para 'Navegação':";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Mostrar 'Imprimir/Exportar' no menu?";
|
||||
$lang["vector_exportbox_default"] = "Se sim, usar o padrão 'Imprimir/Exportar' no menu?";
|
||||
$lang["vector_exportbox_location"] = "Se não usar o padrão, usar a seguinte página wiki para 'Imprimir/Exportar':";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Mostrar 'Ferramentas' no menu?";
|
||||
$lang["vector_toolbox_default"] = "Se sim, usar o padrão Ferramentas?";
|
||||
$lang["vector_toolbox_location"] = "Se não usar o padrão, usar a seguinte página wiki para 'Ferramentas':";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Mostrar aviso de direitos autorais?";
|
||||
$lang["vector_copyright_default"] = "Se sim, usar o padrão de direitos autorais?";
|
||||
$lang["vector_copyright_location"] = "Se não usar o padrão, usar a seguinte página wiki para direitos autorais:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Exibir o link/botão de doação?";
|
||||
$lang["vector_donate_url"] = "Se não usar o padrão, usar a seguinte URL para doações:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Tabela de conteúdo de posição (TOC)";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Posição do indicador de navegação (se ativado):";
|
||||
$lang["vector_youarehere_position"] = "Posição da navegação para 'Você está em' (se ativado):";
|
||||
$lang["vector_cite_author"] = "Nome do Autor em 'Citar este artigo':";
|
||||
$lang["vector_loaduserjs"] = "Caregar 'vector/user/user.js'?";
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Russian language for the "Vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author anarchist IVANOV <ivanov@anarhist.org>
|
||||
* @author Aleksandr Selivanov <alexgearbox@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//вкладки, личные инструменты и спецссылки
|
||||
$lang['vector_article'] = 'Статья';
|
||||
$lang['vector_discussion'] = 'Обсуждение';
|
||||
$lang['vector_read'] = 'Чтение';
|
||||
$lang['vector_edit'] = 'Правка';
|
||||
$lang['vector_create'] = 'Cоздать';
|
||||
$lang['vector_userpage'] = 'Моя страница';
|
||||
$lang['vector_specialpage'] = 'Спецстраницы';
|
||||
$lang['vector_mytalk'] = 'Моя страница обсуждения';
|
||||
$lang['vector_exportodt'] = 'Экспорт в ODT';
|
||||
$lang['vector_exportpdf'] = 'Экспорт в PDF';
|
||||
$lang['vector_subscribens'] = 'Подписка на правки раздела'; //оригинальный перевод DW $lang['btn_subscribens'] слишком длинный для вкладок
|
||||
$lang['vector_unsubscribens'] = 'Отписка от правок раздела'; //оригинальный перевод DW $lang['btn_unsubscribens'] слишком длинный для вкладок
|
||||
$lang['vector_translations'] = 'Языки';
|
||||
|
||||
//заголовки для различных блоков
|
||||
$lang['vector_navigation'] = 'Навигация';
|
||||
$lang['vector_toolbox'] = 'Инструменты';
|
||||
$lang['vector_exportbox'] = 'Печать/экспорт';
|
||||
$lang['vector_inotherlanguages'] = 'На других языках';
|
||||
$lang['vector_printexport'] = 'Печать/экспорт';
|
||||
$lang['vector_personnaltools'] = 'Личные инструменты';
|
||||
|
||||
//кнопки
|
||||
$lang['vector_btn_go'] = '»';
|
||||
$lang['vector_btn_search'] = 'Искать';
|
||||
$lang['vector_btn_search_title'] = 'Найти страницы, содержащие указанный текст';
|
||||
|
||||
//блок экспорта (печать/экспорт)
|
||||
$lang['vector_exportbxdef_print'] = 'Версия для печати';
|
||||
$lang['vector_exportbxdef_downloadodt'] = 'Скачать как ODT';
|
||||
$lang['vector_exportbxdef_downloadpdf'] = 'Скачать как PDF';
|
||||
|
||||
//инструменты по умолчанию
|
||||
$lang['vector_toolbxdef_whatlinkshere'] = 'Ссылки сюда';
|
||||
$lang['vector_toolbxdef_upload'] = 'Загрузить файл';
|
||||
$lang['vector_toolbxdef_siteindex'] = 'Все страницы';
|
||||
$lang['vector_toolboxdef_permanent'] = 'Постоянная ссылка';
|
||||
$lang['vector_toolboxdef_cite'] = 'Цитировать страницу';
|
||||
|
||||
//цитирование страницы
|
||||
$lang['vector_cite_bibdetailsfor'] = 'Библиографические данные статьи';
|
||||
$lang['vector_cite_pagename'] = 'Статья';
|
||||
$lang['vector_cite_author'] = 'Автор';
|
||||
$lang['vector_cite_publisher'] = 'Опубликовано';
|
||||
$lang['vector_cite_dateofrev'] = 'Дата последнего изменения';
|
||||
$lang['vector_cite_dateretrieved'] = 'Дата загрузки';
|
||||
$lang['vector_cite_permurl'] = 'Постоянная ссылка';
|
||||
$lang['vector_cite_pageversionid'] = 'Идентификатор страницы';
|
||||
$lang['vector_cite_citationstyles'] = 'Варианты оформления ссылок на статью';
|
||||
$lang['vector_cite_checkstandards'] = 'Пожалуйста, не забудьте проверить руководство по стилю, пособие по стандартам или точные рекомендации посинтаксису работы для соответствия вашим нуждам.';
|
||||
$lang['vector_cite_latexusepackagehint'] = 'При использовании LaTeX-пакета url для более наглядного представления веб-адресов (\usepackage{url} в преамбуле), вероятно, лучше будет указать';
|
||||
$lang['vector_cite_retrieved'] = 'Retrieved';
|
||||
$lang['vector_cite_from'] = 'from';
|
||||
$lang['vector_cite_in'] = 'In';
|
||||
$lang['vector_cite_accessed'] = 'accessed';
|
||||
$lang['vector_cite_cited'] = 'cited';
|
||||
$lang['vector_cite_lastvisited'] = 'last visited';
|
||||
$lang['vector_cite_availableat'] = 'available at';
|
||||
$lang['vector_cite_discussionpages'] = 'Страницы обсуждения в «ДокуВики»';
|
||||
$lang['vector_cite_markup'] = 'Разметка';
|
||||
$lang['vector_cite_result'] = 'Результат';
|
||||
$lang['vector_cite_thisversion'] = 'текущая версия';
|
||||
|
||||
//прочее
|
||||
$lang['vector_search'] = 'Поиск';
|
||||
$lang['vector_accessdenied'] = 'Доступ запрещён';
|
||||
$lang['vector_fillplaceholder'] = 'Пожалуйста, укажите значение';
|
||||
$lang['vector_donate'] = 'Помощь';
|
||||
$lang['vector_mdtemplatefordw'] = 'Шаблон «Вектор» для «ДокуВики»';
|
||||
$lang['vector_recentchanges'] = 'Последние изменения';
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Russian language for the "Vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author anarchist IVANOV <ivanov@anarhist.org>
|
||||
* @author Aleksandr Selivanov <alexgearbox@gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//пользовательские страницы
|
||||
$lang['vector_userpage'] = 'Добавить пользовательские страницы?';
|
||||
$lang['vector_userpage_ns'] = 'Если «Да», использовать следующее «:пространство_имён:» как корневое для пользовательских страниц:';
|
||||
|
||||
//страницы обсуждений
|
||||
$lang['vector_discuss'] = 'Использовать вкладки/страницы обсуждений?';
|
||||
$lang['vector_discuss_ns'] = 'Если «Да», использовать следующее «:пространство_имён:» как корневое для страниц обсуждений:';
|
||||
|
||||
//уведомления сайта
|
||||
$lang['vector_sitenotice'] = 'Показывать уведомления сайта?';
|
||||
$lang['vector_sitenotice_location'] = 'Если «Да», использовать следующую страницу вики для уведомлений сайта:';
|
||||
|
||||
//навигация
|
||||
$lang['vector_navigation'] = 'Показывать навигацию?';
|
||||
$lang['vector_navigation_location'] = 'Если «Да», использовать следующую страницу вики для создания навигации:';
|
||||
|
||||
//блок экспорта (печать/экспорт)
|
||||
$lang['vector_exportbox'] = 'Показывать блок «печать/экспорт»?';
|
||||
$lang['vector_exportbox_default'] = 'Если «Да», использовать блок «печать/экспорт» по умолчанию?';
|
||||
$lang['vector_exportbox_location'] = 'Если не задействован блок по умолчанию, используйте следующую страницу вики как блок «печать/экспорт»:';
|
||||
|
||||
//инструменты
|
||||
$lang['vector_toolbox'] = 'Показывать инструменты?';
|
||||
$lang['vector_toolbox_default'] = 'Если «Да», использовать панель инструментов по умолчанию?';
|
||||
$lang['vector_toolbox_location'] = 'Если не задействована панель по умолчанию, используйте следующую страницу вики как панель инструментов:';
|
||||
|
||||
//уведомления об авторских правах
|
||||
$lang['vector_copyright'] = 'Показывать уведомления об авторских правах?';
|
||||
$lang['vector_copyright_default'] = 'Если «Да», использовать уведомления по умолчанию?';
|
||||
$lang['vector_copyright_location'] = 'Если «Нет», использовать следующую страницу вики для уведомления об авторских правах:';
|
||||
|
||||
//ссылка/кнопка пожертвований
|
||||
$lang['vector_donate'] = 'Показывать ссылку/кнопку пожертвований?';
|
||||
$lang['vector_donate_url'] = 'Если не задействована ссылка по умолчанию, используйте следующую ссылку для пожертвований:';
|
||||
|
||||
//TOC (список содержания страницы)
|
||||
$lang['vector_toc_position'] = 'Расположение списка содержания страниц (TOC)';
|
||||
|
||||
//прочее
|
||||
$lang['vector_breadcrumbs_position'] = 'Позиция навигационной цепочки (если включено):';
|
||||
$lang['vector_youarehere_position'] = 'Расположение панели «Вы находитесь здесь» (если включено):';
|
||||
$lang['vector_cite_author'] = 'Имя автора в «Цитировать страницу»:';
|
||||
$lang['vector_loaduserjs'] = 'Подгружать «vector/user/user.js»?';
|
||||
$lang['vector_closedwiki'] = 'Закрыть вики (большинство ссылок/вкладок/блоков будут скрыты от пользователя до входа)?';
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Slovak language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Peter Bezemek
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "Článok";
|
||||
$lang["vector_discussion"] = "Diskusia";
|
||||
$lang["vector_read"] = "Čítať";
|
||||
$lang["vector_edit"] = "Upraviť";
|
||||
$lang["vector_create"] = "Vytvoriť";
|
||||
$lang["vector_userpage"] = "Stránka Používateľa";
|
||||
$lang["vector_specialpage"] = "Špeciálne stránky";
|
||||
$lang["vector_mytalk"] = "Moje Diskusie";
|
||||
$lang["vector_exportodt"] = "Export: ODT";
|
||||
$lang["vector_exportpdf"] = "Export: PDF";
|
||||
$lang["vector_subscribens"] = "Prihlásiť odber zmien"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "Odhlásiť odber zmien"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "Jazyky";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "Navigácia";
|
||||
$lang["vector_toolbox"] = "Nástroje";
|
||||
$lang["vector_exportbox"] = "Tlač/export";
|
||||
$lang["vector_inotherlanguages"] = "Jazyky";
|
||||
$lang["vector_printexport"] = "Tlač/export";
|
||||
$lang["vector_personnaltools"] = "Osobné Nástroje";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "Spustiť";
|
||||
$lang["vector_btn_search"] = "Hľadať";
|
||||
$lang["vector_btn_search_title"] = "Hľadať tento text";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "Verzia pre tlač";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "Stiahnuť ako ODT";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "Stiahnuť ako PDF";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "Čo sem odkazuje";
|
||||
$lang["vector_toolbxdef_upload"] = "Nahrať súbor";
|
||||
$lang["vector_toolbxdef_siteindex"] = "Index stránok";
|
||||
$lang["vector_toolboxdef_permanent"] = "Trvalý odkaz";
|
||||
$lang["vector_toolboxdef_cite"] = "Citovať túto stránku";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "Bibliografické podrobnosti pre";
|
||||
$lang["vector_cite_pagename"] = "Názov stránky";
|
||||
$lang["vector_cite_author"] = "Autor";
|
||||
$lang["vector_cite_publisher"] = "Vydavateľ";
|
||||
$lang["vector_cite_dateofrev"] = "Dátum tejto revízie";
|
||||
$lang["vector_cite_dateretrieved"] = "Dátum načítania";
|
||||
$lang["vector_cite_permurl"] = "Trvalé URL";
|
||||
$lang["vector_cite_pageversionid"] = "Identifikátor Verzie Stránky";
|
||||
$lang["vector_cite_citationstyles"] = "Štýly citácie pre";
|
||||
$lang["vector_cite_checkstandards"] = "Prosím nezabudnite konzultovať príručku štýlu, normy sprievodcu alebo inštrukcie pre presnú syntax, ktorá vyhovuje vaším potrebám.";
|
||||
$lang["vector_cite_latexusepackagehint"] = "Ak používate URL balíka LaTeX (\usepackage{url} niekde v preambule), ktorý zvykne dávať oveľa krajšie sformátované webové adresy, vhodnejšie môže byť nasledujúce:";
|
||||
$lang["vector_cite_retrieved"] = "Načítané";
|
||||
$lang["vector_cite_from"] = "z";
|
||||
$lang["vector_cite_in"] = "V";
|
||||
$lang["vector_cite_accessed"] = "Prístup";
|
||||
$lang["vector_cite_cited"] = "Citované";
|
||||
$lang["vector_cite_lastvisited"] = "Posledná návšteva";
|
||||
$lang["vector_cite_availableat"] = "K dispozícii na";
|
||||
$lang["vector_cite_discussionpages"] = "Diskusné stránky DokuWiki";
|
||||
$lang["vector_cite_markup"] = "Anotácia";
|
||||
$lang["vector_cite_result"] = "Výsledok";
|
||||
$lang["vector_cite_thisversion"] = "táto verzia";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "Hľadať";
|
||||
$lang["vector_accessdenied"] = "Prístup zamietnutý";
|
||||
$lang["vector_fillplaceholder"] = "Vyplňte prosím tento zástupný symbol";
|
||||
$lang["vector_donate"] = "Darujte";
|
||||
$lang["vector_mdtemplatefordw"] = "Šablóna Vector pre DokuWiki";
|
||||
$lang["vector_recentchanges"] = "Nedávne zmeny";
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Slovak language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author Peter Bezemek
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "Používať Stránky Používateľa?";
|
||||
$lang["vector_userpage_ns"] = "Ak áno, použite nasledujúci ':namespace:' ako koreňový adresár pre používateľské stránky:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "Používať záložku/stránky Diskusia?";
|
||||
$lang["vector_discuss_ns"] = "Ak áno, použite nasledujúci ':namespace:' ako koreňový adresár pre používateľské stránky:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "Zobrazovať všeobecnú informáciu (na všetkých stránkach)?";
|
||||
$lang["vector_sitenotice_location"] = "Ak áno, pre definíciu všeobecnej informácie použite nasledujúcu wiki stránku:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "Zobrazovať navigáciu?";
|
||||
$lang["vector_navigation_location"] = "Ak áno, pre definíciu navigácie použite nasledujúcu wiki stránku:";
|
||||
$lang["vector_navigation_translate"] = "Ak áno a <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> je nainštalovaný: použiť navigáciu špecifickú pre daný jazyk?<br />Wiki stránka pre preloženú navigáciu je [hodnota pre 'vector_navigation_location']_[iso kód jazyka] (napr. ':wiki:navigation_sk').";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "Zobrazovať 'tlač/export'?";
|
||||
$lang["vector_exportbox_default"] = "Ak áno, používať základné nastavenie pre 'tlač/export'?";
|
||||
$lang["vector_exportbox_location"] = "Ak nie základné, používať pre definíciu funkcie 'tlač/export' nasledujúce umiestnenie:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "Zobrazovať nástroje?";
|
||||
$lang["vector_toolbox_default"] = "Ak áno, používať základné nastavenie pre nástroje?";
|
||||
$lang["vector_toolbox_location"] = "Ak nie základné, používať pre definíciu funkcie Nástroje nasledujúce umiestnenie:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "Zobrazovať správu o copyrighte?";
|
||||
$lang["vector_copyright_default"] = "Ak áno, používať základné nastavenie pre copyright?";
|
||||
$lang["vector_copyright_location"] = "Ak nie základné, používať pre definíciu copyrightu nasledujúce umiestnenie:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "Zobrazovať odkaz/tlačidlo pre dary/dotácie?";
|
||||
$lang["vector_donate_url"] = "Ak nie základné, používať pre dary nasledujúce URL:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "Pozícia Obsahu";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "Pozícia omrvinkovej navigácie (ak je povolená):";
|
||||
$lang["vector_youarehere_position"] = "Pozícia navigácie 'Nachádzate sa tu' (ak je povolená):";
|
||||
$lang["vector_cite_author"] = "Meno autora v 'Citujte tento Článok':";
|
||||
$lang["vector_loaduserjs"] = "Nahrať 'vector/user/user.js'?";
|
||||
$lang["vector_closedwiki"] = "Uzamknutá wiki (väčšina odkazov/záložiek/nástrojov je skrytá, až kým sa používateľ neprihlási)?";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#Note: If this file prevents running vector in your environment, simply delete
|
||||
# it. Everything should be safe even if the files blocked by the following
|
||||
# Apache rules are accessible.
|
||||
# The reason for protecting these files is to to keep searchengines/foo
|
||||
# away from indexing files containing version information, names and/or not
|
||||
# necessarily public template parts by default.
|
||||
Deny from all
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- prevent directory browsing -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Chinese (simplified) language for the "vector" DokuWiki template
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author LAINME <lainme993 [ät] gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//tabs, personal tools and special links
|
||||
$lang["vector_article"] = "文章";
|
||||
$lang["vector_discussion"] = "讨论";
|
||||
$lang["vector_read"] = "阅读";
|
||||
$lang["vector_edit"] = "编辑";
|
||||
$lang["vector_create"] = "创建";
|
||||
$lang["vector_userpage"] = "用户页";
|
||||
$lang["vector_specialpage"] = "特殊页面";
|
||||
$lang["vector_mytalk"] = "我的讨论";
|
||||
$lang["vector_exportodt"] = "导出:ODT";
|
||||
$lang["vector_exportpdf"] = "导出:PDF";
|
||||
$lang["vector_subscribens"] = "订阅命名空间改动"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
|
||||
$lang["vector_unsubscribens"] = "退订命名空间改动"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
|
||||
$lang["vector_translations"] = "语言";
|
||||
|
||||
//headlines for the different bars and boxes
|
||||
$lang["vector_navigation"] = "导航";
|
||||
$lang["vector_toolbox"] = "工具";
|
||||
$lang["vector_exportbox"] = "打印/导出";
|
||||
$lang["vector_inotherlanguages"] = "语言";
|
||||
$lang["vector_printexport"] = "打印/导出";
|
||||
$lang["vector_personnaltools"] = "个人工具箱";
|
||||
|
||||
//buttons
|
||||
$lang["vector_btn_go"] = "开始";
|
||||
$lang["vector_btn_search"] = "搜索";
|
||||
$lang["vector_btn_search_title"] = "搜索这个文本";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbxdef_print"] = "可打印版本";
|
||||
$lang["vector_exportbxdef_downloadodt"] = "做为ODT下载";
|
||||
$lang["vector_exportbxdef_downloadpdf"] = "做为PDF下载";
|
||||
|
||||
//default toolbox
|
||||
$lang["vector_toolbxdef_whatlinkshere"] = "反向链接";
|
||||
$lang["vector_toolbxdef_upload"] = "上传文件";
|
||||
$lang["vector_toolbxdef_siteindex"] = "网站地图";
|
||||
$lang["vector_toolboxdef_permanent"] = "永久链接";
|
||||
$lang["vector_toolboxdef_cite"] = "引用此文";
|
||||
|
||||
//cite this article
|
||||
$lang["vector_cite_bibdetailsfor"] = "文献详情:";
|
||||
$lang["vector_cite_pagename"] = "页面名称";
|
||||
$lang["vector_cite_author"] = "作者";
|
||||
$lang["vector_cite_publisher"] = "出版者";
|
||||
$lang["vector_cite_dateofrev"] = "修订日期";
|
||||
$lang["vector_cite_dateretrieved"] = "检索日期";
|
||||
$lang["vector_cite_permurl"] = "永久链接";
|
||||
$lang["vector_cite_pageversionid"] = "页面版本ID";
|
||||
$lang["vector_cite_citationstyles"] = "引文样式";
|
||||
$lang["vector_cite_checkstandards"] = "请记得检查您的样式手册,标准指南或者导师的指导,来获取适合您需求的准确样式";
|
||||
$lang["vector_cite_latexusepackagehint"] = "当使用LaTeX的url包(在开始的某处使用\usepackage{url})可以得到更好的网络地址,下列格式更受欢迎";
|
||||
$lang["vector_cite_retrieved"] = "检索";
|
||||
$lang["vector_cite_from"] = "从";
|
||||
$lang["vector_cite_in"] = "在";
|
||||
$lang["vector_cite_accessed"] = "获取";
|
||||
$lang["vector_cite_cited"] = "引用";
|
||||
$lang["vector_cite_lastvisited"] = "最后浏览";
|
||||
$lang["vector_cite_availableat"] = "获取地址";
|
||||
$lang["vector_cite_discussionpages"] = "DokuWiki讨论页面";
|
||||
$lang["vector_cite_markup"] = "标记";
|
||||
$lang["vector_cite_result"] = "结果";
|
||||
$lang["vector_cite_thisversion"] = "此版本";
|
||||
|
||||
//other
|
||||
$lang["vector_search"] = "搜索";
|
||||
$lang["vector_accessdenied"] = "拒绝访问";
|
||||
$lang["vector_fillplaceholder"] = "请填写此占位符 ";
|
||||
$lang["vector_donate"] = "捐赠";
|
||||
$lang["vector_mdtemplatefordw"] = "用于Dokuwiki的vector主题";
|
||||
$lang["vector_recentchanges"] = "最近更改";
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Chinese (simplified) language for the Config Manager
|
||||
*
|
||||
* If your language is not/only partially translated or you found an error/typo,
|
||||
* have a look at the following files:
|
||||
* - /lib/tpl/vector/lang/<your lang>/lang.php
|
||||
* - /lib/tpl/vector/lang/<your lang>/settings.php
|
||||
* If they are not existing, copy and translate the English ones (hint: looking
|
||||
* at <http://[your lang].wikipedia.org> might be helpful).
|
||||
*
|
||||
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
|
||||
* Thanks! :-D
|
||||
*
|
||||
*
|
||||
* LICENSE: This file is open source software (OSS) and may be copied under
|
||||
* certain conditions. See COPYING file for details or try to contact
|
||||
* the author(s) of this file in doubt.
|
||||
*
|
||||
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
|
||||
* @author LAINME <lainme993 [ät] gmail.com>
|
||||
* @link https://www.dokuwiki.org/template:vector
|
||||
* @link https://www.dokuwiki.org/config:lang
|
||||
* @link https://www.dokuwiki.org/devel:configuration
|
||||
*/
|
||||
|
||||
|
||||
//check if we are running within the DokuWiki environment
|
||||
if (!defined("DOKU_INC")){
|
||||
die();
|
||||
}
|
||||
|
||||
//user pages
|
||||
$lang["vector_userpage"] = "使用用户页?";
|
||||
$lang["vector_userpage_ns"] = "如果是,使用下列“:namespace:“作为用户页的根:";
|
||||
|
||||
//discussion pages
|
||||
$lang["vector_discuss"] = "使用讨论标签页/站点?";
|
||||
$lang["vector_discuss_ns"] = "如果是,使用下列“:namespace:“作为讨论页的根:";
|
||||
|
||||
//site notice
|
||||
$lang["vector_sitenotice"] = "显示站点公告?";
|
||||
$lang["vector_sitenotice_location"] = "如果是,使用下列wiki页面作为站点公告:";
|
||||
|
||||
//navigation
|
||||
$lang["vector_navigation"] = "显示导航?";
|
||||
$lang["vector_navigation_location"] = "如果是,使用下列wiki页面作为导航:";
|
||||
|
||||
//exportbox ("print/export")
|
||||
$lang["vector_exportbox"] = "显示“打印/导出”栏?";
|
||||
$lang["vector_exportbox_default"] = "如果是,使用默认的“打印/导出”栏?";
|
||||
$lang["vector_exportbox_location"] = "如果不是默认,使用下列wiki页面作为“打印/导出“栏位置:";
|
||||
|
||||
//toolbox
|
||||
$lang["vector_toolbox"] = "显示工具?";
|
||||
$lang["vector_toolbox_default"] = "如果是,使用默认工具?";
|
||||
$lang["vector_toolbox_location"] = "如果不是默认,使用下列wiki页面作为工具位置:";
|
||||
|
||||
//custom copyright notice
|
||||
$lang["vector_copyright"] = "显示版权信息?";
|
||||
$lang["vector_copyright_default"] = "如果是,使用默认的版权信息?";
|
||||
$lang["vector_copyright_location"] = "如果不是默认,使用下列wiki页面作为版权信息:";
|
||||
|
||||
//donation link/button
|
||||
$lang["vector_donate"] = "显示捐赠链接/按钮?";
|
||||
$lang["vector_donate_url"] = "如果不是默认,使用下列URL作为捐赠地址:";
|
||||
|
||||
//TOC
|
||||
$lang["vector_toc_position"] = "目录位置";
|
||||
|
||||
//other stuff
|
||||
$lang["vector_breadcrumbs_position"] = "足迹导航的位置(如果激活的话):";
|
||||
$lang["vector_youarehere_position"] = "“您在这里“导航的位置(如果激活的话):";
|
||||
$lang["vector_cite_author"] = "“引用此文“中的作者姓名:";
|
||||
$lang["vector_loaduserjs"] = "载入“vector/user/user.js“?";
|
||||
$lang["vector_closedwiki"] = "封闭wiki(许多链接/标签/栏是隐藏的,直到用户登录)?";
|
||||
|
||||
Reference in New Issue
Block a user