はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#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.
<FilesMatch "^inc_(detail|cite)\.php$">
Order Deny,Allow
Deny from all
</FilesMatch>
<FilesMatch "^(README|README-de|COPYING|ChangeLog|CREDITS|VERSION|style\.ini|template\.info\.txt|detail\.php|main\.php|mediamanager\.php)$">
Order Deny,Allow
Deny from all
</FilesMatch>
+101
View File
@@ -0,0 +1,101 @@
I. ARSAVA <dokuwiki@dev.arsava.com>
This DokuWiki template is maintained by ARSAVA [1]. If you like our
projects, you might buy us a coffee [2], or get some cool QR Code
merchandise [3]. Thank you! :-)
[1] <https://dev.arsava.com/>
[2] <https://donate.arsava.com/dokuwiki-template-vector/>
[3] <http://goqr.me/>
II. Theo Klein
Theo Klein contributed the Dutch language files and some ideas.
III. Fabio Reis
Fabio Reis contributed the Brazilian Portuguese language files and reported
a bug.
IV. Luigi Micco <l.micco [ät] tiscali.it>
Luigi Micco [1] contributed the Italian language files an reported a few
bugs.
[1] <http://www.luigimicco.altervista.org>
V. LAINME <lainme993 [ät] gmail.com>
LAINME contributed the Chinese translation (simplified) language files.
VI. Julien Revault d'Allonnes <jrevault [ät] gmail.com>
Julien Revault d'Allonne contributed the French language files.
VII. ander
ander contributed the Basque language files.
VIII. Albert Gasset
Albert Gasset contributed the Catalan language files.
IX. Jesús Muñoz Martínez <kisumum [ät] gmail.com>, Felipe Ruiz
Jesús Muñoz Martínez and Felipe Ruiz contributed the Spanish language files.
X. Aleksandr Selivanov, anarchist IVANOV
Aleksandr Selivanov and anarchist IVANOV contributed the Russion language
files.
XI. David Roesel <http://david.roesel.cz/>
David Roesel contributed the Czech language files.
XII. Peter Bezemek
Peter Bezemek contributed the Slovak language files.
XIII. Salman Mohammadi <salman [ät] shimool.org>
Salman Mohammadi [1] contributed the Persian language files.
[1] <http://www.shimool.org/salman>
IX. Myeongjin <aranet100 [ät] gmail.com>
Myeongjin contributed the Korean language files.
X. Dave
Dave contributed the Hebrew language files.
+7
View File
@@ -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
+263
View File
@@ -0,0 +1,263 @@
<?php
/**
* Default box configuration of the "vector" DokuWiki template
*
*
* 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/devel:configuration
*/
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own boxes, have a look at the README of this
template and "/user/boxes.php". You have been warned!
*****************************************************************************/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//note: The boxes will be rendered in the order they were defined. Means:
// first box will be rendered first, last box will be rendered at last.
//hide boxes for anonymous clients (closed wiki)?
if (empty($conf["useacl"]) || //are there any users?
$loginname !== "" || //user is logged in?
!tpl_getConf("vector_closedwiki")){
//Languages/translations provided by Andreas Gohr's translation plugin,
//see <https://www.dokuwiki.org/plugin:translation>. Create plugin object if
//needed.
if (file_exists(DOKU_PLUGIN."translation/syntax.php") &&
!plugin_isdisabled("translation")){
$transplugin = &plugin_load("syntax", "translation");
} else {
$transplugin = false;
}
//navigation
if (tpl_getConf("vector_navigation")){
//headline
$_vector_boxes["p-navigation"]["headline"] = $lang["vector_navigation"];
//detect wiki page to load as content
if (!empty($transplugin) &&
is_object($transplugin) &&
tpl_getConf("vector_navigation_translate")){
//translated navigation?
$transplugin_langcur = $transplugin->hlp->getLangPart(cleanID(getId())); //current language part
$transplugin_langs = explode(" ", trim($transplugin->getConf("translations"))); //available languages
if (empty($transplugin_langs) ||
empty($transplugin_langcur) ||
!is_array($transplugin_langs) ||
!in_array($transplugin_langcur, $transplugin_langs)) {
//current page is no translation or something is wrong, load default navigation
$nav_location = tpl_getConf("vector_navigation_location");
} else {
//load language specific navigation
$nav_location = tpl_getConf("vector_navigation_location")."_".$transplugin_langcur;
}
}else{
//default navigation, no translation
$nav_location = tpl_getConf("vector_navigation_location");
}
//content
if (empty($conf["useacl"]) ||
auth_quickaclcheck(cleanID($nav_location)) >= AUTH_READ){ //current user got access?
//get the rendered content of the defined wiki article to use as custom navigation
$interim = tpl_include_page($nav_location, false);
if ($interim === "" ||
$interim === false){
//creation/edit link if the defined page got no content
$_vector_boxes["p-navigation"]["xhtml"] = "[&#160;".html_wikilink($nav_location, hsc($lang["vector_fillplaceholder"]." (".$nav_location.")"))."&#160;]<br />";
}else{
//the rendered page content
$_vector_boxes["p-navigation"]["xhtml"] = $interim;
}
}
unset($nav_location);
}
//table of contents (TOC) - show outside the article? (this is a dirty hack but often requested)
if (tpl_getConf("vector_toc_position") === "sidebar"){
//check if the current page got a TOC
$toc = tpl_toc(true);
if (!empty($toc)) {
//headline
$_vector_boxes["p-toc"]["headline"] = $lang["toc"]; //language comes from DokuWiki core
//content
$_vector_boxes["p-toc"]["xhtml"] = //get rid of some styles and the embedded headline
str_replace(//search
array(//old TOC, until 2012-01-25
"<div class=\"tocheader toctoggle\" id=\"toc__header\">".$lang["toc"]."</div>", //language comes from DokuWiki core
" class=\"toc\"",
" id=\"toc__inside\"",
//new TOC, since 2012-09-10
" id=\"dw__toc\"",
"<h3 class=\"toggle\">".$lang["toc"]."</h3>"), //language comes from DokuWiki core
//replace
"",
//haystack
$toc);
}
unset($toc);
}
//exportbox ("print/export")
if (tpl_getConf("vector_exportbox")){
//headline
$_vector_boxes["p-coll-print_export"]["headline"] = $lang["vector_exportbox"];
//content
if (tpl_getConf("vector_exportbox_default")){
//define default, predefined exportbox
$_vector_boxes["p-coll-print_export"]["xhtml"] = " <ul>\n";
//ODT plugin
//see <https://www.dokuwiki.org/plugin:odt> for info
if (file_exists(DOKU_PLUGIN."odt/syntax.php") &&
!plugin_isdisabled("odt")){
$_vector_boxes["p-coll-print_export"]["xhtml"] .= " <li id=\"coll-download-as-odt\"><a href=\"".wl(cleanID(getId()), array("do" => "export_odt"))."\" rel=\"nofollow\">".hsc($lang["vector_exportbxdef_downloadodt"])."</a></li>\n";
}
//dw2pdf plugin
//see <https://www.dokuwiki.org/plugin:dw2pdf> for info
if (file_exists(DOKU_PLUGIN."dw2pdf/action.php") &&
!plugin_isdisabled("dw2pdf")){
$_vector_boxes["p-coll-print_export"]["xhtml"] .= " <li id=\"coll-download-as-rl\"><a href=\"".wl(cleanID(getId()), array("do" => "export_pdf"))."\" rel=\"nofollow\">".hsc($lang["vector_exportbxdef_downloadpdf"])."</a></li>\n";
//html2pdf plugin
//see <https://www.dokuwiki.org/plugin:html2pdf> for info
} else if (file_exists(DOKU_PLUGIN."html2pdf/action.php") &&
!plugin_isdisabled("html2pdf")){
$_vector_boxes["p-coll-print_export"]["xhtml"] .= " <li id=\"coll-download-as-rl\"><a href=\"".wl(cleanID(getId()), array("do" => "export_pdf"))."\" rel=\"nofollow\">".hsc($lang["vector_exportbxdef_downloadpdf"])."</a></li>\n";
}
$_vector_boxes["p-coll-print_export"]["xhtml"] .= " <li id=\"t-print\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "print"))."\" rel=\"nofollow\">".hsc($lang["vector_exportbxdef_print"])."</a></li>\n"
." </ul>";
}else{
//we have to use a custom exportbox
if (empty($conf["useacl"]) ||
auth_quickaclcheck(cleanID(tpl_getConf("vector_exportbox_location"))) >= AUTH_READ){ //current user got access?
//get the rendered content of the defined wiki article to use as
//custom exportbox
$interim = tpl_include_page(tpl_getConf("vector_exportbox_location"), false);
if ($interim === "" ||
$interim === false){
//add creation/edit link if the defined page got no content
$_vector_boxes["p-coll-print_export"]["xhtml"] = "<li>[&#160;".html_wikilink(tpl_getConf("vector_exportbox_location"), hsc($lang["vector_fillplaceholder"]." (".tpl_getConf("vector_exportbox_location").")"), null)."&#160;]<br /></li>";
}else{
//add the rendered page content
$_vector_boxes["p-coll-print_export"]["xhtml"] = $interim;
}
}else{
//we are not allowed to show the content of the defined wiki
//article to use as custom sitenotice.
//$_vector_boxes["p-tb"]["xhtml"] = hsc($lang["vector_accessdenied"])." (".tpl_getConf("vector_exportbox_location").")";
}
}
}
//toolbox
if (tpl_getConf("vector_toolbox")){
//headline
$_vector_boxes["p-tb"]["headline"] = $lang["vector_toolbox"];
//content
if (tpl_getConf("vector_toolbox_default")){
//define default, predefined toolbox
$_vector_boxes["p-tb"]["xhtml"] = " <ul>\n";
if (actionOK("backlink")){ //check if action is disabled
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-whatlinkshere\"><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\">".hsc($lang["vector_toolbxdef_whatlinkshere"])."</a></li>\n"; //we might use tpl_actionlink("backlink", "", "", hsc($lang["vector_toolbxdef_whatlinkshere"]), true), but it would be the only toolbox link where this is possible... therefore I don't use it to be consistent
}
if (actionOK("recent")){ //check if action is disabled
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-recentchanges\"><a href=\"".wl("", array("do" => "recent"))."\" rel=\"nofollow\">".hsc($lang["btn_recent"])."</a></li>\n"; //language comes from DokuWiki core
}
if (actionOK("media")){ //check if action is disabled
if (function_exists("media_managerURL")) {
//use new media manager (available on releases newer than 2011-05-25a "Rincewind" / since 2011-11-10 "Angua" RC1)
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-upload\"><a href=\"".wl("", array("do" => "media"))."\" rel=\"nofollow\">".hsc($lang["btn_media"])."</a></li>\n"; //language comes from DokuWiki core
} else {
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-upload\"><a href=\"".DOKU_BASE."lib/exe/mediamanager.php?ns=".getNS(getID())."\" rel=\"nofollow\">".hsc($lang["vector_toolbxdef_upload"])."</a></li>\n";
}
}
if (actionOK("index")){ //check if action is disabled
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-special\"><a href=\"".wl("", array("do" => "index"))."\" rel=\"nofollow\">".hsc($lang["vector_toolbxdef_siteindex"])."</a></li>\n";
}
$_vector_boxes["p-tb"]["xhtml"] .= " <li id=\"t-permanent\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollow\">".hsc($lang["vector_toolboxdef_permanent"])."</a></li>\n"
." <li id=\"t-cite\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "cite"))."\" rel=\"nofollow\">".hsc($lang["vector_toolboxdef_cite"])."</a></li>\n"
." </ul>";
}else{
//we have to use a custom toolbox
if (empty($conf["useacl"]) ||
auth_quickaclcheck(cleanID(tpl_getConf("vector_toolbox_location"))) >= AUTH_READ){ //current user got access?
//get the rendered content of the defined wiki article to use as
//custom toolbox
$interim = tpl_include_page(tpl_getConf("vector_toolbox_location"), false);
if ($interim === "" ||
$interim === false){
//add creation/edit link if the defined page got no content
$_vector_boxes["p-tb"]["xhtml"] = "<li>[&#160;".html_wikilink(tpl_getConf("vector_toolbox_location"), hsc($lang["vector_fillplaceholder"]." (".tpl_getConf("vector_toolbox_location").")"), null)."&#160;]<br /></li>";
}else{
//add the rendered page content
$_vector_boxes["p-tb"]["xhtml"] = $interim;
}
}else{
//we are not allowed to show the content of the defined wiki
//article to use as custom sitenotice.
//$_vector_boxes["p-tb"]["xhtml"] = hsc($lang["vector_accessdenied"])." (".tpl_getConf("vector_toolbox_location").")";
}
}
}
//QR Code of current page's URL (powered by <http://goqr.me/api/>)
if (tpl_getConf("vector_qrcodebox")){
//headline
$_vector_boxes["p-qrcode"]["headline"] = $lang["vector_qrcodebox"];
//content
$_vector_boxes["p-qrcode"]["xhtml"] = " <span id=\"t-qrcode\">".((cleanID(getID()) === "start") ? "<a href=\"http://".(($conf["lang"] !== "de") ? "goqr.me" : "goqr.me/de")."/\" target=\"_blank\" rel=\"nofollow\">" : "")."<img src=\"".((!empty($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] === "on") ? "https" : "http")."://api.qrserver.com/v1/create-qr-code/?data=".urlencode(wl(cleanID(getId()), false, true, "&"))."&#38;size=130x130&#38;margin=0&#38;bgcolor=f3f3f3\" alt=\"".hsc($lang["vector_qrcodebox_qrcode"])." ".hsc(tpl_pagetitle(null, true))." (".hsc($lang["vector_qrcodebox_genforcurrentpage"]).")\" title=\"".hsc($lang["vector_qrcodebox_urlofcurrentpage"])."\" />".((cleanID(getID()) === "start") ? "</a>" : "")."</span>";
}
}else{
//headline
$_vector_boxes["p-login"]["headline"] = $lang["btn_login"];
$_vector_boxes["p-login"]["xhtml"] = " <ul>\n"
." <li id=\"t-login\"><a href=\"".wl(cleanID(getId()), array("do" => "login"))."\" rel=\"nofollow\">".hsc($lang["btn_login"])."</a></li>\n" //language comes from DokuWiki core
." </ul>";
}
//Languages/translations provided by Andreas Gohr's translation plugin,
//see <https://www.dokuwiki.org/plugin:translation>
if (!empty($transplugin) &&
is_object($transplugin)){
$_vector_boxes["p-lang"]["headline"] = $lang["vector_translations"];
$_vector_boxes["p-lang"]["xhtml"] = $transplugin->_showTranslations();
}
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own boxes, have a look at the README of this
template and "/user/boxes.php". You have been warned!
*****************************************************************************/
+94
View File
@@ -0,0 +1,94 @@
<?php
/**
* Default button configuration of the "vector" DokuWiki template
*
*
* 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/devel:configuration
*/
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own buttons, have a look at the README of this
template and "/user/buttons.php". You have been warned!
*****************************************************************************/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//note: The buttons will be rendered in the order they were defined. Means:
// first button will be rendered first, last button will be rendered at
// last.
//RSS recent changes button
$_vector_btns["rss"]["img"] = DOKU_TPL."static/img/button-rss.png";
$_vector_btns["rss"]["href"] = DOKU_BASE."feed.php";
$_vector_btns["rss"]["width"] = 80;
$_vector_btns["rss"]["height"] = 15;
$_vector_btns["rss"]["title"] = $lang["vector_recentchanges"];
$_vector_btns["rss"]["nofollow"] = true;
//"vector for DokuWiki" button
$_vector_btns["vecfdw"]["img"] = DOKU_TPL."static/img/button-vector.png";
$_vector_btns["vecfdw"]["href"] = "https://www.dokuwiki.org/template:vector";
$_vector_btns["vecfdw"]["width"] = 80;
$_vector_btns["vecfdw"]["height"] = 15;
$_vector_btns["vecfdw"]["title"] = $lang["vector_mdtemplatefordw"];
$_vector_btns["vecfdw"]["nofollow"] = !(cleanID(getID()) === "start");
//donation button
if (tpl_getConf("vector_donate")){
$_vector_btns["donate"]["img"] = DOKU_TPL."static/img/button-donate.gif";
$_vector_btns["donate"]["href"] = tpl_getConf("vector_donate_url");
$_vector_btns["donate"]["width"] = 80;
$_vector_btns["donate"]["height"] = 15;
$_vector_btns["donate"]["title"] = $lang["vector_donate"];
$_vector_btns["donate"]["nofollow"] = true;
}
//DokuWiki button
$_vector_btns["dw"]["img"] = DOKU_TPL."static/img/button-dw.png";
$_vector_btns["dw"]["href"] = "https://www.dokuwiki.org/";
$_vector_btns["dw"]["width"] = 80;
$_vector_btns["dw"]["height"] = 15;
$_vector_btns["dw"]["title"] = "DokuWiki";
$_vector_btns["dw"]["nofollow"] = !(cleanID(getID()) === "start");
//W3C (X)HTML validator button
$_vector_btns["valid_xhtml"]["img"] = DOKU_TPL."static/img/button-xhtml.png";
$_vector_btns["valid_xhtml"]["href"] = "http://validator.w3.org/check/referer";
$_vector_btns["valid_xhtml"]["width"] = 80;
$_vector_btns["valid_xhtml"]["height"] = 15;
$_vector_btns["valid_xhtml"]["title"] = "Valid XHTML";
$_vector_btns["valid_xhtml"]["nofollow"] = true;
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own buttons, have a look at the README of this
template and "/user/buttons.php". You have been warned!
*****************************************************************************/
+85
View File
@@ -0,0 +1,85 @@
<?php
/**
* Default options for the "vector" DokuWiki template
*
* Notes:
* - In general, use the admin webinterface of DokuWiki to change the config.
* - To change the type of a config value, have a look at "metadata.php" in
* the same directory as this file.
* - To change/translate the descriptions showed in the admin/configuration
* menu of DokuWiki, have a look at the file
* /lib/tpl/vector/lang/<your lang>/settings.php. If it does not exists,
* copy and translate the English one. Don't forget to mail your translation
* to ARSAVA <dokuwiki@dev.arsava.com>. Thanks! :-D
* - To change the [tabs|boxes|buttons] configuration, have a look at
* "/user/[tabs|boxes|buttons].php".
*
*
* 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/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//user pages
$conf["vector_userpage"] = 1; //1: use/show user pages
$conf["vector_userpage_ns"] = ":wiki:user:"; //namespace to use for user page storage
//discussion pages
$conf["vector_discuss"] = 1; //1: use/show discussion pages
$conf["vector_discuss_ns"] = ":talk:"; //namespace to use for discussion page storage
//site notice
$conf["vector_sitenotice"] = 1; //1: use/show sitenotice
$conf["vector_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice
$conf["vector_sitenotice_translate"] = 1; //1: load translated sitenotice if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
//navigation
$conf["vector_navigation"] = 1; //1: use/show navigation
$conf["vector_navigation_location"] = ":wiki:navigation"; //page/article used to store the navigation
$conf["vector_navigation_translate"] = 1; //1: load translated navigation if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
//exportbox ("print/export")
$conf["vector_exportbox"] = 1; //1: use/show exportbox
$conf["vector_exportbox_default"] = 1; //1: use default exportbox (if exportbox is enabled at all)
$conf["vector_exportbox_location"] = ":wiki:exportbox"; //page/article used to store a custom exportbox
//toolbox
$conf["vector_toolbox"] = 1; //1: use/show toolbox
$conf["vector_toolbox_default"] = 1; //1: use default toolbox (if toolbox is enabled at all)
$conf["vector_toolbox_location"] = ":wiki:toolbox"; //page/article used to store a custom toolbox
//qr code box
$conf["vector_qrcodebox"] = 1; //1: use/show box with QR Code of current page's URL
//custom copyright notice
$conf["vector_copyright"] = 1; //1: use/show copyright notice
$conf["vector_copyright_default"] = 1; //1: use default copyright notice (if copyright notice is enabled at all)
$conf["vector_copyright_location"] = ":wiki:copyright"; //page/article used to store a custom copyright notice
$conf["vector_copyright_translate"] = 1; //1: load translated copyright notice if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
//donation link/button
$conf["vector_donate"] = 0; //1: use/show donation link/button
$conf["vector_donate_url"] = "https://donate.arsava.com/dokuwiki-template-vector/"; //custom donation URL
//TOC
$conf["vector_toc_position"] = "article"; //article: show TOC embedded within the article; "sidebar": show TOC near the navigation, left column
//other stuff
$conf["vector_breadcrumbs_position"] = "bottom"; //position of breadcrumbs navigation ("top" or "bottom")
$conf["vector_youarehere_position"] = "top"; //position of "you are here" navigation ("top" or "bottom")
$conf["vector_cite_author"] = "Anonymous Contributors"; //name to use for the author on the citation page
$conf["vector_loaduserjs"] = 0; //1: vector/user/user.js will be loaded
$conf["vector_closedwiki"] = 0; //1: hides most tabs/functions until user is logged in
+9
View File
@@ -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>
+85
View File
@@ -0,0 +1,85 @@
<?php
/**
* Types of the different option values for the "vector" DokuWiki template
*
* Notes:
* - In general, use the admin webinterface of DokuWiki to change the config.
* - To change/add configuration values to store, have a look at this file
* and the "default.php" in the same directory as this file.
* - To change/translate the descriptions showed in the admin/configuration
* menu of DokuWiki, have a look at the file
* /lib/tpl/vector/lang/<your lang>/settings.php. If it does not exists,
* copy and translate the English one. Don't forget to mail your translation
* to ARSAVA <dokuwiki@dev.arsava.com>. Thanks! :-D
* - To change the tab configuration, have a look at the "tabs.php" in the
* same directory as this file.
*
*
* 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/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//user pages
$meta["vector_userpage"] = array("onoff");
$meta["vector_userpage_ns"] = array("string", "_pattern" => "/^:.{1,}:$/");
//discussion pages
$meta["vector_discuss"] = array("onoff");
$meta["vector_discuss_ns"] = array("string", "_pattern" => "/^:.{1,}:$/");
//site notice
$meta["vector_sitenotice"] = array("onoff");
$meta["vector_sitenotice_location"] = array("string");
$meta["vector_sitenotice_translate"] = array("onoff");
//navigation
$meta["vector_navigation"] = array("onoff");
$meta["vector_navigation_location"] = array("string");
$meta["vector_navigation_translate"] = array("onoff");
//exportbox ("print/export")
$meta["vector_exportbox"] = array("onoff");
$meta["vector_exportbox_default"] = array("onoff");
$meta["vector_exportbox_location"] = array("string");
//toolbox
$meta["vector_toolbox"] = array("onoff");
$meta["vector_toolbox_default"] = array("onoff");
$meta["vector_toolbox_location"] = array("string");
//qr code box
$meta["vector_qrcodebox"] = array("onoff");
//custom copyright notice
$meta["vector_copyright"] = array("onoff");
$meta["vector_copyright_default"] = array("onoff");
$meta["vector_copyright_location"] = array("string");
$meta["vector_copyright_translate"] = array("onoff");
//donation link/button
$meta["vector_donate"] = array("onoff");
$meta["vector_donate_url"] = array("string", "_pattern" => "/^.{1,6}:\/{2}.+$/");
//TOC
$meta["vector_toc_position"] = array("multichoice", "_choices" => array("article", "sidebar"));
//other stuff
$meta["vector_breadcrumbs_position"] = array("multichoice", "_choices" => array("top", "bottom"));
$meta["vector_youarehere_position"] = array("multichoice", "_choices" => array("top", "bottom"));
$meta["vector_cite_author"] = array("string");
$meta["vector_loaduserjs"] = array("onoff");
$meta["vector_closedwiki"] = array("onoff");
+176
View File
@@ -0,0 +1,176 @@
<?php
/**
* Default tab configuration of the "vector" DokuWiki template
*
*
* 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/devel:configuration
*/
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own tabs, have a look at the README of this template
and "/user/tabs.php". You have been warned!
*****************************************************************************/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
/****************************** LEFT NAVIGATION ******************************/
//note: The tabs will be rendered in the order they were defined. Means: first
// tab will be rendered first, last tab will be rendered at last.
//article tab
//ATTENTION: "ca-nstab-main" is used as css id selector!
if (substr(getID(), 0, strlen("wiki:user:")) !== "wiki:user:"){
$_vector_tabs_left["ca-nstab-main"]["text"] = $lang["vector_article"];
}else{
$_vector_tabs_left["ca-nstab-main"]["text"] = $lang["vector_userpage"];
}
$_vector_tabs_left["ca-nstab-main"]["accesskey"] = "V";
if ($vector_context !== "discuss"){ //$vector_context was defined within main.php
$_vector_tabs_left["ca-nstab-main"]["wiki"] = ":".getID();
$_vector_tabs_left["ca-nstab-main"]["class"] = "selected";
}else{
$_vector_tabs_left["ca-nstab-main"]["wiki"] = ":".substr(getID(), strlen(tpl_getConf("vector_discuss_ns"))-1);
}
//hide some tabs for anonymous clients (closed wiki)?
if (empty($conf["useacl"]) || //are there any users?
$loginname !== "" || //user is logged in?
!tpl_getConf("vector_closedwiki")){
//discussion tab
//ATTENTION: "ca-talk" is used as css id selector!
if (tpl_getConf("vector_discuss")){
$_vector_tabs_left["ca-talk"]["text"] = $lang["vector_discussion"];
if ($vector_context === "discuss"){ //$vector_context was defined within main.php
$_vector_tabs_left["ca-talk"]["wiki"] = ":".getID();
$_vector_tabs_left["ca-talk"]["class"] = "selected";
}else{
$_vector_tabs_left["ca-talk"]["wiki"] = tpl_getConf("vector_discuss_ns").getID();
}
}
}
/****************************** RIGHT NAVIGATION ******************************/
//note: The tabs will be rendered in the order they were defined. Means: first
// tab will be rendered first, last tab will be rendered at last.
//read tab
if(!empty($INFO["exists"])){
//ATTENTION: "ca-view" is used as css id selector!
$_vector_tabs_right["ca-view"]["text"] = $lang["vector_read"];
if ($vector_context !== "discuss"){ //$vector_context was defined within main.php
$_vector_tabs_right["ca-view"]["wiki"] = ":".getID();
if ($ACT === "show") { //$ACT comes from DokuWiki core
$_vector_tabs_right["ca-view"]["class"] = "selected";
}
}else{
$_vector_tabs_right["ca-view"]["wiki"] = ":".substr(getID(), strlen(tpl_getConf("vector_discuss_ns"))-1);
}
}
//hide some tabs for anonymous clients (closed wiki)?
if (empty($conf["useacl"]) || //are there any users?
$loginname !== "" || //user is logged in?
!tpl_getConf("vector_closedwiki")){
//edit/create/show source tab
//ATTENTION: "ca-edit" is used as css id selector!
$_vector_tabs_right["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "edit", "rev" => (int)$rev), false, "&");
$_vector_tabs_right["ca-edit"]["accesskey"] = "E";
if (!empty($INFO["writable"])){ //$INFO comes from DokuWiki core
if (!empty($INFO["draft"])){
$_vector_tabs_right["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "draft", "rev" => (int)$rev), false, "&");
$_vector_tabs_right["ca-edit"]["text"] = $lang["btn_draft"]; //language comes from DokuWiki core
}else{
if(!empty($INFO["exists"])){
$_vector_tabs_right["ca-edit"]["text"] = $lang["vector_edit"];
}else{
$_vector_tabs_right["ca-edit"]["text"] = $lang["vector_create"];
}
}
}elseif (actionOK("source")){ //check if action is disabled
$_vector_tabs_right["ca-edit"]["text"] = $lang["btn_source"]; //language comes from DokuWiki core
$_vector_tabs_right["ca-edit"]["accesskey"] = "E";
}
if ($ACT === "edit"){ //$ACT comes from DokuWiki core
$_vector_tabs_right["ca-edit"]["class"] = "selected";
}
//old versions/revisions tab
if (!empty($INFO["exists"]) &&
actionOK("revisions")){ //check if action is disabled
//ATTENTION: "ca-history" is used as css id selector!
$_vector_tabs_right["ca-history"]["text"] = $lang["btn_revs"]; //language comes from DokuWiki core
$_vector_tabs_right["ca-history"]["href"] = wl(cleanID(getId()), array("do" => "revisions"), false, "&");
$_vector_tabs_right["ca-history"]["accesskey"] = "O";
if ($ACT === "revisions"){ //$ACT comes from DokuWiki core
$_vector_tabs_right["ca-history"]["class"] = "selected";
}
}
//(un)subscribe tab
//ATTENTION: "ca-watch" is used as css id selector!
if (!empty($conf["useacl"]) &&
!empty($conf["subscribers"]) &&
!empty($loginname)){ //$loginname was defined within main.php
//2010-11-07 "Anteater" and newer ones
if (empty($lang["btn_unsubscribe"])) {
if (actionOK("subscribe")){ //check if action is disabled
$_vector_tabs_right["ca-watch"]["href"] = wl(cleanID(getId()), array("do" => "subscribe"), false, "&");
$_vector_tabs_right["ca-watch"]["text"] = $lang["btn_subscribe"]; //language comes from DokuWiki core
}
//2009-12-25 "Lemming" and older ones. See the following for information:
//<http://www.freelists.org/post/dokuwiki/Question-about-tpl-buttonsubscribe>
} else {
if (empty($INFO["subscribed"]) && //$INFO comes from DokuWiki core
actionOK("subscribe")){ //check if action is disabled
$_vector_tabs_right["ca-watch"]["href"] = wl(cleanID(getId()), array("do" => "subscribe"), false, "&");
$_vector_tabs_right["ca-watch"]["text"] = $lang["btn_subscribe"]; //language comes from DokuWiki core
}elseif (actionOK("unsubscribe")){ //check if action is disabled
$_vector_tabs_right["ca-watch"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribe"), false, "&");
$_vector_tabs_right["ca-watch"]["text"] = $lang["btn_unsubscribe"]; //language comes from DokuWiki core
}
}
}
}
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own tabs, have a look at the README of this template
and "/user/tabs.php". You have been warned!
*****************************************************************************/
+31
View File
@@ -0,0 +1,31 @@
<?php
/**
* DokuWiki Image Detail Template
*
*
* 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/devel:templates
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//do a little trick to use all the layout generated by main.php:
//1) this file will be called from dokuwiki
//2) we are including the main.php and tell it through $_GET["vecdo"] that
// it has to include the needed content from inc_detail.php at the correct
// place.
//get the main.php and signal: include the inc_detail.php
$_GET["vecdo"] = "detail";
include DOKU_TPLINC."main.php";
+180
View File
@@ -0,0 +1,180 @@
<?php
/**
* Content for the citation page
*
* This file will be imported by the "main.php".
*
*
* 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/devel:templates
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//detect rev
$rev = (int)$INFO["rev"];
if ($rev < 1){
$rev = (int)$INFO["lastmod"];
}
//set permanent URL
$permurl = DOKU_URL.DOKU_SCRIPT."?id=".getID()."&rev=".$rev; //no wl() here to get absolute URLs working without URL rewriting and stuff
?>
<h1><a name="bibliographic_details" id="bibliographic_details"><?php echo hsc($lang["vector_cite_bibdetailsfor"]); ?> &quot;<?php tpl_pagetitle(); ?>&quot;</a></h1>
<div class="level2">
<ul>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_pagename"]); ?>: <?php tpl_pagetitle(); ?></div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_author"]); ?>: <?php echo tpl_getConf("vector_cite_author"); ?></div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_publisher"]); ?>: <?php echo hsc($conf["title"]); ?>.</div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_dateofrev"]); ?>: <?php echo gmdate("j F Y H:i T", $rev); ?></div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_dateretrieved"]); ?>: <?php echo gmdate("j F Y H:i T"); ?></div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_permurl"]); ?>: <a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a></div>
</li>
<li class="level1">
<div class="li"><?php echo hsc($lang["vector_cite_pageversionid"]); ?>: <?php echo hsc($rev); ?></div>
</li>
</ul>
<p>
<?php echo hsc($lang["vector_cite_checkstandards"]); ?>
</p>
</div>
<h2><a name="citation_styles_for" id="citation_styles_for"><?php echo hsc($lang["vector_cite_citationstyles"]); ?> &quot;<?php tpl_pagetitle(); ?>&quot;</a></h2>
<h3><a name="apa_style" id="apa_style">APA</a></h3>
<div class="level3">
<p>
<?php tpl_pagetitle(); ?>. (<?php echo gmdate("Y, M j", $rev); ?>).
<?php echo hsc($lang["vector_cite_in"]); ?> <em><?php echo hsc($conf["title"]); ?></em>.
<?php echo hsc($lang["vector_cite_retrieved"])." ".gmdate("H:i, F j, Y,")." ".hsc($lang["vector_cite_from"]); ?>
<a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a>.
</p>
</div>
<h3><a name="mla_style" id="mla_style">MLA</a></h3>
<div class="level3">
<p>
<?php echo tpl_getConf("vector_cite_author"); ?>.
"<?php tpl_pagetitle(); ?>".
<em><?php echo hsc($conf["title"]); ?></em>.
<?php echo gmdate("j M. Y", $rev); ?>. Web. <?php echo gmdate("j M. Y, H:i"); ?>
</p>
</div>
<h3><a name="mhra_style" id="mhra_style">MHRA</a></h3>
<div class="level3">
<p>
<?php echo tpl_getConf("vector_cite_author"); ?>,
'<?php tpl_pagetitle(); ?>',
<em><?php echo hsc($conf["title"]); ?></em>,
<?php echo gmdate("j F Y, H:i T", $rev); ?>,
&lt;<a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a>&gt; [<?php echo hsc($lang["vector_cite_accessed"])." ".gmdate("j F Y"); ?>]
</p>
</div>
<h3><a name="chicago_style" id="chicago_style">Chicago</a></h3>
<div class="level3">
<p>
<?php echo tpl_getConf("vector_cite_author"); ?>,
"<?php tpl_pagetitle(); ?>",
<em><?php echo hsc($conf["title"]); ?></em>,
<a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a> (<?php echo hsc($lang["vector_cite_accessed"])." ".gmdate("F j, Y"); ?>).
</p>
</div>
<h3><a name="cbe_cse_style" id="cbe_cse_style">CBE/CSE</a></h3>
<div class="level3">
<p>
<?php echo tpl_getConf("vector_cite_author"); ?>.
<?php tpl_pagetitle(); ?> [Internet].
<?php echo hsc($conf["title"])?>; <?php echo gmdate("Y M j, H:i T", $rev); ?> [<?php echo hsc($lang["vector_cite_cited"])." ".gmdate("Y M j"); ?>].
<?php echo hsc($lang["vector_cite_availableat"]); ?>: <a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a>.
</p>
</div>
<h3><a name="bluebook_style" id="bluebook_style">Bluebook</a></h3>
<div class="level3">
<p>
<?php tpl_pagetitle(); ?>,
<a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a> (<?php echo hsc($lang["vector_cite_lastvisited"])." ".gmdate("F j, Y"); ?>).
</p>
</div>
<h3><a name="ama_style" id="ama_style">AMA</a></h3>
<div class="level3">
<p>
<?php echo tpl_getConf("vector_cite_author"); ?>.
<?php tpl_pagetitle(); ?>.
<?php echo hsc($conf["title"])?>.
<?php echo gmdate("F j, Y, H:i T", $rev); ?>.
<?php echo hsc($lang["vector_cite_availableat"]); ?>: <a rel="nofollow" href="<?php echo hsc($permurl); ?>"><?php echo hsc($permurl); ?></a>.
<?php echo hsc($lang["vector_cite_accessed"])." ".gmdate("F j, Y"); ?>.
</p>
</div>
<h3><a name="bibtex_entry" id="bibtex_entry">BibTeX</a></h3>
<div class="level3">
<pre>
@misc{ wiki:xxx,
author = &quot;<?php echo str_replace(",", "{,}", tpl_getConf("vector_cite_author")); ?>&quot;,
title = &quot;<?php str_replace(",", "{,}", tpl_pagetitle()); ?> --- <?php echo str_replace(",", "{,}", hsc($conf["title"])); ?>&quot;,
year = &quot;<?php echo gmdate("Y", $rev); ?>&quot;,
url = &quot;<?php echo str_replace(",", "{,}", hsc($permurl)); ?>&quot;,
note = &quot;[Online; accessed <?php echo gmdate("j-F-Y"); ?>]&quot;
}
</pre>
<p>
<?php echo hsc($lang["vector_cite_latexusepackagehint"]); ?>:
</p>
<pre>
@misc{ wiki:xxx,
author = &quot;<?php echo str_replace(",", "{,}", tpl_getConf("vector_cite_author")); ?>&quot;,
title = &quot;<?php str_replace(",", "{,}", tpl_pagetitle()); ?> --- <?php echo str_replace(",", "{,}", hsc($conf["title"])); ?>&quot;,
year = &quot;<?php echo gmdate("Y", $rev); ?>&quot;,
url = &quot;\url{<?php echo str_replace(",", "{,}", hsc($permurl)); ?>}&quot;,
note = &quot;[Online; accessed <?php echo gmdate("j-F-Y"); ?>]&quot;
author = &quot;<?php echo tpl_getConf("vector_cite_author"); ?>&quot;,
title = &quot;<?php tpl_pagetitle(); ?> --- <?php echo hsc($conf["title"]); ?>&quot;,
year = &quot;<?php echo gmdate("Y", $rev); ?>&quot;,
url = &quot;\url{<?php echo hsc($permurl); ?>}&quot;,
note = &quot;[Online; accessed <?php echo gmdate("j-F-Y"); ?>]&quot;
}
</pre>
</div>
<h3><a name="talk_pages" id="talk_pages"><?php echo hsc($lang["vector_cite_discussionpages"]); ?></a></h3>
<div class="level3">
<dl>
<dt><?php echo hsc($lang["vector_cite_markup"]); ?></dt>
<dd>[[<?php echo hsc(getID()); ?>|<?php tpl_pagetitle(); ?>]] ([[<?php echo hsc(getID()."?rev=".$rev); ?>|<?php echo hsc($lang["vector_cite_thisversion"]); ?>]])</dd>
</dl>
<dl>
<dt><?php echo hsc($lang["vector_cite_result"]); ?></dt>
<dd><a rel="nofollow" class="wikilink1" href="<?php echo hsc(wl(cleanID(getId()))); ?>"><?php tpl_pagetitle(); ?></a> (<a rel="nofollow" class="wikilink1" href="<?php echo hsc($permurl); ?>"><?php echo hsc($lang["vector_cite_thisversion"]); ?></a>)</dd>
</dl>
</div>
+98
View File
@@ -0,0 +1,98 @@
<?php
/**
* Image detail page
*
* See "detail.php" if you don't know how this is getting included within the
* "main.php".
*
* NOTE: Based on the detail.php out of the "starter" template by Anika Henke.
*
*
* 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/devel:templates
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
?>
<div id="dokuwiki__detail" class="dokuwiki">
<?php html_msgarea() ?>
<?php if($ERROR){ print $ERROR; }else{ ?>
<h1><?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?></h1>
<div class="content">
<?php tpl_img(900,700); /* parameters: maximum width, maximum height (and more) */ ?>
<div class="img_detail">
<h2><?php print nl2br(hsc(tpl_img_getTag('simple.title'))); ?></h2>
<dl>
<?php
$config_files = getConfigFiles('mediameta');
foreach ($config_files as $config_file) {
if(@file_exists($config_file)) {
include($config_file);
}
}
foreach($fields as $key => $tag){
$t = array();
if (!empty($tag[0])) {
$t = array($tag[0]);
}
if(is_array($tag[3])) {
$t = array_merge($t,$tag[3]);
}
$value = tpl_img_getTag($t);
if ($value) {
echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
if ($tag[2] == 'date') {
echo dformat($value);
} else {
echo hsc($value);
}
echo '</dd>';
}
}
$t_array = media_inuse(tpl_img_getTag('IPTC.File.Name',$IMG));
if (isset($t_array[0])) {
echo '<dt>'.$lang['reference'].':</dt>';
foreach ($t_array as $t) {
echo '<dd>'.html_wikilink($t,$t).'</dd>';
}
}
?>
</dl>
<?php //Comment in for Debug// dbg(tpl_img_getTag('Simple.Raw'));?>
</div>
<div class="clearer"></div>
</div><!-- /.content -->
<p class="back">
<?php
$imgNS = getNS($IMG);
$authNS = auth_quickaclcheck("$imgNS:*");
if (($authNS >= AUTH_UPLOAD) && function_exists('media_managerURL')) {
$mmURL = media_managerURL(array('ns' => $imgNS, 'image' => $IMG));
echo '<a href="'.$mmURL.'">'.$lang['img_manager'].'</a><br />';
}
?>
&larr; <?php echo $lang['img_backto']?> <?php tpl_pagelink($ID)?>
</p>
<?php } ?>
</div>
+9
View File
@@ -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>
+7
View File
@@ -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
+7
View File
@@ -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
+9
View File
@@ -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>
+110
View File
@@ -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";
+84
View File
@@ -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)";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+105
View File
@@ -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";
+79
View File
@@ -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í)?";
View File
@@ -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>
+111
View File
@@ -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)?";
+7
View File
@@ -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
+9
View File
@@ -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>
+111
View File
@@ -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";
+84
View File
@@ -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)?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+111
View File
@@ -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";
+84
View File
@@ -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)?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+105
View File
@@ -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";
+78
View File
@@ -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)";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+104
View File
@@ -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";
+78
View File
@@ -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)?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+104
View File
@@ -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"] = "تغییرهای اخیر";
+78
View File
@@ -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"] = " ویکی بسته‌شده (بیشتر پیوندها/برگه‌ها/جعبه‌ها تا زمانی که کاربر وارد حساب کاربری خود شود، به صورت مخفی است)";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+105
View File
@@ -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";
+78
View File
@@ -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) ?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+110
View File
@@ -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"] = "ùéðåééí àçøåðéí";
View File
+9
View File
@@ -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>
+7
View File
@@ -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
+9
View File
@@ -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>
+103
View File
@@ -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";
+81
View File
@@ -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'?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+111
View File
@@ -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";
+84
View File
@@ -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)?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+112
View File
@@ -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"] = "최근 바뀜";
+84
View File
@@ -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"] = "닫힌 위키입니까? (대부분의 링크/탭/도구를 사용자가 로그인하기 전에 숨깁니다)";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+106
View File
@@ -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";
+73
View File
@@ -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'?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+104
View File
@@ -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";
+72
View File
@@ -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'?";
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+106
View File
@@ -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'] = 'Подписка на&nbsp;правки раздела'; //оригинальный перевод DW $lang['btn_subscribens'] слишком длинный для вкладок
$lang['vector_unsubscribens'] = 'Отписка от&nbsp;правок раздела'; //оригинальный перевод 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'] = 'Варианты оформления ссылок на&nbsp;статью';
$lang['vector_cite_checkstandards'] = 'Пожалуйста, не&nbsp;забудьте проверить руководство по&nbsp;стилю, пособие по&nbsp;стандартам или точные рекомендации посинтаксису работы для соответствия вашим нуждам.';
$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'] = 'Страницы обсуждения в&nbsp;&laquo;ДокуВики&raquo;';
$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'] = 'Шаблон &laquo;Вектор&raquo; для &laquo;ДокуВики&raquo;';
$lang['vector_recentchanges'] = 'Последние изменения';
+79
View File
@@ -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'] = 'Если &laquo;Да&raquo;, использовать следующее &laquo;:пространство_имён:&raquo; как корневое для пользовательских страниц:';
//страницы обсуждений
$lang['vector_discuss'] = 'Использовать вкладки/страницы обсуждений?';
$lang['vector_discuss_ns'] = 'Если &laquo;Да&raquo;, использовать следующее &laquo;:пространство_имён:&raquo; как корневое для страниц обсуждений:';
//уведомления сайта
$lang['vector_sitenotice'] = 'Показывать уведомления сайта?';
$lang['vector_sitenotice_location'] = 'Если &laquo;Да&raquo;, использовать следующую страницу вики для уведомлений сайта:';
//навигация
$lang['vector_navigation'] = 'Показывать навигацию?';
$lang['vector_navigation_location'] = 'Если &laquo;Да&raquo;, использовать следующую страницу вики для создания навигации:';
//блок экспорта (печать/экспорт)
$lang['vector_exportbox'] = 'Показывать блок &laquo;печать/экспорт&raquo;?';
$lang['vector_exportbox_default'] = 'Если &laquo;Да&raquo;, использовать блок &laquo;печать/экспорт&raquo; по&nbsp;умолчанию?';
$lang['vector_exportbox_location'] = 'Если не&nbsp;задействован блок по&nbsp;умолчанию, используйте следующую страницу вики как блок &laquo;печать/экспорт&raquo;:';
//инструменты
$lang['vector_toolbox'] = 'Показывать инструменты?';
$lang['vector_toolbox_default'] = 'Если &laquo;Да&raquo;, использовать панель инструментов по&nbsp;умолчанию?';
$lang['vector_toolbox_location'] = 'Если не&nbsp;задействована панель по&nbsp;умолчанию, используйте следующую страницу вики как панель инструментов:';
//уведомления об авторских правах
$lang['vector_copyright'] = 'Показывать уведомления об&nbsp;авторских правах?';
$lang['vector_copyright_default'] = 'Если &laquo;Да&raquo;, использовать уведомления по умолчанию?';
$lang['vector_copyright_location'] = 'Если &laquo;Нет&raquo;, использовать следующую страницу вики для уведомления об&nbsp;авторских правах:';
//ссылка/кнопка пожертвований
$lang['vector_donate'] = 'Показывать ссылку/кнопку пожертвований?';
$lang['vector_donate_url'] = 'Если не&nbsp;задействована ссылка по&nbsp;умолчанию, используйте следующую ссылку для пожертвований:';
//TOC (список содержания страницы)
$lang['vector_toc_position'] = 'Расположение списка содержания страниц (TOC)';
//прочее
$lang['vector_breadcrumbs_position'] = 'Позиция навигационной цепочки (если включено):';
$lang['vector_youarehere_position'] = 'Расположение панели &laquo;Вы&nbsp;находитесь здесь&raquo; (если включено):';
$lang['vector_cite_author'] = 'Имя автора в&nbsp;&laquo;Цитировать страницу&raquo;:';
$lang['vector_loaduserjs'] = 'Подгружать &laquo;vector/user/user.js&raquo;?';
$lang['vector_closedwiki'] = 'Закрыть вики (большинство ссылок/вкладок/блоков будут скрыты от&nbsp;пользователя до&nbsp;входа)?';
View File
+7
View File
@@ -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
+9
View File
@@ -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>
+105
View File
@@ -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";
+79
View File
@@ -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)?";
View File
+7
View File
@@ -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

Some files were not shown because too many files have changed in this diff Show More