├── .htaccess ├── COPYING ├── CREDITS ├── README ├── VERSION ├── conf ├── .htaccess ├── boxes.php ├── buttons.php ├── default.php ├── index.html ├── metadata.php └── tabs.php ├── detail.php ├── inc_cite.php ├── inc_detail.php ├── index.html ├── lang ├── .htaccess ├── ca │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── cs │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── de-informal │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── de │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── en │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── es │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── eu │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── fa │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── fr │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── he │ ├── .htaccess │ ├── index.html │ ├── lang.php │ └── style.css ├── index.html ├── it │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── ko │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── nl │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── pt-br │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── ru │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── sk │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css └── zh │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── main.php ├── mediamanager.php ├── script.js ├── static ├── 3rd │ ├── dokuwiki │ │ ├── 00_starter-tmpl-notes.txt │ │ ├── _admin.css │ │ ├── _diff.css │ │ ├── _edit.css │ │ ├── _fileuploader.css │ │ ├── _footnotes.css │ │ ├── _forms.css │ │ ├── _imgdetail.css │ │ ├── _links.css │ │ ├── _media_fullscreen.css │ │ ├── _media_popup.css │ │ ├── _modal.css │ │ ├── _recent.css │ │ ├── _search.css │ │ ├── _tabs.css │ │ ├── _toc.css │ │ ├── apple-touch-icon.png │ │ ├── bullet.png │ │ ├── buttonshadow.png │ │ ├── closed-rtl.png │ │ ├── closed.gif │ │ ├── closed.png │ │ ├── email.png │ │ ├── external-link.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── inputshadow.png │ │ ├── logo.png │ │ ├── logo.png-readme.txt │ │ ├── open.gif │ │ ├── open.png │ │ ├── print.css │ │ ├── resizecol.png │ │ ├── tocdot2.gif │ │ └── unc.png │ ├── index.html │ └── vector │ │ ├── arrow-down-icon.png │ │ ├── audio-icon.png │ │ ├── border.png │ │ ├── bullet-icon.png │ │ ├── csshover.htc │ │ ├── document-icon.png │ │ ├── edit-icon.png │ │ ├── external-link-ltr-icon.png │ │ ├── external-link-rtl-icon.png │ │ ├── file-icon.png │ │ ├── index.html │ │ ├── link-icon.png │ │ ├── lock-icon.png │ │ ├── magnify-clip.png │ │ ├── mail-icon.png │ │ ├── main-ltr.css │ │ ├── main-rtl.css │ │ ├── news-icon.png │ │ ├── page-base.png │ │ ├── page-fade.png │ │ ├── portal-break-ltr.png │ │ ├── portal-break-rtl.png │ │ ├── portal-break.png │ │ ├── preferences-base.png │ │ ├── preferences-break.png │ │ ├── preferences-edge.png │ │ ├── preferences-fade.png │ │ ├── search-fade.png │ │ ├── search-ltr.png │ │ ├── search-rtl.png │ │ ├── tab-break.png │ │ ├── tab-current-fade.png │ │ ├── tab-normal-fade.png │ │ ├── talk-icon.png │ │ ├── user-icon.png │ │ ├── video-icon.png │ │ ├── watch-icon-loading.gif │ │ └── watch-icons.png ├── css │ ├── index.html │ ├── print.css │ ├── rtl.css │ ├── screen.css │ └── screen_iehacks.css ├── img │ ├── button-css.png │ ├── button-donate.gif │ ├── button-dw.png │ ├── button-rss.png │ ├── button-vector.png │ ├── button-xhtml.png │ └── index.html ├── index.html ├── js │ └── index.html └── mobile.less ├── style.ini ├── template.info.txt └── user ├── .htaccess ├── boxes.php.dist ├── buttons.php.dist ├── index.html ├── print.css.dist ├── rtl.css.dist ├── screen.css.dist ├── tabs.php.dist ├── tracker.php.dist └── user.js.dist /.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | 8 | Order Deny,Allow 9 | Deny from all 10 | 11 | 12 | Order Deny,Allow 13 | Deny from all 14 | 15 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | 2 | I. ARSAVA 3 | 4 | This DokuWiki template is maintained by ARSAVA [1]. If you like our 5 | projects, you might buy us a coffee [2], or get some cool QR Code 6 | merchandise [3]. Thank you! :-) 7 | 8 | [1] 9 | [2] 10 | [3] 11 | 12 | 13 | 14 | II. Theo Klein 15 | 16 | Theo Klein contributed the Dutch language files and some ideas. 17 | 18 | 19 | 20 | III. Fabio Reis 21 | 22 | Fabio Reis contributed the Brazilian Portuguese language files and reported 23 | a bug. 24 | 25 | 26 | 27 | IV. Luigi Micco 28 | 29 | Luigi Micco [1] contributed the Italian language files an reported a few 30 | bugs. 31 | 32 | [1] 33 | 34 | 35 | 36 | V. LAINME 37 | 38 | LAINME contributed the Chinese translation (simplified) language files. 39 | 40 | 41 | 42 | VI. Julien Revault d'Allonnes 43 | 44 | Julien Revault d'Allonne contributed the French language files. 45 | 46 | 47 | 48 | VII. ander 49 | 50 | ander contributed the Basque language files. 51 | 52 | 53 | 54 | VIII. Albert Gasset 55 | 56 | Albert Gasset contributed the Catalan language files. 57 | 58 | 59 | 60 | IX. Jesús Muñoz Martínez , Felipe Ruiz 61 | 62 | Jesús Muñoz Martínez and Felipe Ruiz contributed the Spanish language files. 63 | 64 | 65 | 66 | X. Aleksandr Selivanov, anarchist IVANOV 67 | 68 | Aleksandr Selivanov and anarchist IVANOV contributed the Russion language 69 | files. 70 | 71 | 72 | 73 | XI. David Roesel 74 | 75 | David Roesel contributed the Czech language files. 76 | 77 | 78 | 79 | XII. Peter Bezemek 80 | 81 | Peter Bezemek contributed the Slovak language files. 82 | 83 | 84 | 85 | XIII. Salman Mohammadi 86 | 87 | Salman Mohammadi [1] contributed the Persian language files. 88 | 89 | [1] 90 | 91 | 92 | 93 | IX. Myeongjin 94 | 95 | Myeongjin contributed the Korean language files. 96 | 97 | 98 | 99 | X. Dave 100 | 101 | Dave contributed the Hebrew language files. 102 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2014-02-09 2 | -------------------------------------------------------------------------------- /conf/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /conf/buttons.php: -------------------------------------------------------------------------------- 1 | 13 | * @link https://www.dokuwiki.org/template:vector 14 | * @link https://www.dokuwiki.org/devel:configuration 15 | */ 16 | 17 | 18 | 19 | /****************************************************************************** 20 | ******************************** ATTENTION ********************************* 21 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 22 | ****************************************************************************** 23 | If you want to add some own buttons, have a look at the README of this 24 | template and "/user/buttons.php". You have been warned! 25 | *****************************************************************************/ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | 34 | //note: The buttons will be rendered in the order they were defined. Means: 35 | // first button will be rendered first, last button will be rendered at 36 | // last. 37 | 38 | 39 | //RSS recent changes button 40 | $_vector_btns["rss"]["img"] = DOKU_TPL."static/img/button-rss.png"; 41 | $_vector_btns["rss"]["href"] = DOKU_BASE."feed.php"; 42 | $_vector_btns["rss"]["width"] = 80; 43 | $_vector_btns["rss"]["height"] = 15; 44 | $_vector_btns["rss"]["title"] = $lang["vector_recentchanges"]; 45 | $_vector_btns["rss"]["nofollow"] = true; 46 | 47 | 48 | //"vector for DokuWiki" button 49 | $_vector_btns["vecfdw"]["img"] = DOKU_TPL."static/img/button-vector.png"; 50 | $_vector_btns["vecfdw"]["href"] = "https://www.dokuwiki.org/template:vector"; 51 | $_vector_btns["vecfdw"]["width"] = 80; 52 | $_vector_btns["vecfdw"]["height"] = 15; 53 | $_vector_btns["vecfdw"]["title"] = $lang["vector_mdtemplatefordw"]; 54 | $_vector_btns["vecfdw"]["nofollow"] = !(cleanID(getID()) === "start"); 55 | 56 | 57 | //donation button 58 | if (tpl_getConf("vector_donate")){ 59 | $_vector_btns["donate"]["img"] = DOKU_TPL."static/img/button-donate.gif"; 60 | $_vector_btns["donate"]["href"] = tpl_getConf("vector_donate_url"); 61 | $_vector_btns["donate"]["width"] = 80; 62 | $_vector_btns["donate"]["height"] = 15; 63 | $_vector_btns["donate"]["title"] = $lang["vector_donate"]; 64 | $_vector_btns["donate"]["nofollow"] = true; 65 | } 66 | 67 | 68 | //DokuWiki button 69 | $_vector_btns["dw"]["img"] = DOKU_TPL."static/img/button-dw.png"; 70 | $_vector_btns["dw"]["href"] = "https://www.dokuwiki.org/"; 71 | $_vector_btns["dw"]["width"] = 80; 72 | $_vector_btns["dw"]["height"] = 15; 73 | $_vector_btns["dw"]["title"] = "DokuWiki"; 74 | $_vector_btns["dw"]["nofollow"] = !(cleanID(getID()) === "start"); 75 | 76 | 77 | //W3C (X)HTML validator button 78 | $_vector_btns["valid_xhtml"]["img"] = DOKU_TPL."static/img/button-xhtml.png"; 79 | $_vector_btns["valid_xhtml"]["href"] = "http://validator.w3.org/check/referer"; 80 | $_vector_btns["valid_xhtml"]["width"] = 80; 81 | $_vector_btns["valid_xhtml"]["height"] = 15; 82 | $_vector_btns["valid_xhtml"]["title"] = "Valid XHTML"; 83 | $_vector_btns["valid_xhtml"]["nofollow"] = true; 84 | 85 | 86 | 87 | /****************************************************************************** 88 | ******************************** ATTENTION ********************************* 89 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 90 | ****************************************************************************** 91 | If you want to add some own buttons, have a look at the README of this 92 | template and "/user/buttons.php". You have been warned! 93 | *****************************************************************************/ 94 | 95 | -------------------------------------------------------------------------------- /conf/default.php: -------------------------------------------------------------------------------- 1 | /settings.php. If it does not exists, 13 | * copy and translate the English one. Don't forget to mail your translation 14 | * to ARSAVA . Thanks! :-D 15 | * - To change the [tabs|boxes|buttons] configuration, have a look at 16 | * "/user/[tabs|boxes|buttons].php". 17 | * 18 | * 19 | * LICENSE: This file is open source software (OSS) and may be copied under 20 | * certain conditions. See COPYING file for details or try to contact 21 | * the author(s) of this file in doubt. 22 | * 23 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 24 | * @author ARSAVA 25 | * @link https://www.dokuwiki.org/template:vector 26 | * @link https://www.dokuwiki.org/devel:configuration 27 | */ 28 | 29 | 30 | //check if we are running within the DokuWiki environment 31 | if (!defined("DOKU_INC")){ 32 | die(); 33 | } 34 | 35 | //user pages 36 | $conf["vector_userpage"] = 1; //1: use/show user pages 37 | $conf["vector_userpage_ns"] = ":wiki:user:"; //namespace to use for user page storage 38 | 39 | //discussion pages 40 | $conf["vector_discuss"] = 1; //1: use/show discussion pages 41 | $conf["vector_discuss_ns"] = ":talk:"; //namespace to use for discussion page storage 42 | 43 | //site notice 44 | $conf["vector_sitenotice"] = 1; //1: use/show sitenotice 45 | $conf["vector_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice 46 | $conf["vector_sitenotice_translate"] = 1; //1: load translated sitenotice if translation plugin is available (see ) 47 | 48 | //navigation 49 | $conf["vector_navigation"] = 1; //1: use/show navigation 50 | $conf["vector_navigation_location"] = ":wiki:navigation"; //page/article used to store the navigation 51 | $conf["vector_navigation_translate"] = 1; //1: load translated navigation if translation plugin is available (see ) 52 | 53 | //exportbox ("print/export") 54 | $conf["vector_exportbox"] = 1; //1: use/show exportbox 55 | $conf["vector_exportbox_default"] = 1; //1: use default exportbox (if exportbox is enabled at all) 56 | $conf["vector_exportbox_location"] = ":wiki:exportbox"; //page/article used to store a custom exportbox 57 | 58 | //toolbox 59 | $conf["vector_toolbox"] = 1; //1: use/show toolbox 60 | $conf["vector_toolbox_default"] = 1; //1: use default toolbox (if toolbox is enabled at all) 61 | $conf["vector_toolbox_location"] = ":wiki:toolbox"; //page/article used to store a custom toolbox 62 | 63 | //qr code box 64 | $conf["vector_qrcodebox"] = 1; //1: use/show box with QR Code of current page's URL 65 | 66 | //custom copyright notice 67 | $conf["vector_copyright"] = 1; //1: use/show copyright notice 68 | $conf["vector_copyright_default"] = 1; //1: use default copyright notice (if copyright notice is enabled at all) 69 | $conf["vector_copyright_location"] = ":wiki:copyright"; //page/article used to store a custom copyright notice 70 | $conf["vector_copyright_translate"] = 1; //1: load translated copyright notice if translation plugin is available (see ) 71 | 72 | //donation link/button 73 | $conf["vector_donate"] = 0; //1: use/show donation link/button 74 | $conf["vector_donate_url"] = "https://donate.arsava.com/dokuwiki-template-vector/"; //custom donation URL 75 | 76 | //TOC 77 | $conf["vector_toc_position"] = "article"; //article: show TOC embedded within the article; "sidebar": show TOC near the navigation, left column 78 | 79 | //other stuff 80 | $conf["vector_breadcrumbs_position"] = "bottom"; //position of breadcrumbs navigation ("top" or "bottom") 81 | $conf["vector_youarehere_position"] = "top"; //position of "you are here" navigation ("top" or "bottom") 82 | $conf["vector_cite_author"] = "Anonymous Contributors"; //name to use for the author on the citation page 83 | $conf["vector_loaduserjs"] = 0; //1: vector/user/user.js will be loaded 84 | $conf["vector_closedwiki"] = 0; //1: hides most tabs/functions until user is logged in 85 | 86 | -------------------------------------------------------------------------------- /conf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /conf/metadata.php: -------------------------------------------------------------------------------- 1 | /settings.php. If it does not exists, 13 | * copy and translate the English one. Don't forget to mail your translation 14 | * to ARSAVA . Thanks! :-D 15 | * - To change the tab configuration, have a look at the "tabs.php" in the 16 | * same directory as this file. 17 | * 18 | * 19 | * LICENSE: This file is open source software (OSS) and may be copied under 20 | * certain conditions. See COPYING file for details or try to contact 21 | * the author(s) of this file in doubt. 22 | * 23 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 24 | * @author ARSAVA 25 | * @link https://www.dokuwiki.org/template:vector 26 | * @link https://www.dokuwiki.org/devel:configuration 27 | */ 28 | 29 | 30 | //check if we are running within the DokuWiki environment 31 | if (!defined("DOKU_INC")){ 32 | die(); 33 | } 34 | 35 | //user pages 36 | $meta["vector_userpage"] = array("onoff"); 37 | $meta["vector_userpage_ns"] = array("string", "_pattern" => "/^:.{1,}:$/"); 38 | 39 | //discussion pages 40 | $meta["vector_discuss"] = array("onoff"); 41 | $meta["vector_discuss_ns"] = array("string", "_pattern" => "/^:.{1,}:$/"); 42 | 43 | //site notice 44 | $meta["vector_sitenotice"] = array("onoff"); 45 | $meta["vector_sitenotice_location"] = array("string"); 46 | $meta["vector_sitenotice_translate"] = array("onoff"); 47 | 48 | //navigation 49 | $meta["vector_navigation"] = array("onoff"); 50 | $meta["vector_navigation_location"] = array("string"); 51 | $meta["vector_navigation_translate"] = array("onoff"); 52 | 53 | //exportbox ("print/export") 54 | $meta["vector_exportbox"] = array("onoff"); 55 | $meta["vector_exportbox_default"] = array("onoff"); 56 | $meta["vector_exportbox_location"] = array("string"); 57 | 58 | //toolbox 59 | $meta["vector_toolbox"] = array("onoff"); 60 | $meta["vector_toolbox_default"] = array("onoff"); 61 | $meta["vector_toolbox_location"] = array("string"); 62 | 63 | //qr code box 64 | $meta["vector_qrcodebox"] = array("onoff"); 65 | 66 | //custom copyright notice 67 | $meta["vector_copyright"] = array("onoff"); 68 | $meta["vector_copyright_default"] = array("onoff"); 69 | $meta["vector_copyright_location"] = array("string"); 70 | $meta["vector_copyright_translate"] = array("onoff"); 71 | 72 | //donation link/button 73 | $meta["vector_donate"] = array("onoff"); 74 | $meta["vector_donate_url"] = array("string", "_pattern" => "/^.{1,6}:\/{2}.+$/"); 75 | 76 | //TOC 77 | $meta["vector_toc_position"] = array("multichoice", "_choices" => array("article", "sidebar")); 78 | 79 | //other stuff 80 | $meta["vector_breadcrumbs_position"] = array("multichoice", "_choices" => array("top", "bottom")); 81 | $meta["vector_youarehere_position"] = array("multichoice", "_choices" => array("top", "bottom")); 82 | $meta["vector_cite_author"] = array("string"); 83 | $meta["vector_loaduserjs"] = array("onoff"); 84 | $meta["vector_closedwiki"] = array("onoff"); 85 | 86 | -------------------------------------------------------------------------------- /detail.php: -------------------------------------------------------------------------------- 1 | 13 | * @link https://www.dokuwiki.org/template:vector 14 | * @link https://www.dokuwiki.org/devel:templates 15 | */ 16 | 17 | //check if we are running within the DokuWiki environment 18 | if (!defined("DOKU_INC")){ 19 | die(); 20 | } 21 | 22 | //do a little trick to use all the layout generated by main.php: 23 | //1) this file will be called from dokuwiki 24 | //2) we are including the main.php and tell it through $_GET["vecdo"] that 25 | // it has to include the needed content from inc_detail.php at the correct 26 | // place. 27 | 28 | //get the main.php and signal: include the inc_detail.php 29 | $_GET["vecdo"] = "detail"; 30 | include DOKU_TPLINC."main.php"; 31 | 32 | -------------------------------------------------------------------------------- /inc_detail.php: -------------------------------------------------------------------------------- 1 | 18 | * @link https://www.dokuwiki.org/template:vector 19 | * @link https://www.dokuwiki.org/devel:templates 20 | */ 21 | 22 | //check if we are running within the DokuWiki environment 23 | if (!defined("DOKU_INC")){ 24 | die(); 25 | } 26 | ?> 27 | 28 |
29 | 30 | 31 | 32 | 33 |

34 | 35 |
36 | 37 | 38 |
39 |

40 | 41 |
42 | $tag){ 51 | $t = array(); 52 | if (!empty($tag[0])) { 53 | $t = array($tag[0]); 54 | } 55 | if(is_array($tag[3])) { 56 | $t = array_merge($t,$tag[3]); 57 | } 58 | $value = tpl_img_getTag($t); 59 | if ($value) { 60 | echo '
'.$lang[$tag[1]].':
'; 61 | if ($tag[2] == 'date') { 62 | echo dformat($value); 63 | } else { 64 | echo hsc($value); 65 | } 66 | echo '
'; 67 | } 68 | } 69 | 70 | $t_array = media_inuse(tpl_img_getTag('IPTC.File.Name',$IMG)); 71 | if (isset($t_array[0])) { 72 | echo '
'.$lang['reference'].':
'; 73 | foreach ($t_array as $t) { 74 | echo '
'.html_wikilink($t,$t).'
'; 75 | } 76 | } 77 | ?> 78 |
79 | 80 |
81 |
82 |
83 | 84 |

85 | = AUTH_UPLOAD) && function_exists('media_managerURL')) { 89 | $mmURL = media_managerURL(array('ns' => $imgNS, 'image' => $IMG)); 90 | echo ''.$lang['img_manager'].'
'; 91 | } 92 | ?> 93 | ← 94 |

95 | 96 | 97 |
98 | 99 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/ca/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/ca/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/ca/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Albert Gasset Romo 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Habilita les pàgines d'usuari"; 36 | $lang["vector_userpage_ns"] = "Espai arrel de les pàgines d'usauri"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Habilita les discussions"; 40 | $lang["vector_discuss_ns"] = "Espai arrel de les discussions"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Mostra l'avís del lloc"; 44 | $lang["vector_sitenotice_location"] = "Pàgina de l'avís del lloc"; 45 | $lang["vector_sitenotice_translate"] = "Utilitza l'avís del lloc traduït si el connector Translation està disponible.
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')."; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "Mostra la navegació"; 49 | $lang["vector_navigation_location"] = "Pàgina de la navegació"; 50 | $lang["vector_navigation_translate"] = "Utilitza la navegació traduïda si el connector Translation està disponible.
La pàgina de navegació traduïda és [valor de 'vector_navigation_location']_[codi de llengüa ISO] (per exemple, ':wiki:navigation_de')."; 51 | 52 | //exportbox ("print/export") 53 | $lang["vector_exportbox"] = "Mostra el quadre 'imprimeix/exporta'"; 54 | $lang["vector_exportbox_default"] = "Quadre 'imprimeix/exporta' predeterminat"; 55 | $lang["vector_exportbox_location"] = "Pàgina del quadre 'imprimeix/exporta'"; 56 | 57 | //toolbox 58 | $lang["vector_toolbox"] = "Mostra el quadre d'eines"; 59 | $lang["vector_toolbox_default"] = "Quadre d'eines predeterminat"; 60 | $lang["vector_toolbox_location"] = "Pàgina del quadre d'eines"; 61 | 62 | //qr code box 63 | $lang["vector_qrcodebox"] = "Mostra el codi QR de la pàgina actual (per a transferir fàcilment l'URL a navegadors mòbils)"; 64 | 65 | //custom copyright notice 66 | $lang["vector_copyright"] = "Mostra l'avís de drets d'autor"; 67 | $lang["vector_copyright_default"] = "Avís de drets d'autor predeterminat"; 68 | $lang["vector_copyright_location"] = "Pàgina de l'avís de drets d'autor"; 69 | $lang["vector_copyright_translate"] = "Utilitza l'avís de drets d'autor traduït si el connector Translation està disponible.
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')."; 70 | 71 | //donation link/button 72 | $lang["vector_donate"] = "Mostra l'enllaç/botó de donacions"; 73 | $lang["vector_donate_url"] = "URL de donacions:"; 74 | 75 | //TOC 76 | $lang["vector_toc_position"] = "Posició de la taule de continguts"; 77 | 78 | //other stuff 79 | $lang["vector_breadcrumbs_position"] = "Posició del camí de navegació"; 80 | $lang["vector_youarehere_position"] = "Posició de la navegació 'sou aquí'"; 81 | $lang["vector_cite_author"] = "Nom de l'autor a 'cita aquest article'"; 82 | $lang["vector_loaduserjs"] = "Carrega 'vector/user/user.js'"; 83 | $lang["vector_closedwiki"] = "Wiki tancada (la majoria d'enllaços/pestanyes/quadres s'amaguen fins que l'usuari entri)"; 84 | 85 | -------------------------------------------------------------------------------- /lang/ca/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/ca/style.css -------------------------------------------------------------------------------- /lang/cs/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/cs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/cs/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author David Roesel 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Používat uživatelské stránky?"; 36 | $lang["vector_userpage_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Používat diskusní taby/stránky?"; 40 | $lang["vector_discuss_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář pro diskuse:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Zobrazovat globální upozornění?"; 44 | $lang["vector_sitenotice_location"] = "Pokud ano, použít jako globální upozornění tuto stránku:"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "Zobrazovat navigaci?"; 48 | $lang["vector_navigation_location"] = "Pokud ano, použít jako navigaci následující stránku:"; 49 | 50 | //exportbox ("print/export") 51 | $lang["vector_exportbox"] = "Zobrazovat 'tisk/export' sekci?"; 52 | $lang["vector_exportbox_default"] = "Pokud ano, používat původní 'tisk/export' sekci?"; 53 | $lang["vector_exportbox_location"] = "Pokud ne tu původní, potom používat následující stránku jako 'tisk/export' sekci:"; 54 | 55 | //toolbox 56 | $lang["vector_toolbox"] = "Zobrazovat nástroje?"; 57 | $lang["vector_toolbox_default"] = "Pokud ano, používat původní nástroje?"; 58 | $lang["vector_toolbox_location"] = "Pokud ne ty původní, potom používat následující stránku jako nástroje:"; 59 | 60 | //custom copyright notice 61 | $lang["vector_copyright"] = "Zobrazovat informace o autorských právech?"; 62 | $lang["vector_copyright_default"] = "Pokud ano, používat původní informace o autorských právech?"; 63 | $lang["vector_copyright_location"] = "Pokud ne ty původní, potom používat následující stránku jako informace o autorských právech:"; 64 | 65 | //donation link/button 66 | $lang["vector_donate"] = "Zobrazovat možnost \"Přispět\"?"; 67 | $lang["vector_donate_url"] = "Pokud ne ten původní, potom tento odkaz:"; 68 | 69 | //TOC 70 | $lang["vector_toc_position"] = "Pozice obsahu:"; 71 | 72 | //other stuff 73 | $lang["vector_mediamanager_embedded"] = "Zobrazovat mediamanger vložený v běžném layoutu?"; 74 | $lang["vector_breadcrumbs_position"] = "Pozice aktuální cesty (breadcrumbs) (je-li tato funkce povolena):"; 75 | $lang["vector_youarehere_position"] = "Pozice navigace 'Jste tady' (je-li tato funkce povolena):"; 76 | $lang["vector_cite_author"] = "Jméno autora při použití 'Citovat tento článek':"; 77 | $lang["vector_loaduserjs"] = "Nahrávat 'vector/user/user.js'?"; 78 | $lang["vector_closedwiki"] = "Je wiki zavřená (většina odkazů/tabů/boxů nebude vidět do přihlášení)?"; 79 | 80 | -------------------------------------------------------------------------------- /lang/cs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/cs/style.css -------------------------------------------------------------------------------- /lang/de-informal/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/de-informal/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/de-informal/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author ARSAVA 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Benutzerseiten benutzen?"; 36 | $lang["vector_userpage_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Benutzerseiten nutzen:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Diskussions-Tabs/Seiten benutzen?"; 40 | $lang["vector_discuss_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Diskussionen nutzen:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Seitenübergreifenden Hinweis einblenden?"; 44 | $lang["vector_sitenotice_location"] = "Falls ja, folgende wiki-Seite als Hinweis verwenden:"; 45 | $lang["vector_sitenotice_translate"] = "Falls ja und Translation-Plugin verfügbar: sprachspezifische Seiten-Hinweis(e) laden?
Die wiki-Seite des/der übersetzten Seiten-Hinweis(e) lautet [Wert von 'vector_sitenotice_location']_[iso-sprach-code] (z.B. ':wiki:site_notice_en')."; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "Navigation anzeigen?"; 49 | $lang["vector_navigation_location"] = "Falls ja, folgende wiki-Seite als Navigation verwenden:"; 50 | $lang["vector_navigation_translate"] = "Falls ja und Translation-Plugin verfügbar: sprachspezifische Navigation laden?
Die wiki-Seite der übersetzten Navigation(en) lautet [Wert von 'vector_navigation_location']_[iso-sprach-code] (z.B. ':wiki:navigation_en')."; 51 | 52 | //exportbox ("print/export") 53 | $lang["vector_exportbox"] = "'Drucken/exportieren'-Box anzeigen?"; 54 | $lang["vector_exportbox_default"] = "Falls ja, Standard-'Drucken/exportieren'-Box nutzen?"; 55 | $lang["vector_exportbox_location"] = "Falls nicht die Standard-'Drucken/exportieren'-Box, folgende wiki-Seite als Toolbox verwenden:"; 56 | 57 | //toolbox 58 | $lang["vector_toolbox"] = "Toolbox/Werkzeuge anzeigen?"; 59 | $lang["vector_toolbox_default"] = "Falls ja, Standard-Toolbox nutzen?"; 60 | $lang["vector_toolbox_location"] = "Falls nicht die Standard-Toolbox, folgende wiki-Seite als Toolbox verwenden:"; 61 | 62 | //qr code box 63 | $lang["vector_qrcodebox"] = "Box mit QR-Code der aktuellen Wiki-Seiten-URL anzeigen (für einfache Übertragung der URL auf Mobiltelefone)?"; 64 | 65 | //custom copyright notice 66 | $lang["vector_copyright"] = "Copyright-Hinweis einblenden?"; 67 | $lang["vector_copyright_default"] = "Falls ja, Standard-Copyright-Hinweis nutzen?"; 68 | $lang["vector_copyright_location"] = "Falls nicht den Standard-Copyright-Hinweis, folgende wiki-Seite als Copyright-Hinweis verwenden:"; 69 | $lang["vector_copyright_translate"] = "Falls nicht den Standard-Copyright-Hinweis und Translation-Plugin verfügbar: sprachspezifische Copyright-Hinweis(e) laden?
Die wiki-Seite des/der übersetzten Copyright-Hinweis(e) lautet [Wert von 'vector_copyright_location']_[iso-sprach-code] (z.B. ':wiki:copyright_en')."; 70 | 71 | //donation link/button 72 | $lang["vector_donate"] = "'Spenden'-Link/button anzeigen?"; 73 | $lang["vector_donate_url"] = "Folgende URL als Spendenziel benutzen:"; 74 | 75 | //TOC 76 | $lang["vector_toc_position"] = "Position des Inhaltsverzeichnisses"; 77 | 78 | //other stuff 79 | $lang["vector_breadcrumbs_position"] = "Position der breadcrumb-Navigation (sofern aktiviert):"; 80 | $lang["vector_youarehere_position"] = "Position der 'Sie befinden sich hier'-Navigation (sofern aktiviert):"; 81 | $lang["vector_cite_author"] = "Zu nutzender Autorenname in 'Artikel zitieren':"; 82 | $lang["vector_loaduserjs"] = "Datei 'vector/user/user.js' laden?"; 83 | $lang["vector_closedwiki"] = "Nicht-öffentliches Wiki (die meisten Links/Tabs/Boxen werden versteckt bis man sich einloggt)?"; 84 | 85 | -------------------------------------------------------------------------------- /lang/de-informal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/de-informal/style.css -------------------------------------------------------------------------------- /lang/de/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/de/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/de/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author ARSAVA 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Benutzerseiten benutzen?"; 36 | $lang["vector_userpage_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Benutzerseiten nutzen:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Diskussions-Tabs/Seiten benutzen?"; 40 | $lang["vector_discuss_ns"] = "Falls ja, folgenden ':namensraum:' als Wurzel für Diskussionen nutzen:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Seitenübergreifenden Hinweis einblenden?"; 44 | $lang["vector_sitenotice_location"] = "Falls ja, folgende wiki-Seite als Hinweis verwenden:"; 45 | $lang["vector_sitenotice_translate"] = "Falls ja und Translation-Plugin verfügbar: sprachspezifische Seiten-Hinweis(e) laden?
Die wiki-Seite des/der übersetzten Seiten-Hinweis(e) lautet [Wert von 'vector_sitenotice_location']_[iso-sprach-code] (z.B. ':wiki:site_notice_en')."; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "Navigation anzeigen?"; 49 | $lang["vector_navigation_location"] = "Falls ja, folgende wiki-Seite als Navigation verwenden:"; 50 | $lang["vector_navigation_translate"] = "Falls ja und Translation-Plugin verfügbar: sprachspezifische Navigation laden?
Die wiki-Seite der übersetzten Navigation(en) lautet [Wert von 'vector_navigation_location']_[iso-sprach-code] (z.B. ':wiki:navigation_en')."; 51 | 52 | //exportbox ("print/export") 53 | $lang["vector_exportbox"] = "'Drucken/exportieren'-Box anzeigen?"; 54 | $lang["vector_exportbox_default"] = "Falls ja, Standard-'Drucken/exportieren'-Box nutzen?"; 55 | $lang["vector_exportbox_location"] = "Falls nicht die Standard-'Drucken/exportieren'-Box, folgende wiki-Seite als Toolbox verwenden:"; 56 | 57 | //toolbox 58 | $lang["vector_toolbox"] = "Toolbox/Werkzeuge anzeigen?"; 59 | $lang["vector_toolbox_default"] = "Falls ja, Standard-Toolbox nutzen?"; 60 | $lang["vector_toolbox_location"] = "Falls nicht die Standard-Toolbox, folgende wiki-Seite als Toolbox verwenden:"; 61 | 62 | //qr code box 63 | $lang["vector_qrcodebox"] = "Box mit QR-Code der aktuellen Wiki-Seiten-URL anzeigen (für einfache Übertragung der URL auf Mobiltelefone)?"; 64 | 65 | //custom copyright notice 66 | $lang["vector_copyright"] = "Copyright-Hinweis einblenden?"; 67 | $lang["vector_copyright_default"] = "Falls ja, Standard-Copyright-Hinweis nutzen?"; 68 | $lang["vector_copyright_location"] = "Falls nicht den Standard-Copyright-Hinweis, folgende wiki-Seite als Copyright-Hinweis verwenden:"; 69 | $lang["vector_copyright_translate"] = "Falls nicht den Standard-Copyright-Hinweis und Translation-Plugin verfügbar: sprachspezifische Copyright-Hinweis(e) laden?
Die wiki-Seite des/der übersetzten Copyright-Hinweis(e) lautet [Wert von 'vector_copyright_location']_[iso-sprach-code] (z.B. ':wiki:copyright_en')."; 70 | 71 | //donation link/button 72 | $lang["vector_donate"] = "'Spenden'-Link/button anzeigen?"; 73 | $lang["vector_donate_url"] = "Folgende URL als Spendenziel benutzen:"; 74 | 75 | //TOC 76 | $lang["vector_toc_position"] = "Position des Inhaltsverzeichnisses"; 77 | 78 | //other stuff 79 | $lang["vector_breadcrumbs_position"] = "Position der breadcrumb-Navigation (sofern aktiviert):"; 80 | $lang["vector_youarehere_position"] = "Position der 'Sie befinden sich hier'-Navigation (sofern aktiviert):"; 81 | $lang["vector_cite_author"] = "Zu nutzender Autorenname in 'Artikel zitieren':"; 82 | $lang["vector_loaduserjs"] = "Datei 'vector/user/user.js' laden?"; 83 | $lang["vector_closedwiki"] = "Nicht-öffentliches Wiki (die meisten Links/Tabs/Boxen werden versteckt bis man sich einloggt)?"; 84 | 85 | -------------------------------------------------------------------------------- /lang/de/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/de/style.css -------------------------------------------------------------------------------- /lang/en/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/en/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/en/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author ARSAVA 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Use User pages?"; 36 | $lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Use discussion tabs/sites?"; 40 | $lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Show site wide notice?"; 44 | $lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:"; 45 | $lang["vector_sitenotice_translate"] = "If yes and Translation plugin available: load language specific site wide notice?
The wiki page of the translated site notice(s) is [value of 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de')."; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "Show navigation?"; 49 | $lang["vector_navigation_location"] = "If yes, use following wiki page as navigation:"; 50 | $lang["vector_navigation_translate"] = "If yes and Translation plugin available: load language specific navigation?
The wiki page of the translated navigation(s) is [value of 'vector_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de')."; 51 | 52 | //exportbox ("print/export") 53 | $lang["vector_exportbox"] = "Show 'print/export' box?"; 54 | $lang["vector_exportbox_default"] = "If yes, use default 'print/export' box?"; 55 | $lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:"; 56 | 57 | //toolbox 58 | $lang["vector_toolbox"] = "Show tools?"; 59 | $lang["vector_toolbox_default"] = "If yes, use default tools?"; 60 | $lang["vector_toolbox_location"] = "If not default, use following wiki page as tools location:"; 61 | 62 | //qr code box 63 | $lang["vector_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?"; 64 | 65 | //custom copyright notice 66 | $lang["vector_copyright"] = "Show copyright notice?"; 67 | $lang["vector_copyright_default"] = "If yes, use default copyright notice?"; 68 | $lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:"; 69 | $lang["vector_copyright_translate"] = "If not default and Translation plugin available: load language specific copyright notice?
The wiki page of the translated copyright notice(s) is [value of 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de')."; 70 | 71 | //donation link/button 72 | $lang["vector_donate"] = "Show donation link/button?"; 73 | $lang["vector_donate_url"] = "Use following URL for donations:"; 74 | 75 | //TOC 76 | $lang["vector_toc_position"] = "Table of contents (TOC) position"; 77 | 78 | //other stuff 79 | $lang["vector_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):"; 80 | $lang["vector_youarehere_position"] = "Position of 'You are here' navigation (if enabled):"; 81 | $lang["vector_cite_author"] = "Author name in 'Cite this Article':"; 82 | $lang["vector_loaduserjs"] = "Load 'vector/user/user.js'?"; 83 | $lang["vector_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?"; 84 | 85 | -------------------------------------------------------------------------------- /lang/en/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/en/style.css -------------------------------------------------------------------------------- /lang/es/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/es/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/es/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Jesús Muñoz Martínez 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Usar páginas de Usuario?"; 36 | $lang["vector_userpage_ns"] = "Sí, usa la siguiente ':namespace:' como raíz para las páginas de usuario:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "¿Usar pestañas/sitios de discusión?"; 40 | $lang["vector_discuss_ns"] = "Sí, usa la siguiente ':namespace:' como raíz para las discusiones:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Show site wide notice?"; 44 | $lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "¿Mostrar navegación?"; 48 | $lang["vector_navigation_location"] = "Sí, usar la siguiente página de la wiki como navegación:"; 49 | 50 | //exportbox ("print/export") 51 | $lang["vector_exportbox"] = "¿Mostrar la caja 'imprimir/exportar'?"; 52 | $lang["vector_exportbox_default"] = "Sí, usar la caja predeterminada'imprimir/exportar' por defecto"; 53 | $lang["vector_exportbox_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como localización de la caja'imprimir/exportar':"; 54 | 55 | //toolbox 56 | $lang["vector_toolbox"] = "¿Mostrar herramientas?"; 57 | $lang["vector_toolbox_default"] = "Si, usar herramientas predeterminadas"; 58 | $lang["vector_toolbox_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como localización de las herramientas:"; 59 | 60 | //custom copyright notice 61 | $lang["vector_copyright"] = "¿Mostrar aviso de derechos de autor?"; 62 | $lang["vector_copyright_default"] = "Sí, usar aviso de derechos de autor predeterminado"; 63 | $lang["vector_copyright_location"] = "si no usar predeterminado, usar la siguiente página de la wiki como aviso de derechos de autor:"; 64 | 65 | //donation link/button 66 | $lang["vector_donate"] = "Mostrar enlace/botón de donación?"; 67 | $lang["vector_donate_url"] = "si no usar predeterminado, usar la siguiente URL para las donaciones:"; 68 | 69 | //TOC 70 | $lang["vector_toc_position"] = "Posición de la Tabla de Contenidos"; 71 | 72 | //other stuff 73 | $lang["vector_breadcrumbs_position"] = "Posición de breadcrumb en navegación (si habilitada):"; 74 | $lang["vector_youarehere_position"] = "Posicion de 'Tu estás aquí' en navegación (si habilitada):"; 75 | $lang["vector_cite_author"] = "Nombre del author en 'Cita este Artículo':"; 76 | $lang["vector_loaduserjs"] = "¿Cargar 'vector/user/user.js'?"; 77 | $lang["vector_closedwiki"] = "¿Wiki cerrada?.(la mayoría de enlaces/pestañas/cajas están escondidas hasta que el usuario se conecta)"; 78 | 79 | -------------------------------------------------------------------------------- /lang/es/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/es/style.css -------------------------------------------------------------------------------- /lang/eu/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/eu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/eu/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author ander 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Erabili erabiltzaile orrialdeak?"; 36 | $lang["vector_userpage_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' erabiltzaile orrialdeen erro bezala:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Erabili eztabaida fitxak/lekuak?"; 40 | $lang["vector_discuss_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' eztabaiden orrialdeen erro bezala:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Erakutsi lekuaren oharrak?"; 44 | $lang["vector_sitenotice_location"] = "Bai bada, erabili hurrengo wiki orrialdea lekuaren oharrenfako:"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "Erakutsi Nabigazioa?"; 48 | $lang["vector_navigation_location"] = "Bai bada, erabili hurrengo wiki orria nabigaziorako:"; 49 | 50 | //exportbox ("print/export") 51 | $lang["vector_exportbox"] = "Erakutsi 'imprimatu/esportatu' koadroa?"; 52 | $lang["vector_exportbox_default"] = "Bai bada, erabili lehenetsitako 'imprimatu/esportatu' koadroa?"; 53 | $lang["vector_exportbox_location"] = "Ez bada lehenetsia, erabili hurrengo orrialdea 'inprimatu/esportatu' koadroaren kokapen bezala:"; 54 | 55 | //toolbox 56 | $lang["vector_toolbox"] = "Erakutsi tresna koadroa?"; 57 | $lang["vector_toolbox_default"] = "Bai bada, lehenetsitako tresna koadroa erabili?"; 58 | $lang["vector_toolbox_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea tresna koadroaren kokapen bezala:"; 59 | 60 | //custom copyright notice 61 | $lang["vector_copyright"] = "Erakutsi copyright oharra?"; 62 | $lang["vector_copyright_default"] = "Bai bada, erabili lehenetsitako copyright oharra?"; 63 | $lang["vector_copyright_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea copyright oharrarendako:"; 64 | 65 | //donation link/button 66 | $lang["vector_donate"] = "Erakutsi dohaintza lotura/botoia?"; 67 | $lang["vector_donate_url"] = "Ez bada lehenetsia, erabili hurrengo URL-a dohaintzetarako:"; 68 | 69 | //TOC 70 | $lang["vector_toc_position"] = "Edukien taularen (TOC) posizioa"; 71 | 72 | //other stuff 73 | $lang["vector_breadcrumbs_position"] = "Breadcrumb-aren posizioa nabigazioan (gaituta badago):"; 74 | $lang["vector_youarehere_position"] = "'Hemen zaude'-ren posizioa nabigazioan (gaituta badago):"; 75 | $lang["vector_cite_author"] = "Jarri autorearen izena 'Artikuluaren aipamenean':"; 76 | $lang["vector_loaduserjs"] = "Kargatu 'vector/user/user.js'?"; 77 | $lang["vector_closedwiki"] = "Wiki itxia (lotura/fitxa/koadro gehienak ezkutatuta daude erabiltzailea sartu arte)?"; 78 | 79 | -------------------------------------------------------------------------------- /lang/eu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/eu/style.css -------------------------------------------------------------------------------- /lang/fa/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/fa/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/fa/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is free software and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Salman Mohammadi 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs, personal tools and special links 35 | $lang["vector_article"] = "مقاله"; 36 | $lang["vector_discussion"] = "بحث"; 37 | $lang["vector_read"] = "خواندن"; 38 | $lang["vector_edit"] = "ویرایش"; 39 | $lang["vector_create"] = "ساختن"; 40 | $lang["vector_userpage"] = "صفحه‌ی کاربر"; 41 | $lang["vector_specialpage"] = "صفحه‌های ویژه"; 42 | $lang["vector_mytalk"] = "گفتگوی کم"; 43 | $lang["vector_exportodt"] = "بارگیری به صورت ODT"; 44 | $lang["vector_exportpdf"] = "بارگیری به صورت PDF"; 45 | $lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 46 | $lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 47 | $lang["vector_translations"] = "زبان‌ها"; 48 | 49 | //headlines for the different bars and boxes 50 | $lang["vector_navigation"] = "ناوبری"; 51 | $lang["vector_toolbox"] = "جعبه ابزار"; 52 | $lang["vector_exportbox"] = "چاپ/برون‌بری"; 53 | $lang["vector_inotherlanguages"] = "زبان‌ها"; 54 | $lang["vector_printexport"] = "چاپ/برون‌بری"; 55 | $lang["vector_personnaltools"] = "ابزارهای شخصی"; 56 | 57 | //buttons 58 | $lang["vector_btn_go"] = "برو"; 59 | $lang["vector_btn_search"] = "جست‌و‌جو"; 60 | $lang["vector_btn_search_title"] = "جست‌و‌جو برای این متن"; 61 | 62 | //exportbox ("print/export") 63 | $lang["vector_exportbxdef_print"] = "نسخه‌ی قابل چاپ"; 64 | $lang["vector_exportbxdef_downloadodt"] = "بارگیری به صورت ODT"; 65 | $lang["vector_exportbxdef_downloadpdf"] = "بارگیری به صورت PDF"; 66 | 67 | //default toolbox 68 | $lang["vector_toolbxdef_whatlinkshere"] = "پیوندهای به این صفحه"; 69 | $lang["vector_toolbxdef_upload"] = "بارگذاری پرونده"; 70 | $lang["vector_toolbxdef_siteindex"] = "شاخص وب‌گاه"; 71 | $lang["vector_toolboxdef_permanent"] = "پیوند پایدار"; 72 | $lang["vector_toolboxdef_cite"] = "یادکرد این صفحه"; 73 | 74 | //cite this article 75 | $lang["vector_cite_bibdetailsfor"] = "جزییات کتاب‌شناسی برای"; 76 | $lang["vector_cite_pagename"] = "نام صفحه"; 77 | $lang["vector_cite_author"] = "نویسنده"; 78 | $lang["vector_cite_publisher"] = "منتشر کننده"; 79 | $lang["vector_cite_dateofrev"] = "تاریخ آخرین بازبینی"; 80 | $lang["vector_cite_dateretrieved"] = "تاریخ بازیابی"; 81 | $lang["vector_cite_permurl"] = "پیوند دایمی"; 82 | $lang["vector_cite_pageversionid"] = "شناسه ویرایش صفحه"; 83 | $lang["vector_cite_citationstyles"] = "شیوه‌های یادکرد برای"; 84 | $lang["vector_cite_checkstandards"] = "لطفاُ به یاد داشته باشید که برای سینتکس دقیق که مطابق با نیازهای شما باشد، باید به دفترچه‌راهنمای شیوه، راهنماهای استاندارد و یا دیگر راهنماها مراجعه کنید"; 85 | $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"; 86 | $lang["vector_cite_retrieved"] = "بازبینی‌شده"; 87 | $lang["vector_cite_from"] = "از"; 88 | $lang["vector_cite_in"] = "در"; 89 | $lang["vector_cite_accessed"] = "بازبینی شده"; 90 | $lang["vector_cite_cited"] = "یاد شده"; 91 | $lang["vector_cite_lastvisited"] = "آخرین دیدار"; 92 | $lang["vector_cite_availableat"] = "موجود در"; 93 | $lang["vector_cite_discussionpages"] = "صفحه‌های گفتگوی دوکوویکی"; 94 | $lang["vector_cite_markup"] = "نشانه‌گذاری"; 95 | $lang["vector_cite_result"] = "نتیجه"; 96 | $lang["vector_cite_thisversion"] = "این ویرایش"; 97 | 98 | //other 99 | $lang["vector_search"] = "جست‌و‌جو"; 100 | $lang["vector_accessdenied"] = "دسترسی محدود شده است"; 101 | $lang["vector_fillplaceholder"] = "Please fill this placeholder"; 102 | $lang["vector_donate"] = "اهدا کردن"; 103 | $lang["vector_mdtemplatefordw"] = "الگوی «وکتور» برای دوکوویکی"; 104 | $lang["vector_recentchanges"] = "تغییرهای اخیر"; 105 | -------------------------------------------------------------------------------- /lang/fa/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is free software and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Salman Mohammadi 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "از صفحه‌ی کاربر استفاده شود؟"; 36 | $lang["vector_userpage_ns"] = "اگر بله، از :namespace: زیر به عنوان ریشه برای صفحه‌های کاربرها استفاده کن:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "از وب‌گاه‌های/برگه‌های بحث استفاده شود؟"; 40 | $lang["vector_discuss_ns"] = "اگر بله، از :namespace: زیر به عنوان ریشه یرای صفحه‌های بحث استفاده کن:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "آیا از اعلامیه‌ی سراسری در وب‌گاه استفاده شود؟"; 44 | $lang["vector_sitenotice_location"] = ":اگر بله، از صفحه‌ی ویکی زیر برای اعلامیه‌ی سراسری در وب‌گاه استفاده کن"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "ناوبری نشان داده شود؟"; 48 | $lang["vector_navigation_location"] = ":اگر بله، از صفحه‌ی ویکی زیر برای ناوبری استفاده کن"; 49 | $lang["vector_navigation_translate"] = "اگر بله و Translation plugin در دسترس بود: آیا آیا از ناوبری مخصوص هر زبان استفاده شود؟
صفحه‌ی ویرایش برای ناوبری(های) ترجمه شده به مانند روبرو است [مقدار 'vector_navigation_location']_[iso lang code] (مثلا ':wiki:navigation_fa')."; 50 | 51 | //exportbox ("print/export") 52 | $lang["vector_exportbox"] = "جعبه‌ی «چاپ/برون‌ریزی را نشان دهد؟?"; 53 | $lang["vector_exportbox_default"] = "اگر بله، از جعبه‌ی «چاپ/برون‌ریزی» پیش‌فرض استفاده کند؟"; 54 | $lang["vector_exportbox_location"] = "اگر نمی‌خواهید از پیش‌فرض استفاده کند، از صفحه‌ی ویکی زیر به عنوان مکان «چاپ/برون‌ریزی» استفاده کند."; 55 | 56 | //toolbox 57 | $lang["vector_toolbox"] = "جعبه‌ابزار را نشان دهد؟"; 58 | $lang["vector_toolbox_default"] = "اگر بله، از جعبه‌‌ابزار پیش‌فرض استفاده کند؟"; 59 | $lang["vector_toolbox_location"] = "اگر نمی‌خواهید از پیش‌فرض استفاده کند، از صفحه‌ی ویکی زیر به عنوان مکان جعبه‌ابزار استفاده کند."; 60 | 61 | //custom copyright notice 62 | $lang["vector_copyright"] = "آیا اعلامیه‌ی حق‌کپی را نشان دهد؟"; 63 | $lang["vector_copyright_default"] = "اگر بله، از اعلامیه‌ی حق کپی پیش‌فرض استفاده کند؟"; 64 | $lang["vector_copyright_location"] = "اگر نمی‌خواهید از پیش‌فرض استفاده کند، از صفحه‌ی ویکی زیر به عنوان اعلامیه‌ی حق‌کپی استفاده کند."; 65 | 66 | //donation link/button 67 | $lang["vector_donate"] = "پیوند/دکمه‌ی اهدا را نشان دهد؟"; 68 | $lang["vector_donate_url"] = "اگر نمی‌خواهید از پیش‌فرض استفاده کند، از پیوند زیر برای اهدا استفاده کند:."; 69 | 70 | //TOC 71 | $lang["vector_toc_position"] = "موقعیت فهرست مطالب"; 72 | 73 | //other stuff 74 | $lang["vector_breadcrumbs_position"] = "موقعیت ناوبری بردکرامب (اگر فعال شده باشد):"; 75 | $lang["vector_youarehere_position"] = "موقعیت «شما اینجا هستید» (اگر فعال شده باشد):"; 76 | $lang["vector_cite_author"] = "نام نویسنده در «یادکرد این مقاله«"; 77 | $lang["vector_loaduserjs"] = "آیا 'vector/user/user.js' را بارگذاری کند؟"; 78 | $lang["vector_closedwiki"] = " ویکی بسته‌شده (بیشتر پیوندها/برگه‌ها/جعبه‌ها تا زمانی که کاربر وارد حساب کاربری خود شود، به صورت مخفی است)"; 79 | -------------------------------------------------------------------------------- /lang/fa/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/fa/style.css -------------------------------------------------------------------------------- /lang/fr/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/fr/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/fr/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Julien Revault d'Allonnes 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs, personal tools and special links 35 | $lang["vector_article"] = "Article"; 36 | $lang["vector_discussion"] = "Discussion"; 37 | $lang["vector_read"] = "Lire"; 38 | $lang["vector_edit"] = "Editer"; 39 | $lang["vector_create"] = "Créer"; 40 | $lang["vector_userpage"] = "Page utilisateur"; 41 | $lang["vector_specialpage"] = "Page spéciales"; 42 | $lang["vector_mytalk"] = "Mes discussions"; 43 | $lang["vector_exportodt"] = "Exporter : ODT"; 44 | $lang["vector_exportpdf"] = "Exporter : PDF"; 45 | $lang["vector_subscribens"] = "Souscrire modif NS"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 46 | $lang["vector_unsubscribens"] = "Désouscrire modif NS"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 47 | $lang["vector_translations"] = "Langages"; 48 | 49 | //headlines for the different bars and boxes 50 | $lang["vector_navigation"] = "Navigation"; 51 | $lang["vector_toolbox"] = "Outils"; 52 | $lang["vector_exportbox"] = "Imprimer/exporter"; 53 | $lang["vector_inotherlanguages"] = "Langages"; 54 | $lang["vector_printexport"] = "Imprimer/exporter"; 55 | $lang["vector_personnaltools"] = "Outils personels"; 56 | 57 | //buttons 58 | $lang["vector_btn_go"] = "Go"; 59 | $lang["vector_btn_search"] = "Recherche"; 60 | $lang["vector_btn_search_title"] = "Rechercher ce texte"; 61 | 62 | //exportbox ("print/export") 63 | $lang["vector_exportbxdef_print"] = "Version imprimable"; 64 | $lang["vector_exportbxdef_downloadodt"] = "Télécharger en ODT"; 65 | $lang["vector_exportbxdef_downloadpdf"] = "Télécharger en PDF"; 66 | 67 | //default toolbox 68 | $lang["vector_toolbxdef_whatlinkshere"] = "Page amont liées"; 69 | $lang["vector_toolbxdef_upload"] = "Envoyer un fichier"; 70 | $lang["vector_toolbxdef_siteindex"] = "Site index"; 71 | $lang["vector_toolboxdef_permanent"] = "Lien permanent"; 72 | $lang["vector_toolboxdef_cite"] = "Citer cette page"; 73 | 74 | //cite this article 75 | $lang["vector_cite_bibdetailsfor"] = "Détail bibliographique pour"; 76 | $lang["vector_cite_pagename"] = "Nom de page"; 77 | $lang["vector_cite_author"] = "Auteur"; 78 | $lang["vector_cite_publisher"] = "Publieur"; 79 | $lang["vector_cite_dateofrev"] = "Date de revision"; 80 | $lang["vector_cite_dateretrieved"] = "Date récupérée"; 81 | $lang["vector_cite_permurl"] = "URL permanente"; 82 | $lang["vector_cite_pageversionid"] = "Version ID de la page"; 83 | $lang["vector_cite_citationstyles"] = "Style de citation pour"; 84 | $lang["vector_cite_checkstandards"] = "Veuillez vérifier dans un manuel, un guide standards ou avec un instructeur pour la syntaxe exacte lié à vos besoins."; 85 | $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é"; 86 | $lang["vector_cite_retrieved"] = "Récupéré"; 87 | $lang["vector_cite_from"] = "depuis"; 88 | $lang["vector_cite_in"] = "Dans"; 89 | $lang["vector_cite_accessed"] = "Accès"; 90 | $lang["vector_cite_cited"] = "Cité"; 91 | $lang["vector_cite_lastvisited"] = "Dernière visite"; 92 | $lang["vector_cite_availableat"] = "Dipso à"; 93 | $lang["vector_cite_discussionpages"] = "DokuWiki discussion"; 94 | $lang["vector_cite_markup"] = "Annotation"; 95 | $lang["vector_cite_result"] = "Resultat"; 96 | $lang["vector_cite_thisversion"] = "cette version"; 97 | 98 | //other 99 | $lang["vector_search"] = "Recherche"; 100 | $lang["vector_accessdenied"] = "Accès interdit"; 101 | $lang["vector_fillplaceholder"] = "Remplissez cet espace réservé"; 102 | $lang["vector_donate"] = "Dons"; 103 | $lang["vector_mdtemplatefordw"] = "vector template pour DokuWiki"; 104 | $lang["vector_recentchanges"] = "Changements récents"; 105 | 106 | -------------------------------------------------------------------------------- /lang/fr/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Julien Revault d'Allonnes 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Utiliser les pages utilisateurs ?"; 36 | $lang["vector_userpage_ns"] = "Si oui, utilisez ':namespace:' comme pages racines :"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Utiliser les onglets discussion ?"; 40 | $lang["vector_discuss_ns"] = "Si oui, utilisez':namespace:' comme pages racines :"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Afficher la notice du site ?"; 44 | $lang["vector_sitenotice_location"] = "Si oui, utilisez la page wiki suivante pour la notice :"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "Afficher la navigation ?"; 48 | $lang["vector_navigation_location"] = "Si oui, utilisez la page wiki suivante pour la navigation :"; 49 | 50 | //exportbox ("print/export") 51 | $lang["vector_exportbox"] = "Afficher la boite 'imprimer/exporter' ?"; 52 | $lang["vector_exportbox_default"] = "Si oui, utilisez la boite 'imprimer/exporter' par default ?"; 53 | $lang["vector_exportbox_location"] = "Si non, utilisez la page wiki suivante :"; 54 | 55 | //toolbox 56 | $lang["vector_toolbox"] = "Afficher la outils ?"; 57 | $lang["vector_toolbox_default"] = "Si oui, utilisez la outils par default ?"; 58 | $lang["vector_toolbox_location"] = "Si non, utilisez la page wiki suivante :"; 59 | 60 | //custom copyright notice 61 | $lang["vector_copyright"] = "Afficher le copyright en pied de page?"; 62 | $lang["vector_copyright_default"] = "Si oui, utilisez la notice de copyright par default ?"; 63 | $lang["vector_copyright_location"] = "Si non, utilisez la page wiki suivante :"; 64 | 65 | //donation link/button 66 | $lang["vector_donate"] = "Afficher le lien de dons ?"; 67 | $lang["vector_donate_url"] = "Si non, utilisez l'URL suivante our les donations :"; 68 | 69 | //TOC 70 | $lang["vector_toc_position"] = "Sommaire position"; 71 | 72 | //other stuff 73 | $lang["vector_breadcrumbs_position"] = "Position du fil d'ariane (si actif) :"; 74 | $lang["vector_youarehere_position"] = "Position du 'Vous êtes ici' (si actif) :"; 75 | $lang["vector_cite_author"] = "Nom de l'auteur dans 'Citer cet article' :"; 76 | $lang["vector_loaduserjs"] = "Charger 'vector/user/user.js' ?"; 77 | $lang["vector_closedwiki"] = "Wiki fermé (la plupart des liens/onglets/boites sont masquée sans connexion) ?"; 78 | 79 | -------------------------------------------------------------------------------- /lang/fr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/fr/style.css -------------------------------------------------------------------------------- /lang/he/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/he/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/he/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/he/style.css -------------------------------------------------------------------------------- /lang/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/it/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/it/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/it/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Luigi Micco 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs 35 | $lang["vector_article"] = "Articolo"; 36 | $lang["vector_discussion"] = "Discussione"; 37 | $lang["vector_read"] = "Leggi"; 38 | $lang["vector_edit"] = "Modifica"; 39 | $lang["vector_create"] = "Crea"; 40 | $lang["vector_userpage"] = "Pagina utente"; 41 | $lang["vector_specialpage"] = "Pagine spaciali"; 42 | $lang["vector_mytalk"] = "Le mie discussioni"; 43 | $lang["vector_exportodt"] = "Esporta: ODT"; 44 | $lang["vector_exportpdf"] = "Esporta: PDF"; 45 | $lang["vector_sendmail"] = "Segnala via mail"; 46 | $lang["vector_translations"] = "Altre lingue"; 47 | 48 | //headlines for the different bars 49 | $lang["vector_views"] = "Viste"; 50 | $lang["vector_personnaltools"] = "Strumenti personali"; 51 | $lang["vector_navigation"] = "Navigazione"; 52 | $lang["vector_toolbox"] = "Strumenti"; 53 | $lang["vector_exportbox"] = "Stampa/Esporta"; 54 | $lang["vector_inotherlanguages"] = "Altre lingue"; 55 | $lang["vector_search"] = "Cerca"; 56 | 57 | //buttons 58 | $lang["vector_btn_go"] = "Vai"; 59 | $lang["vector_btn_search"] = "Cerca"; 60 | $lang["vector_btn_search_title"] = "Ricerca questo testo"; 61 | 62 | //exportbox ("print/export") 63 | $lang["vector_exportbxdef_print"] = "Versione stampabile"; 64 | $lang["vector_exportbxdef_downloadodt"] = "Esporta come ODT"; 65 | $lang["vector_exportbxdef_downloadpdf"] = "Esporta come PDF"; 66 | 67 | //default toolbox 68 | $lang["vector_toolbxdef_whatlinkshere"] = "Pagine che puntano qui"; 69 | $lang["vector_toolbxdef_upload"] = "Carica file"; 70 | $lang["vector_toolbxdef_siteindex"] = "Indice del sito"; 71 | $lang["vector_toolboxdef_permanent"] = "Link permanente"; 72 | $lang["vector_toolboxdef_cite"] = "Cita questo articolo"; 73 | 74 | //cite this article 75 | $lang["vector_cite_bibdetailsfor"] = "Dettagli bibliografici per"; 76 | $lang["vector_cite_pagename"] = "Nome pagina"; 77 | $lang["vector_cite_author"] = "Autore"; 78 | $lang["vector_cite_publisher"] = "Editore"; 79 | $lang["vector_cite_dateofrev"] = "Data dell'ultima revisione"; 80 | $lang["vector_cite_dateretrieved"] = "Data della citazione"; 81 | $lang["vector_cite_permurl"] = "Link permanente"; 82 | $lang["vector_cite_pageversionid"] = "ID della revisione"; 83 | $lang["vector_cite_citationstyles"] = "Stili di citazione per"; 84 | $lang["vector_cite_checkstandards"] = "Usate la versione che risponde meglio ai vostri bisogni."; 85 | $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:"; 86 | $lang["vector_cite_retrieved"] = "Retrieved"; 87 | $lang["vector_cite_in"] = "In"; 88 | $lang["vector_cite_from"] = "da"; 89 | $lang["vector_cite_accessed"] = "Accessed"; 90 | $lang["vector_cite_cited"] = "Cited"; 91 | $lang["vector_lastvisited"] = "Ultima visita"; 92 | $lang["vector_cite_availableat"] = "Disponibile su"; 93 | $lang["vector_cite_discussionpages"] = "Pagina delle discussioni"; 94 | $lang["vector_cite_markup"] = "Markup"; 95 | $lang["vector_cite_result"] = "Risultato"; 96 | $lang["vector_cite_thisversion"] = "questa versione"; 97 | 98 | //other 99 | $lang["vector_accessdenied"] = "Accesso negato"; 100 | $lang["vector_fillplaceholder"] = "Sostituisci questo segnaposto"; 101 | $lang["vector_donate"] = "Dona"; 102 | $lang["vector_mdtemplatefordw"] = "stile vector per DokuWiki"; 103 | $lang["vector_recentchanges"] = "Modifiche recenti"; 104 | -------------------------------------------------------------------------------- /lang/it/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Luigi Micco 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //check if we are running within the DokuWiki environment 35 | if (!defined("DOKU_INC")){ 36 | die(); 37 | } 38 | 39 | //discussion pages 40 | $lang["vector_discuss"] = "Usare linguetta discussioni?"; 41 | $lang["vector_discuss_ns"] = "Se si, usa questo ':namespace:' come radice per le discussioni:"; 42 | 43 | //site notice 44 | $lang["vector_sitenotice"] = "Mostra annunci generali?"; 45 | $lang["vector_sitenotice_location"] = "Se si, usa la seguente pagina wiki come annuncio:"; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "Mostra pannello di navigazione?"; 49 | $lang["vector_navigation_location"] = "Se si, usa la seguente pagina wiki come pannello di navigazione:"; 50 | 51 | //exportbox ("print/export") 52 | $lang["vector_exportbox"] = "Mostrat pannello 'stampa/esporta'"; 53 | $lang["vector_exportbox_default"] = "Se si, usa il pannello predefinito 'stampa/esporta'?"; 54 | $lang["vector_exportbox_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come pannello 'stampa/esporta':"; 55 | 56 | //toolbox 57 | $lang["vector_toolbox"] = "Mostra pannello strumenti?"; 58 | $lang["vector_toolbox_default"] = "Se si, usa il pannello predefinito?"; 59 | $lang["vector_toolbox_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come pannello degli strumenti:"; 60 | $lang["vector_toolbox_default_print"] = "Se utilizzi il pannello predefinito, mostra link per versione stampabile?"; 61 | 62 | //custom copyright notice 63 | $lang["vector_copyright"] = "Mostra avviso di copyright?"; 64 | $lang["vector_copyright_default"] = "Se si, usa l'avviso di copyright predefinito?"; 65 | $lang["vector_copyright_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come avviso di copyright:"; 66 | 67 | //search form 68 | $lang["vector_search"] = "Mostra casella di ricerca?"; 69 | 70 | //donation link/button 71 | $lang["vector_donate"] = "Mostra link/pulsante per le donazioni?"; 72 | $lang["vector_donate_url"] = "Se non predefinito, usa il seguente indirizzo URL per le donazioni:"; 73 | 74 | //TOC 75 | $lang["vector_toc_position"] = "Posizione indice dei contenuti"; 76 | 77 | //other stuff 78 | $lang["vector_breadcrumbs_position"] = "Posizione del pannello breadcrumb (se abilitato):"; 79 | $lang["vector_youarehere_position"] = "Posizione del pannello 'Tu sei qui' (se abilitato):"; 80 | $lang["vector_cite_author"] = "Nome autore in 'Cita questo articolo':"; 81 | $lang["vector_loaduserjs"] = "Carica 'vector/user/user.js'?"; 82 | -------------------------------------------------------------------------------- /lang/it/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/it/style.css -------------------------------------------------------------------------------- /lang/ko/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/ko/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/ko/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author 관인생략 23 | * @author Myeongjin 24 | * @link https://www.dokuwiki.org/template:vector 25 | * @link https://www.dokuwiki.org/config:lang 26 | * @link https://www.dokuwiki.org/devel:configuration 27 | */ 28 | 29 | 30 | //check if we are running within the DokuWiki environment 31 | if (!defined("DOKU_INC")){ 32 | die(); 33 | } 34 | 35 | //tabs, personal tools and special links 36 | $lang["vector_article"] = "문서"; 37 | $lang["vector_discussion"] = "토론"; 38 | $lang["vector_read"] = "읽기"; 39 | $lang["vector_edit"] = "편집"; 40 | $lang["vector_create"] = "만들기"; 41 | $lang["vector_userpage"] = "사용자 문서"; 42 | $lang["vector_specialpage"] = "특수 문서"; 43 | $lang["vector_mytalk"] = "사용자 토론"; 44 | $lang["vector_exportodt"] = "내보내기: ODT"; 45 | $lang["vector_exportpdf"] = "내보내기: PDF"; 46 | $lang["vector_subscribens"] = "이름공간 바뀜 구독"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 47 | $lang["vector_unsubscribens"] = "이름공간 바뀜 구독 취소"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 48 | $lang["vector_translations"] = "언어"; 49 | 50 | //headlines for the different bars and boxes 51 | $lang["vector_navigation"] = "둘러보기"; 52 | $lang["vector_toolbox"] = "도구"; 53 | $lang["vector_exportbox"] = "인쇄/내보내기"; 54 | $lang["vector_qrcodebox"] = "QR 코드"; 55 | $lang["vector_inotherlanguages"] = "언어"; 56 | $lang["vector_printexport"] = "인쇄/내보내기"; 57 | $lang["vector_personnaltools"] = "개인 도구"; 58 | 59 | //buttons 60 | $lang["vector_btn_go"] = "보기"; 61 | $lang["vector_btn_search"] = "검색"; 62 | $lang["vector_btn_search_title"] = "이 문자열이 포함된 문서 검색"; 63 | 64 | //exportbox ("print/export") 65 | $lang["vector_exportbxdef_print"] = "인쇄용 판"; 66 | $lang["vector_exportbxdef_downloadodt"] = "ODT로 다운로드"; 67 | $lang["vector_exportbxdef_downloadpdf"] = "PDF로 다운로드"; 68 | 69 | //default toolbox 70 | $lang["vector_toolbxdef_whatlinkshere"] = "여기를 가리키는 문서"; 71 | $lang["vector_toolbxdef_upload"] = "파일 올리기"; 72 | $lang["vector_toolbxdef_siteindex"] = "사이트맵"; 73 | $lang["vector_toolboxdef_permanent"] = "고유 링크"; 74 | $lang["vector_toolboxdef_cite"] = "이 문서 인용하기"; 75 | 76 | //qr code box 77 | $lang["vector_qrcodebox_qrcode"] = "QR 코드"; 78 | $lang["vector_qrcodebox_genforcurrentpage"] = "현재 문서의 생성된 QR 코드"; 79 | $lang["vector_qrcodebox_urlofcurrentpage"] = "현재 문서의 QR 코드 (쉽게 모바일 접근을 하려면 스캔)"; 80 | 81 | //cite this article 82 | $lang["vector_cite_bibdetailsfor"] = "다음 문서의 출처 정보:"; 83 | $lang["vector_cite_pagename"] = "문서 이름"; 84 | $lang["vector_cite_author"] = "저자"; 85 | $lang["vector_cite_publisher"] = "발행처"; 86 | $lang["vector_cite_dateofrev"] = "이 판의 날짜"; 87 | $lang["vector_cite_dateretrieved"] = "확인한 날짜"; 88 | $lang["vector_cite_permurl"] = "고유 URL"; 89 | $lang["vector_cite_pageversionid"] = "문서 판 ID"; 90 | $lang["vector_cite_citationstyles"] = "다음 문서의 인용 양식:"; 91 | $lang["vector_cite_checkstandards"] = "필요에 따라 정확한 구문에 대한 양식 매뉴얼, 표준 가이드 또는 안내자의 지침을 확인하는 것을 기억하세요."; 92 | $lang["vector_cite_latexusepackagehint"] = "LaTeX 패키지 URL(프리앰블의 어딘가에 \usepackage{url})을 사용하면 더 정돈된 형식의 웹 주소를 얻을 수 있습니다. 다음과 같은 방법을 선호합니다"; 93 | $lang["vector_cite_retrieved"] = "확인한 날짜:"; 94 | $lang["vector_cite_from"] = "다음에서 찾아볼 수 있음:"; 95 | $lang["vector_cite_in"] = "발행처:"; 96 | $lang["vector_cite_accessed"] = "접근한 날짜:"; 97 | $lang["vector_cite_cited"] = "인용한 날짜:"; 98 | $lang["vector_cite_lastvisited"] = "마지막으로 방문한 날짜:"; 99 | $lang["vector_cite_availableat"] = "다음에서 찾아볼 수 있음"; 100 | $lang["vector_cite_discussionpages"] = "도쿠위키 토론 문서"; 101 | $lang["vector_cite_markup"] = "문법"; 102 | $lang["vector_cite_result"] = "결과"; 103 | $lang["vector_cite_thisversion"] = "이 판"; 104 | 105 | //other 106 | $lang["vector_search"] = "검색"; 107 | $lang["vector_accessdenied"] = "접근 거부됨"; 108 | $lang["vector_fillplaceholder"] = "이 자리를 채우거나 비활성화하세요"; 109 | $lang["vector_donate"] = "기부"; 110 | $lang["vector_mdtemplatefordw"] = "도쿠위키를 위한 벡터 템플릿"; 111 | $lang["vector_recentchanges"] = "최근 바뀜"; 112 | 113 | -------------------------------------------------------------------------------- /lang/ko/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Myeongjin 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "사용자 문서를 사용하겠습니까?"; 36 | $lang["vector_userpage_ns"] = "만약 사용한다면 사용자 문서에 대한 루트로 다음 ':이름공간:' 사용:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "토론 탭/사이트를 사용하겠습니까?"; 40 | $lang["vector_discuss_ns"] = "만약 사용한다면 토론에 대한 루트로 다음 ':이름공간:' 사용:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "사이트 넓은 알림을 보여줄까요?"; 44 | $lang["vector_sitenotice_location"] = "만약 보여준다면 사이트 넓은 알림에 대해 다음 위키 문서 사용:"; 45 | $lang["vector_sitenotice_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 사이트 넓은 알림을 불러올까요?
번역된 사이트 알림의 위키 문서는 ['vector_sitenotice_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:site_notice_de') 입니다."; 46 | 47 | //navigation 48 | $lang["vector_navigation"] = "둘러보기를 보여줄까요?"; 49 | $lang["vector_navigation_location"] = "만약 보여준다면 둘러보기로 다음 위키 문서 사용:"; 50 | $lang["vector_navigation_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 둘러보기를 불러올까요?
번역된 둘러보기의 위키 문서는 ['vector_navigation_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:navigation_de') 입니다."; 51 | 52 | //exportbox ("print/export") 53 | $lang["vector_exportbox"] = "'인쇄/내보내기' 모음를 보여줄까요?"; 54 | $lang["vector_exportbox_default"] = "만약 보여준다면 기본 '인쇄/내보내기' 모음을 사용하겠습니까?"; 55 | $lang["vector_exportbox_location"] = "기본 모음을 사용하지 않는다면 '인쇄/내보내기' 모음 위치로 다음 위키 문서 사용:"; 56 | 57 | //toolbox 58 | $lang["vector_toolbox"] = "도구를 보여줄까요?"; 59 | $lang["vector_toolbox_default"] = "만약 보여준다면 기본 도구를 사용하겠습니까?"; 60 | $lang["vector_toolbox_location"] = "기본 모음을 사용하지 않는다면 도구 위치로 다음 위키 문서 사용:"; 61 | 62 | //qr code box 63 | $lang["vector_qrcodebox"] = "(모바일 브라우저에 쉽게 URL 전송을 위해) 현재 위키 문서 URL의 QR 코드로 된 상자를 보여줄까요?"; 64 | 65 | //custom copyright notice 66 | $lang["vector_copyright"] = "저작권 알림을 보여줄까요?"; 67 | $lang["vector_copyright_default"] = "만약 보여준다면 기본 저작권 알림을 사용하겠습니까?"; 68 | $lang["vector_copyright_location"] = "기본 알림을 사용하지 않는다면 저작권 알림으로 다음 위키 문서 사용:"; 69 | $lang["vector_copyright_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 저작권 알림을 불러올까요?
번역된 저작권 일림의 위키 문서는 ['vector_copyright_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:copyright_de') 입니다."; 70 | 71 | //donation link/button 72 | $lang["vector_donate"] = "기부 링크/버튼을 보여줄까요?"; 73 | $lang["vector_donate_url"] = "기부에 대한 다음 URL 사용:"; 74 | 75 | //TOC 76 | $lang["vector_toc_position"] = "목차 위치"; 77 | 78 | //other stuff 79 | $lang["vector_breadcrumbs_position"] = "(활성화되었다면) 위치 추적 둘러보기의 위치:"; 80 | $lang["vector_youarehere_position"] = "(활성화되었다면) '현재 위치' 둘러보기의 위치:"; 81 | $lang["vector_cite_author"] = "'이 문서 인용하기'의 저자 이름:"; 82 | $lang["vector_loaduserjs"] = "'vector/user/user.js'를 불러올까요?"; 83 | $lang["vector_closedwiki"] = "닫힌 위키입니까? (대부분의 링크/탭/도구를 사용자가 로그인하기 전에 숨깁니다)"; 84 | 85 | -------------------------------------------------------------------------------- /lang/ko/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/ko/style.css -------------------------------------------------------------------------------- /lang/nl/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/nl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/nl/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 10 | * - /lib/tpl/vector/lang//settings.php 11 | * If they are not existing, copy and translate the English ones (hint: looking 12 | * at might be helpful). 13 | * 14 | * Don't forget to mail your translation to ARSAVA . 15 | * Thanks! :-D 16 | * 17 | * 18 | * LICENSE: This file is open source software (OSS) and may be copied under 19 | * certain conditions. See COPYING file for details or try to contact 20 | * the author(s) of this file in doubt. 21 | * 22 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 23 | * @author Theo Klein 24 | * @link https://www.dokuwiki.org/template:vector 25 | * @link https://www.dokuwiki.org/config:lang 26 | * @link https://www.dokuwiki.org/devel:configuration 27 | */ 28 | 29 | 30 | //check if we are running within the DokuWiki environment 31 | if (!defined("DOKU_INC")){ 32 | die(); 33 | } 34 | 35 | //discussion pages 36 | $lang["vector_discuss"] = "Gebruik discussie pagina's en tabs?"; 37 | $lang["vector_discuss_ns"] = "Indien ja, gebruik de volgende ':namespace:' als root voor discussies:"; 38 | 39 | //site notice 40 | $lang["vector_sitenotice"] = "Toon notificatie door de gehele site?"; 41 | $lang["vector_sitenotice_location"] = "Indien ja, gebruik de volgende wiki pagina als notificatie:"; 42 | 43 | //navigation 44 | $lang["vector_navigation"] = "Toon navigatie?"; 45 | $lang["vector_navigation_location"] = "Indien ja, gebruik de volgende wiki pagina als navigatie:"; 46 | 47 | //exportbox ("print/export") 48 | $lang["vector_exportbox"] = "Toon 'Afdrukken/exporteren' box?"; 49 | $lang["vector_exportbox_default"] = "Indien ja, gebruik de standaard 'Afdrukken/exporteren' box?"; 50 | $lang["vector_exportbox_location"] = "Indien niet standaard, gebruik de volgende wikipagina als 'Afdrukken/exporteren' box locatie:"; 51 | 52 | //toolbox 53 | $lang["vector_toolbox"] = "Toon hulpmiddelen?"; 54 | $lang["vector_toolbox_default"] = "Indien ja, gebruik de standaard hulpmiddelen?"; 55 | $lang["vector_toolbox_location"] = "Indien niet standaard, gebruik de volgende wikipagina als 'hulpmiddelen' locatie:"; 56 | 57 | //custom copyright notice 58 | $lang["vector_copyright"] = "Toon copyright notificatie?"; 59 | $lang["vector_copyright_default"] = "Indien ja, gebruik de standaard copyright notificatie?"; 60 | $lang["vector_copyright_location"] = "Wanneer de standaard niet gebruikt wordt, gebruik de volgende wiki pagina als copyright notificatie:"; 61 | 62 | //donation link/button 63 | $lang["vector_donate"] = "Toon donatie button?"; 64 | $lang["vector_donate_url"] = "Gebruik de volgende URL voor donaties:"; 65 | 66 | //TOC 67 | $lang["vector_toc_position"] = "Positionering van de inhoudopgave"; 68 | 69 | //other stuff 70 | $lang["vector_breadcrumbs_position"] = "Positie van broodkruimel navigatie (indien ingeschakeld):"; 71 | $lang["vector_youarehere_position"] = "Positie van 'U bent hier' navigatie (indien ingeschakeld):"; 72 | $lang["vector_cite_author"] = "Naam van de auteur in 'Citeer dit artikel':"; 73 | $lang["vector_loaduserjs"] = "Laad 'vector/user/user.js'?"; 74 | -------------------------------------------------------------------------------- /lang/nl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/nl/style.css -------------------------------------------------------------------------------- /lang/pt-br/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/pt-br/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/pt-br/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/pt-br/style.css -------------------------------------------------------------------------------- /lang/ru/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/ru/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/ru/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author anarchist IVANOV 23 | * @author Aleksandr Selivanov 24 | * @link https://www.dokuwiki.org/template:vector 25 | * @link https://www.dokuwiki.org/config:lang 26 | * @link https://www.dokuwiki.org/devel:configuration 27 | */ 28 | 29 | 30 | //check if we are running within the DokuWiki environment 31 | if (!defined("DOKU_INC")){ 32 | die(); 33 | } 34 | 35 | //пользовательские страницы 36 | $lang['vector_userpage'] = 'Добавить пользовательские страницы?'; 37 | $lang['vector_userpage_ns'] = 'Если «Да», использовать следующее «:пространство_имён:» как корневое для пользовательских страниц:'; 38 | 39 | //страницы обсуждений 40 | $lang['vector_discuss'] = 'Использовать вкладки/страницы обсуждений?'; 41 | $lang['vector_discuss_ns'] = 'Если «Да», использовать следующее «:пространство_имён:» как корневое для страниц обсуждений:'; 42 | 43 | //уведомления сайта 44 | $lang['vector_sitenotice'] = 'Показывать уведомления сайта?'; 45 | $lang['vector_sitenotice_location'] = 'Если «Да», использовать следующую страницу вики для уведомлений сайта:'; 46 | 47 | //навигация 48 | $lang['vector_navigation'] = 'Показывать навигацию?'; 49 | $lang['vector_navigation_location'] = 'Если «Да», использовать следующую страницу вики для создания навигации:'; 50 | 51 | //блок экспорта (печать/экспорт) 52 | $lang['vector_exportbox'] = 'Показывать блок «печать/экспорт»?'; 53 | $lang['vector_exportbox_default'] = 'Если «Да», использовать блок «печать/экспорт» по умолчанию?'; 54 | $lang['vector_exportbox_location'] = 'Если не задействован блок по умолчанию, используйте следующую страницу вики как блок «печать/экспорт»:'; 55 | 56 | //инструменты 57 | $lang['vector_toolbox'] = 'Показывать инструменты?'; 58 | $lang['vector_toolbox_default'] = 'Если «Да», использовать панель инструментов по умолчанию?'; 59 | $lang['vector_toolbox_location'] = 'Если не задействована панель по умолчанию, используйте следующую страницу вики как панель инструментов:'; 60 | 61 | //уведомления об авторских правах 62 | $lang['vector_copyright'] = 'Показывать уведомления об авторских правах?'; 63 | $lang['vector_copyright_default'] = 'Если «Да», использовать уведомления по умолчанию?'; 64 | $lang['vector_copyright_location'] = 'Если «Нет», использовать следующую страницу вики для уведомления об авторских правах:'; 65 | 66 | //ссылка/кнопка пожертвований 67 | $lang['vector_donate'] = 'Показывать ссылку/кнопку пожертвований?'; 68 | $lang['vector_donate_url'] = 'Если не задействована ссылка по умолчанию, используйте следующую ссылку для пожертвований:'; 69 | 70 | //TOC (список содержания страницы) 71 | $lang['vector_toc_position'] = 'Расположение списка содержания страниц (TOC)'; 72 | 73 | //прочее 74 | $lang['vector_breadcrumbs_position'] = 'Позиция навигационной цепочки (если включено):'; 75 | $lang['vector_youarehere_position'] = 'Расположение панели «Вы находитесь здесь» (если включено):'; 76 | $lang['vector_cite_author'] = 'Имя автора в «Цитировать страницу»:'; 77 | $lang['vector_loaduserjs'] = 'Подгружать «vector/user/user.js»?'; 78 | $lang['vector_closedwiki'] = 'Закрыть вики (большинство ссылок/вкладок/блоков будут скрыты от пользователя до входа)?'; 79 | 80 | -------------------------------------------------------------------------------- /lang/ru/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/ru/style.css -------------------------------------------------------------------------------- /lang/sk/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/sk/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/sk/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Peter Bezemek 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs, personal tools and special links 35 | $lang["vector_article"] = "Článok"; 36 | $lang["vector_discussion"] = "Diskusia"; 37 | $lang["vector_read"] = "Čítať"; 38 | $lang["vector_edit"] = "Upraviť"; 39 | $lang["vector_create"] = "Vytvoriť"; 40 | $lang["vector_userpage"] = "Stránka Používateľa"; 41 | $lang["vector_specialpage"] = "Špeciálne stránky"; 42 | $lang["vector_mytalk"] = "Moje Diskusie"; 43 | $lang["vector_exportodt"] = "Export: ODT"; 44 | $lang["vector_exportpdf"] = "Export: PDF"; 45 | $lang["vector_subscribens"] = "Prihlásiť odber zmien"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 46 | $lang["vector_unsubscribens"] = "Odhlásiť odber zmien"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 47 | $lang["vector_translations"] = "Jazyky"; 48 | 49 | //headlines for the different bars and boxes 50 | $lang["vector_navigation"] = "Navigácia"; 51 | $lang["vector_toolbox"] = "Nástroje"; 52 | $lang["vector_exportbox"] = "Tlač/export"; 53 | $lang["vector_inotherlanguages"] = "Jazyky"; 54 | $lang["vector_printexport"] = "Tlač/export"; 55 | $lang["vector_personnaltools"] = "Osobné Nástroje"; 56 | 57 | //buttons 58 | $lang["vector_btn_go"] = "Spustiť"; 59 | $lang["vector_btn_search"] = "Hľadať"; 60 | $lang["vector_btn_search_title"] = "Hľadať tento text"; 61 | 62 | //exportbox ("print/export") 63 | $lang["vector_exportbxdef_print"] = "Verzia pre tlač"; 64 | $lang["vector_exportbxdef_downloadodt"] = "Stiahnuť ako ODT"; 65 | $lang["vector_exportbxdef_downloadpdf"] = "Stiahnuť ako PDF"; 66 | 67 | //default toolbox 68 | $lang["vector_toolbxdef_whatlinkshere"] = "Čo sem odkazuje"; 69 | $lang["vector_toolbxdef_upload"] = "Nahrať súbor"; 70 | $lang["vector_toolbxdef_siteindex"] = "Index stránok"; 71 | $lang["vector_toolboxdef_permanent"] = "Trvalý odkaz"; 72 | $lang["vector_toolboxdef_cite"] = "Citovať túto stránku"; 73 | 74 | //cite this article 75 | $lang["vector_cite_bibdetailsfor"] = "Bibliografické podrobnosti pre"; 76 | $lang["vector_cite_pagename"] = "Názov stránky"; 77 | $lang["vector_cite_author"] = "Autor"; 78 | $lang["vector_cite_publisher"] = "Vydavateľ"; 79 | $lang["vector_cite_dateofrev"] = "Dátum tejto revízie"; 80 | $lang["vector_cite_dateretrieved"] = "Dátum načítania"; 81 | $lang["vector_cite_permurl"] = "Trvalé URL"; 82 | $lang["vector_cite_pageversionid"] = "Identifikátor Verzie Stránky"; 83 | $lang["vector_cite_citationstyles"] = "Štýly citácie pre"; 84 | $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."; 85 | $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:"; 86 | $lang["vector_cite_retrieved"] = "Načítané"; 87 | $lang["vector_cite_from"] = "z"; 88 | $lang["vector_cite_in"] = "V"; 89 | $lang["vector_cite_accessed"] = "Prístup"; 90 | $lang["vector_cite_cited"] = "Citované"; 91 | $lang["vector_cite_lastvisited"] = "Posledná návšteva"; 92 | $lang["vector_cite_availableat"] = "K dispozícii na"; 93 | $lang["vector_cite_discussionpages"] = "Diskusné stránky DokuWiki"; 94 | $lang["vector_cite_markup"] = "Anotácia"; 95 | $lang["vector_cite_result"] = "Výsledok"; 96 | $lang["vector_cite_thisversion"] = "táto verzia"; 97 | 98 | //other 99 | $lang["vector_search"] = "Hľadať"; 100 | $lang["vector_accessdenied"] = "Prístup zamietnutý"; 101 | $lang["vector_fillplaceholder"] = "Vyplňte prosím tento zástupný symbol"; 102 | $lang["vector_donate"] = "Darujte"; 103 | $lang["vector_mdtemplatefordw"] = "Šablóna Vector pre DokuWiki"; 104 | $lang["vector_recentchanges"] = "Nedávne zmeny"; 105 | 106 | -------------------------------------------------------------------------------- /lang/sk/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author Peter Bezemek 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "Používať Stránky Používateľa?"; 36 | $lang["vector_userpage_ns"] = "Ak áno, použite nasledujúci ':namespace:' ako koreňový adresár pre používateľské stránky:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "Používať záložku/stránky Diskusia?"; 40 | $lang["vector_discuss_ns"] = "Ak áno, použite nasledujúci ':namespace:' ako koreňový adresár pre používateľské stránky:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "Zobrazovať všeobecnú informáciu (na všetkých stránkach)?"; 44 | $lang["vector_sitenotice_location"] = "Ak áno, pre definíciu všeobecnej informácie použite nasledujúcu wiki stránku:"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "Zobrazovať navigáciu?"; 48 | $lang["vector_navigation_location"] = "Ak áno, pre definíciu navigácie použite nasledujúcu wiki stránku:"; 49 | $lang["vector_navigation_translate"] = "Ak áno a Translation plugin je nainštalovaný: použiť navigáciu špecifickú pre daný jazyk?
Wiki stránka pre preloženú navigáciu je [hodnota pre 'vector_navigation_location']_[iso kód jazyka] (napr. ':wiki:navigation_sk')."; 50 | 51 | //exportbox ("print/export") 52 | $lang["vector_exportbox"] = "Zobrazovať 'tlač/export'?"; 53 | $lang["vector_exportbox_default"] = "Ak áno, používať základné nastavenie pre 'tlač/export'?"; 54 | $lang["vector_exportbox_location"] = "Ak nie základné, používať pre definíciu funkcie 'tlač/export' nasledujúce umiestnenie:"; 55 | 56 | //toolbox 57 | $lang["vector_toolbox"] = "Zobrazovať nástroje?"; 58 | $lang["vector_toolbox_default"] = "Ak áno, používať základné nastavenie pre nástroje?"; 59 | $lang["vector_toolbox_location"] = "Ak nie základné, používať pre definíciu funkcie Nástroje nasledujúce umiestnenie:"; 60 | 61 | //custom copyright notice 62 | $lang["vector_copyright"] = "Zobrazovať správu o copyrighte?"; 63 | $lang["vector_copyright_default"] = "Ak áno, používať základné nastavenie pre copyright?"; 64 | $lang["vector_copyright_location"] = "Ak nie základné, používať pre definíciu copyrightu nasledujúce umiestnenie:"; 65 | 66 | //donation link/button 67 | $lang["vector_donate"] = "Zobrazovať odkaz/tlačidlo pre dary/dotácie?"; 68 | $lang["vector_donate_url"] = "Ak nie základné, používať pre dary nasledujúce URL:"; 69 | 70 | //TOC 71 | $lang["vector_toc_position"] = "Pozícia Obsahu"; 72 | 73 | //other stuff 74 | $lang["vector_breadcrumbs_position"] = "Pozícia omrvinkovej navigácie (ak je povolená):"; 75 | $lang["vector_youarehere_position"] = "Pozícia navigácie 'Nachádzate sa tu' (ak je povolená):"; 76 | $lang["vector_cite_author"] = "Meno autora v 'Citujte tento Článok':"; 77 | $lang["vector_loaduserjs"] = "Nahrať 'vector/user/user.js'?"; 78 | $lang["vector_closedwiki"] = "Uzamknutá wiki (väčšina odkazov/záložiek/nástrojov je skrytá, až kým sa používateľ neprihlási)?"; 79 | 80 | -------------------------------------------------------------------------------- /lang/sk/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/sk/style.css -------------------------------------------------------------------------------- /lang/zh/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | Deny from all 8 | -------------------------------------------------------------------------------- /lang/zh/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/zh/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author LAINME 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs, personal tools and special links 35 | $lang["vector_article"] = "文章"; 36 | $lang["vector_discussion"] = "讨论"; 37 | $lang["vector_read"] = "阅读"; 38 | $lang["vector_edit"] = "编辑"; 39 | $lang["vector_create"] = "创建"; 40 | $lang["vector_userpage"] = "用户页"; 41 | $lang["vector_specialpage"] = "特殊页面"; 42 | $lang["vector_mytalk"] = "我的讨论"; 43 | $lang["vector_exportodt"] = "导出:ODT"; 44 | $lang["vector_exportpdf"] = "导出:PDF"; 45 | $lang["vector_subscribens"] = "订阅命名空间改动"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 46 | $lang["vector_unsubscribens"] = "退订命名空间改动"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 47 | $lang["vector_translations"] = "语言"; 48 | 49 | //headlines for the different bars and boxes 50 | $lang["vector_navigation"] = "导航"; 51 | $lang["vector_toolbox"] = "工具"; 52 | $lang["vector_exportbox"] = "打印/导出"; 53 | $lang["vector_inotherlanguages"] = "语言"; 54 | $lang["vector_printexport"] = "打印/导出"; 55 | $lang["vector_personnaltools"] = "个人工具箱"; 56 | 57 | //buttons 58 | $lang["vector_btn_go"] = "开始"; 59 | $lang["vector_btn_search"] = "搜索"; 60 | $lang["vector_btn_search_title"] = "搜索这个文本"; 61 | 62 | //exportbox ("print/export") 63 | $lang["vector_exportbxdef_print"] = "可打印版本"; 64 | $lang["vector_exportbxdef_downloadodt"] = "做为ODT下载"; 65 | $lang["vector_exportbxdef_downloadpdf"] = "做为PDF下载"; 66 | 67 | //default toolbox 68 | $lang["vector_toolbxdef_whatlinkshere"] = "反向链接"; 69 | $lang["vector_toolbxdef_upload"] = "上传文件"; 70 | $lang["vector_toolbxdef_siteindex"] = "网站地图"; 71 | $lang["vector_toolboxdef_permanent"] = "永久链接"; 72 | $lang["vector_toolboxdef_cite"] = "引用此文"; 73 | 74 | //cite this article 75 | $lang["vector_cite_bibdetailsfor"] = "文献详情:"; 76 | $lang["vector_cite_pagename"] = "页面名称"; 77 | $lang["vector_cite_author"] = "作者"; 78 | $lang["vector_cite_publisher"] = "出版者"; 79 | $lang["vector_cite_dateofrev"] = "修订日期"; 80 | $lang["vector_cite_dateretrieved"] = "检索日期"; 81 | $lang["vector_cite_permurl"] = "永久链接"; 82 | $lang["vector_cite_pageversionid"] = "页面版本ID"; 83 | $lang["vector_cite_citationstyles"] = "引文样式"; 84 | $lang["vector_cite_checkstandards"] = "请记得检查您的样式手册,标准指南或者导师的指导,来获取适合您需求的准确样式"; 85 | $lang["vector_cite_latexusepackagehint"] = "当使用LaTeX的url包(在开始的某处使用\usepackage{url})可以得到更好的网络地址,下列格式更受欢迎"; 86 | $lang["vector_cite_retrieved"] = "检索"; 87 | $lang["vector_cite_from"] = "从"; 88 | $lang["vector_cite_in"] = "在"; 89 | $lang["vector_cite_accessed"] = "获取"; 90 | $lang["vector_cite_cited"] = "引用"; 91 | $lang["vector_cite_lastvisited"] = "最后浏览"; 92 | $lang["vector_cite_availableat"] = "获取地址"; 93 | $lang["vector_cite_discussionpages"] = "DokuWiki讨论页面"; 94 | $lang["vector_cite_markup"] = "标记"; 95 | $lang["vector_cite_result"] = "结果"; 96 | $lang["vector_cite_thisversion"] = "此版本"; 97 | 98 | //other 99 | $lang["vector_search"] = "搜索"; 100 | $lang["vector_accessdenied"] = "拒绝访问"; 101 | $lang["vector_fillplaceholder"] = "请填写此占位符 "; 102 | $lang["vector_donate"] = "捐赠"; 103 | $lang["vector_mdtemplatefordw"] = "用于Dokuwiki的vector主题"; 104 | $lang["vector_recentchanges"] = "最近更改"; 105 | 106 | -------------------------------------------------------------------------------- /lang/zh/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/vector/lang//settings.php 10 | * If they are not existing, copy and translate the English ones (hint: looking 11 | * at might be helpful). 12 | * 13 | * Don't forget to mail your translation to ARSAVA . 14 | * Thanks! :-D 15 | * 16 | * 17 | * LICENSE: This file is open source software (OSS) and may be copied under 18 | * certain conditions. See COPYING file for details or try to contact 19 | * the author(s) of this file in doubt. 20 | * 21 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 | * @author LAINME 23 | * @link https://www.dokuwiki.org/template:vector 24 | * @link https://www.dokuwiki.org/config:lang 25 | * @link https://www.dokuwiki.org/devel:configuration 26 | */ 27 | 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //user pages 35 | $lang["vector_userpage"] = "使用用户页?"; 36 | $lang["vector_userpage_ns"] = "如果是,使用下列“:namespace:“作为用户页的根:"; 37 | 38 | //discussion pages 39 | $lang["vector_discuss"] = "使用讨论标签页/站点?"; 40 | $lang["vector_discuss_ns"] = "如果是,使用下列“:namespace:“作为讨论页的根:"; 41 | 42 | //site notice 43 | $lang["vector_sitenotice"] = "显示站点公告?"; 44 | $lang["vector_sitenotice_location"] = "如果是,使用下列wiki页面作为站点公告:"; 45 | 46 | //navigation 47 | $lang["vector_navigation"] = "显示导航?"; 48 | $lang["vector_navigation_location"] = "如果是,使用下列wiki页面作为导航:"; 49 | 50 | //exportbox ("print/export") 51 | $lang["vector_exportbox"] = "显示“打印/导出”栏?"; 52 | $lang["vector_exportbox_default"] = "如果是,使用默认的“打印/导出”栏?"; 53 | $lang["vector_exportbox_location"] = "如果不是默认,使用下列wiki页面作为“打印/导出“栏位置:"; 54 | 55 | //toolbox 56 | $lang["vector_toolbox"] = "显示工具?"; 57 | $lang["vector_toolbox_default"] = "如果是,使用默认工具?"; 58 | $lang["vector_toolbox_location"] = "如果不是默认,使用下列wiki页面作为工具位置:"; 59 | 60 | //custom copyright notice 61 | $lang["vector_copyright"] = "显示版权信息?"; 62 | $lang["vector_copyright_default"] = "如果是,使用默认的版权信息?"; 63 | $lang["vector_copyright_location"] = "如果不是默认,使用下列wiki页面作为版权信息:"; 64 | 65 | //donation link/button 66 | $lang["vector_donate"] = "显示捐赠链接/按钮?"; 67 | $lang["vector_donate_url"] = "如果不是默认,使用下列URL作为捐赠地址:"; 68 | 69 | //TOC 70 | $lang["vector_toc_position"] = "目录位置"; 71 | 72 | //other stuff 73 | $lang["vector_breadcrumbs_position"] = "足迹导航的位置(如果激活的话):"; 74 | $lang["vector_youarehere_position"] = "“您在这里“导航的位置(如果激活的话):"; 75 | $lang["vector_cite_author"] = "“引用此文“中的作者姓名:"; 76 | $lang["vector_loaduserjs"] = "载入“vector/user/user.js“?"; 77 | $lang["vector_closedwiki"] = "封闭wiki(许多链接/标签/栏是隐藏的,直到用户登录)?"; 78 | 79 | -------------------------------------------------------------------------------- /lang/zh/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/lang/zh/style.css -------------------------------------------------------------------------------- /mediamanager.php: -------------------------------------------------------------------------------- 1 | 16 | * @link https://www.dokuwiki.org/template:vector 17 | * @link https://www.dokuwiki.org/devel:templates 18 | */ 19 | 20 | //check if we are running within the DokuWiki environment 21 | if (!defined("DOKU_INC")){ 22 | die(); 23 | } 24 | 25 | ?> 27 | " lang="" dir="" class="popup"> 28 | 29 | 30 | <?php echo hsc($lang["mediaselect"]); echo " - ".hsc($conf["title"]); ?> 31 | "; 35 | 36 | //include default or userdefined favicon 37 | // 38 | //note: since 2011-04-22 "Rincewind RC1", there is a core function named 39 | // "tpl_getFavicon()". But its functionality is not really fitting the 40 | // behaviour of this template, therefore I don't use it here. 41 | if (file_exists(DOKU_TPLINC."user/favicon.ico")){ 42 | //user defined - you might find http://tools.dynamicdrive.com/favicon/ 43 | //useful to generate one 44 | echo "\n\n"; 45 | }elseif (file_exists(DOKU_TPLINC."user/favicon.png")){ 46 | //note: I do NOT recommend PNG for favicons (cause it is not supported by 47 | //all browsers), but some users requested this feature. 48 | echo "\n\n"; 49 | }else{ 50 | //default 51 | echo "\n\n"; 52 | } 53 | 54 | //include default or userdefined Apple Touch Icon (see for 55 | //details) 56 | if (file_exists(DOKU_TPLINC."user/apple-touch-icon.png")){ 57 | echo "\n"; 58 | }else{ 59 | //default 60 | echo "\n"; 61 | } 62 | 63 | //load userdefined js? 64 | if (tpl_getConf("vector_loaduserjs")){ 65 | echo "\n"; 66 | } 67 | 68 | //load language specific css hacks? 69 | if (file_exists(DOKU_TPLINC."lang/".$conf["lang"]."/style.css")){ 70 | $interim = trim(file_get_contents(DOKU_TPLINC."lang/".$conf["lang"]."/style.css")); 71 | if (!empty($interim)){ 72 | echo "\n"; 73 | } 74 | } 75 | ?> 76 | 77 | 78 | 79 | 80 | 81 |
82 | 83 |
84 |

85 | 86 | 87 |
88 | 89 | 90 |
91 | 92 |
93 | 94 |
95 |
96 | 97 | 98 | -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copy all the navigational links into a single mobile menu 3 | */ 4 | jQuery(function () { 5 | var $mobilemenu = jQuery('
') 6 | .addClass('mobile-menu'); 7 | 8 | 9 | var $logo = jQuery('#p-logo') 10 | .clone() 11 | .removeAttr('id') 12 | .addClass('mobile-logo') 13 | ; 14 | 15 | var $search = jQuery('#p-search form') 16 | .clone() 17 | .removeAttr('id') 18 | .addClass('mobile-search'); 19 | $search.find('#simpleSearch').removeAttr('id'); 20 | $search.find('button').text('🔍'); 21 | 22 | $mobilemenu.append($search); 23 | 24 | jQuery([ 25 | 'p-navigation', 26 | 'left-navigation', 27 | 'right-navigation', 28 | 'p-coll-print_export', 29 | 'p-tb', 30 | 'p-personal' 31 | ]).each(function (i, name) { 32 | var ul = jQuery('
    '); 33 | $mobilemenu.append(ul); 34 | 35 | var filter = '#' + name + ' li'; 36 | ul.addClass('mobile-' + name); 37 | ul.append( 38 | jQuery(filter) 39 | .not('.selected') 40 | .clone() 41 | .removeAttr('id') 42 | ); 43 | }); 44 | 45 | var $hamburger = jQuery('
    ') 46 | .addClass('mobile-hamburger') 47 | .click(function () { 48 | $mobilemenu.toggleClass('open'); 49 | $hamburger.toggleClass('open') 50 | }); 51 | 52 | 53 | jQuery('body') 54 | .append([ 55 | $mobilemenu, 56 | $hamburger 57 | ]) 58 | .prepend( 59 | $logo 60 | ) 61 | ; 62 | }); 63 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/00_starter-tmpl-notes.txt: -------------------------------------------------------------------------------- 1 | I) starter template CSS version 2 | at 3 | 2012-10-17 01:17 GMT+1 4 | 5 | 6 | II) Modifications 7 | - I edited _links.css, _media_fullscreen.css, _toc.css: 8 | All url(images/[...]) rules were changed (-> "static/3rd/dokuwiki/"). To 9 | make this clear, a comment was added at the top of the files. 10 | - "static/3rd/dokuwiki/bullet|close|open.gif" were re-saved as PNG. 11 | 12 | 13 | III) Notes 14 | The css files were taken from the "starter template". See the following for 15 | more information: 16 | - 17 | - 18 | - ../../../README 19 | 20 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_admin.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the Administration overview 3 | * (?do=admin). 4 | */ 5 | 6 | .dokuwiki ul.admin_tasks { 7 | float: left; 8 | width: 40%; 9 | list-style-type: none; 10 | font-size: 1.125em; 11 | } 12 | [dir=rtl] .dokuwiki ul.admin_tasks { 13 | float: right; 14 | } 15 | 16 | .dokuwiki ul.admin_tasks li { 17 | padding-left: 35px; 18 | margin: 0 0 1em 0; 19 | font-weight: bold; 20 | list-style-type: none; 21 | background: transparent none no-repeat scroll 0 0; 22 | color: inherit; 23 | } 24 | [dir=rtl] .dokuwiki ul.admin_tasks li { 25 | padding-left: 0; 26 | padding-right: 35px; 27 | background-position: right 0; 28 | } 29 | 30 | .dokuwiki ul.admin_tasks li.admin_acl { 31 | background-image: url(../../images/admin/acl.png); 32 | } 33 | .dokuwiki ul.admin_tasks li.admin_usermanager { 34 | background-image: url(../../images/admin/usermanager.png); 35 | } 36 | .dokuwiki ul.admin_tasks li.admin_plugin { 37 | background-image: url(../../images/admin/plugin.png); 38 | } 39 | .dokuwiki ul.admin_tasks li.admin_config { 40 | background-image: url(../../images/admin/config.png); 41 | } 42 | .dokuwiki ul.admin_tasks li.admin_revert { 43 | background-image: url(../../images/admin/revert.png); 44 | } 45 | .dokuwiki ul.admin_tasks li.admin_popularity { 46 | background-image: url(../../images/admin/popularity.png); 47 | } 48 | 49 | /* DokuWiki version below */ 50 | .dokuwiki #admin__version { 51 | clear: left; 52 | float: right; 53 | color: __text_neu__; 54 | background-color: inherit; 55 | } 56 | [dir=rtl] .dokuwiki #admin__version { 57 | clear: right; 58 | float: left; 59 | } 60 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_diff.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the diff view, which shows you 3 | * differences between two versions of a page (?do=diff). 4 | */ 5 | 6 | .dokuwiki table.diff { 7 | width: 100%; 8 | border-width: 0; 9 | } 10 | .dokuwiki table.diff th, 11 | .dokuwiki table.diff td { 12 | vertical-align: top; 13 | padding: 0; 14 | border-width: 0; 15 | /* no style.ini colours because deleted and added lines have a fixed background colour */ 16 | background-color: #fff; 17 | color: #333; 18 | } 19 | 20 | /* table header */ 21 | .dokuwiki table.diff th { 22 | border-bottom: 1px solid __border__; 23 | font-size: 110%; 24 | width: 50%; 25 | font-weight: normal; 26 | } 27 | .dokuwiki table.diff th a { 28 | font-weight: bold; 29 | } 30 | .dokuwiki table.diff th span.user { 31 | font-size: .9em; 32 | } 33 | .dokuwiki table.diff th span.sum { 34 | font-size: .9em; 35 | font-weight: bold; 36 | } 37 | .dokuwiki table.diff th.minor { 38 | color: #999; 39 | } 40 | 41 | /* table body */ 42 | .dokuwiki table.diff td { 43 | font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace; 44 | } 45 | .dokuwiki table.diff td.diff-blockheader { 46 | font-weight: bold; 47 | } 48 | .dokuwiki table.diff .diff-addedline { 49 | background-color: #cfc; 50 | color: inherit; 51 | } 52 | .dokuwiki table.diff .diff-deletedline { 53 | background-color: #fdd; 54 | color: inherit; 55 | } 56 | .dokuwiki table.diff td.diff-context { 57 | background-color: #eee; 58 | color: inherit; 59 | } 60 | .dokuwiki table.diff td.diff-addedline strong, 61 | .dokuwiki table.diff td.diff-deletedline strong { 62 | color: #f00; 63 | background-color: inherit; 64 | font-weight: bold; 65 | } 66 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_edit.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the edit view (?do=edit), preview 3 | * and section edit buttons. 4 | */ 5 | 6 | /* edit view 7 | ********************************************************************/ 8 | 9 | .dokuwiki div.editBox { 10 | } 11 | 12 | /*____________ toolbar ____________*/ 13 | 14 | .dokuwiki div.toolbar { 15 | margin-bottom: .5em; 16 | overflow: hidden; 17 | } 18 | #draft__status { 19 | float: right; 20 | color: __text_alt__; 21 | background-color: inherit; 22 | } 23 | [dir=rtl] #draft__status { 24 | float: left; 25 | } 26 | 27 | #tool__bar { 28 | float: left; 29 | } 30 | [dir=rtl] #tool__bar { 31 | float: right; 32 | } 33 | 34 | /* buttons inside of toolbar */ 35 | .dokuwiki div.toolbar button.toolbutton { 36 | } 37 | /* picker popups (outside of .dokuwiki) */ 38 | div.picker { 39 | width: 300px; 40 | border: 1px solid __border__; 41 | background-color: __background_alt__; 42 | color: inherit; 43 | } 44 | /* picker for headlines */ 45 | div.picker.pk_hl { 46 | width: auto; 47 | } 48 | /* buttons inside of picker */ 49 | div.picker button.pickerbutton, 50 | div.picker button.toolbutton { 51 | padding: .1em .35em; 52 | border-width: 0; 53 | } 54 | 55 | /*____________ edit textarea ____________*/ 56 | 57 | .dokuwiki textarea.edit { 58 | /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */ 59 | width: 700px; 60 | min-width: 100%; 61 | max-width: 100%; 62 | margin-bottom: .5em; 63 | } 64 | 65 | /*____________ below the textarea ____________*/ 66 | 67 | .dokuwiki #wiki__editbar, /* old, until 2012-01-25 */ 68 | .dokuwiki div.editBar /* new */ { 69 | overflow: hidden; 70 | margin-bottom: .5em; 71 | } 72 | 73 | /* size and wrap controls */ 74 | #size__ctl { 75 | float: right; 76 | } 77 | [dir=rtl] #size__ctl { 78 | float: left; 79 | } 80 | #size__ctl img { 81 | cursor: pointer; 82 | } 83 | 84 | /* edit buttons */ 85 | .dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */ 86 | .dokuwiki div.editBar .editButtons /* new */ { 87 | display: inline; 88 | margin-right: 1em; 89 | } 90 | [dir=rtl] .dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */ 91 | [dir=rtl] .dokuwiki .editBar .editButtons /* new */ { 92 | margin-right: 0; 93 | margin-left: 1em; 94 | } 95 | .dokuwiki #wiki__editbar .editButtons input, /* old, until 2012-01-25 */ 96 | .dokuwiki div.editBar .editButtons input /* new */ { 97 | } 98 | 99 | /* summary input and minor changes checkbox */ 100 | .dokuwiki #wiki__editbar .summary, /* old, until 2012-01-25 */ 101 | .dokuwiki div.editBar .summary /* new */ { 102 | display: inline; 103 | } 104 | .dokuwiki #wiki__editbar .summary label, /* old, until 2012-01-25 */ 105 | .dokuwiki div.editBar .summary label /* new */ { 106 | vertical-align: middle; 107 | white-space: nowrap; 108 | } 109 | .dokuwiki #wiki__editbar .summary label span, /* old, until 2012-01-25 */ 110 | .dokuwiki div.editBar .summary label span /* new */ { 111 | vertical-align: middle; 112 | } 113 | .dokuwiki #wiki__editbar .summary input, /* old, until 2012-01-25 */ 114 | .dokuwiki div.editBar .summary input /* new */ { 115 | } 116 | /* change background colour if summary is missing */ 117 | .dokuwiki #wiki__editbar .summary input.missing, /* old, until 2012-01-25 */ 118 | .dokuwiki div.editBar .summary input.missing /* new */ { 119 | color: __text__; 120 | background-color: #ffcccc; 121 | } 122 | 123 | /* preview 124 | ********************************************************************/ 125 | 126 | .dokuwiki div.preview { 127 | border: dotted __border__; 128 | border-width: .2em 0; 129 | padding: 1.4em 0; 130 | margin-bottom: 1.4em; 131 | } 132 | 133 | /* section edit buttons 134 | ********************************************************************/ 135 | 136 | .dokuwiki .secedit { 137 | float: right; 138 | margin-top: -1.4em; 139 | } 140 | [dir=rtl] .dokuwiki .secedit { 141 | float: left; 142 | } 143 | .dokuwiki .secedit input.button { 144 | font-size: 75%; 145 | } 146 | 147 | /* style for section highlighting */ 148 | .dokuwiki div.section_highlight { 149 | margin: 0 -1em; /* negative side margin = side padding + side border */ 150 | padding: 0 .5em; 151 | border: solid __background_alt__; 152 | border-width: 0 .5em; 153 | } 154 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_fileuploader.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides the styles for the file uploader 3 | * used in the media manager (both fullscreen and popup). 4 | */ 5 | 6 | .qq-uploader { 7 | position: relative; 8 | width: 100%; 9 | } 10 | 11 | .qq-uploader .error { 12 | color: #f00; 13 | background-color: #fff; 14 | } 15 | 16 | /* select file button */ 17 | 18 | /* as this is not a real button, but functions as a button, 19 | it should be styled the same way as your other buttons, 20 | preferably in the same place, so just add '.qq-upload-button' to those styles */ 21 | .qq-upload-button { 22 | display: inline-block; 23 | text-decoration: none; 24 | font-size: 100%; 25 | cursor: pointer; 26 | margin: 1px 1px 5px; 27 | } 28 | 29 | 30 | * html .qq-upload-button, 31 | *+html .qq-upload-button { 32 | display: inline; 33 | } 34 | 35 | .qq-upload-button-focus { 36 | outline: 1px dotted; 37 | } 38 | 39 | /* drop area */ 40 | 41 | .qq-upload-drop-area { 42 | position: absolute; 43 | top: 0; 44 | left: 0; 45 | width: 100%; 46 | height: 100%; 47 | min-height: 70px; 48 | z-index: 2; 49 | background: __background_neu__; 50 | color: __text__; 51 | text-align: center; 52 | } 53 | 54 | .qq-upload-drop-area span { 55 | display: block; 56 | position: absolute; 57 | top: 50%; 58 | width: 100%; 59 | margin-top: -8px; 60 | font-size: 120%; 61 | } 62 | 63 | .qq-upload-drop-area-active { 64 | background: __background_alt__; 65 | } 66 | 67 | /* list of files to upload */ 68 | 69 | div.qq-uploader ul { 70 | margin: 0; 71 | padding: 0; 72 | list-style: none; 73 | } 74 | 75 | .qq-uploader li { 76 | margin: 0 0 5px; 77 | color: __text__; 78 | } 79 | 80 | .qq-uploader li span, 81 | .qq-uploader li input, 82 | .qq-uploader li a { 83 | margin-right: 5px; 84 | } 85 | 86 | .qq-upload-file { 87 | display: block; 88 | font-weight: bold; 89 | } 90 | 91 | .qq-upload-spinner { 92 | display: inline-block; 93 | background: url("../../images/throbber.gif"); 94 | width: 15px; 95 | height: 15px; 96 | vertical-align: text-bottom; 97 | } 98 | 99 | .qq-upload-size, 100 | .qq-upload-cancel { 101 | font-size: 85%; 102 | } 103 | 104 | .qq-upload-failed-text { 105 | display: none; 106 | } 107 | .qq-upload-fail .qq-upload-failed-text { 108 | display: inline; 109 | } 110 | 111 | .qq-action-container * { 112 | vertical-align: middle; 113 | } 114 | .qq-overwrite-check input { 115 | margin-left: 10px; 116 | } 117 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_footnotes.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for footnotes. 3 | */ 4 | 5 | /*____________ footnotes inside the text ____________*/ 6 | 7 | /* link to footnote inside the text */ 8 | .dokuwiki sup a.fn_top { 9 | } 10 | /* JSpopup */ 11 | div.insitu-footnote { 12 | max-width: 40%; 13 | min-width: 5em; 14 | } 15 | 16 | /*____________ footnotes at the bottom of the page ____________*/ 17 | 18 | .dokuwiki div.footnotes { 19 | border-top: 1px solid __border__; 20 | padding: .5em 0 0 0; 21 | margin: 1em 0 0 0; 22 | clear: both; 23 | } 24 | .dokuwiki div.footnotes div.fn { 25 | } 26 | .dokuwiki div.footnotes div.fn sup a.fn_bot { 27 | font-weight: bold; 28 | } 29 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_forms.css: -------------------------------------------------------------------------------- 1 | 2 | /* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */ 3 | 4 | /** 5 | * This file provides styles for forms in general and specifically 6 | * for ?do= 7 | * - login 8 | * - resendpwd 9 | * - register 10 | * - profile 11 | * - subscribe 12 | */ 13 | 14 | /* ---------------- forms ------------------------ */ 15 | 16 | .dokuwiki form { 17 | border: none; 18 | display: inline; 19 | } 20 | 21 | .dokuwiki label.block { 22 | display: block; 23 | text-align: right; 24 | font-weight: bold; 25 | } 26 | [dir=rtl] .dokuwiki label.block { 27 | text-align: left; 28 | } 29 | 30 | .dokuwiki label.simple { 31 | display: block; 32 | text-align: left; 33 | font-weight: normal; 34 | } 35 | [dir=rtl] .dokuwiki label.simple { 36 | text-align: right; 37 | } 38 | 39 | .dokuwiki label.block select, 40 | .dokuwiki label.block input.edit { 41 | width: 50%; 42 | } 43 | 44 | .dokuwiki label span { 45 | vertical-align: middle; 46 | } 47 | 48 | .dokuwiki fieldset { 49 | width: 400px; 50 | text-align: center; 51 | border: 1px solid __border__; 52 | padding: 0.5em; 53 | margin: auto; 54 | } 55 | 56 | 57 | .dokuwiki input.edit, 58 | .dokuwiki select.edit { 59 | vertical-align: middle; 60 | } 61 | .dokuwiki select.edit { 62 | padding: 0.1em 0; 63 | } 64 | 65 | 66 | .dokuwiki input.button, 67 | .dokuwiki button.button { 68 | vertical-align: middle; 69 | } 70 | 71 | /** 72 | * Styles for the subscription page 73 | */ 74 | 75 | #subscribe__form { 76 | display: block; 77 | width: 400px; 78 | text-align: center; 79 | } 80 | 81 | #subscribe__form fieldset { 82 | text-align: left; 83 | margin: 0.5em 0; 84 | } 85 | [dir=rtl] #subscribe__form fieldset { 86 | text-align: right; 87 | } 88 | 89 | #subscribe__form label { 90 | display: block; 91 | margin: 0 0.5em 0.5em; 92 | } 93 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_imgdetail.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the image detail page (detail.php). 3 | */ 4 | 5 | #dokuwiki__detail { 6 | padding: 1em; 7 | } 8 | #dokuwiki__detail h1 { 9 | } 10 | 11 | #dokuwiki__detail img { 12 | float: left; 13 | margin: 0 1.5em .5em 0; 14 | } 15 | [dir=rtl] #dokuwiki__detail img { 16 | float: right; 17 | margin-right: 0; 18 | margin-left: 1.5em; 19 | } 20 | #dokuwiki__detail div.img_detail { 21 | float: left; 22 | } 23 | [dir=rtl] #dokuwiki__detail div.img_detail { 24 | float: right 25 | } 26 | 27 | #dokuwiki__detail div.img_detail h2 { 28 | } 29 | #dokuwiki__detail div.img_detail dl { 30 | } 31 | #dokuwiki__detail div.img_detail dl dt { 32 | } 33 | #dokuwiki__detail div.img_detail dl dd { 34 | } 35 | 36 | #dokuwiki__detail p.back { 37 | clear: both; 38 | } 39 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_links.css: -------------------------------------------------------------------------------- 1 | /* ATTENTION: This file was edited for the "vector template for DokuWiki". 2 | - All url(images/[...]) rules where changed. 3 | See 00_starter-tmpl-notes.txt for details. */ 4 | 5 | /** 6 | * This file provides styles for all types of links. 7 | */ 8 | 9 | /*____________ links to wiki pages ____________*/ 10 | 11 | /* existing wikipage */ 12 | .dokuwiki a.wikilink1 { 13 | } 14 | /* not existing wikipage */ 15 | .dokuwiki a.wikilink2 { 16 | text-decoration: none; 17 | } 18 | .dokuwiki a.wikilink2:link, 19 | .dokuwiki a.wikilink2:visited { 20 | border-bottom: 1px dashed; 21 | } 22 | .dokuwiki a.wikilink2:hover, 23 | .dokuwiki a.wikilink2:active, 24 | .dokuwiki a.wikilink2:focus { 25 | border-bottom-width: 0; 26 | } 27 | 28 | /* any link to current page */ 29 | .dokuwiki span.curid a { 30 | font-weight: bold; 31 | } 32 | 33 | /*____________ other link types ____________*/ 34 | 35 | .dokuwiki a.urlextern, 36 | .dokuwiki a.windows, 37 | .dokuwiki a.mail, 38 | .dokuwiki a.mediafile, 39 | .dokuwiki a.interwiki { 40 | background-repeat: no-repeat; 41 | background-position: 0 center; 42 | padding: 0 0 0 18px; 43 | } 44 | /* external link */ 45 | .dokuwiki a.urlextern { 46 | background-image: url(static/3rd/dokuwiki/external-link.png); 47 | /* 48 | @deprecated, change since Adora Belle: 49 | background-image: url(../../images/external-link.png); 50 | */ 51 | } 52 | /* windows share */ 53 | .dokuwiki a.windows { 54 | background-image: url(static/3rd/dokuwiki/unc.png); 55 | /* 56 | @deprecated, change since Adora Belle: 57 | background-image: url(../../images/unc.png); 58 | */ 59 | } 60 | /* email link */ 61 | .dokuwiki a.mail { 62 | background-image: url(static/3rd/dokuwiki/email.png); 63 | /* 64 | @deprecated, change since Adora Belle: 65 | background-image: url(../../images/email.png); 66 | */ 67 | } 68 | 69 | /* icons of the following are set by dokuwiki in lib/exe/css.php */ 70 | /* link to some embedded media */ 71 | .dokuwiki a.mediafile { 72 | } 73 | /* interwiki link */ 74 | .dokuwiki a.interwiki { 75 | } 76 | 77 | /* RTL corrections */ 78 | [dir=rtl] .dokuwiki a.urlextern, 79 | [dir=rtl] .dokuwiki a.windows, 80 | [dir=rtl] .dokuwiki a.mail, 81 | [dir=rtl] .dokuwiki a.interwiki, 82 | [dir=rtl] .dokuwiki a.mediafile { 83 | background-position: right center; 84 | padding: 0 18px 0 0; 85 | display: inline-block; /* needed for IE7 */ 86 | } 87 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_modal.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for modal dialogues. 3 | */ 4 | 5 | .dokuwiki .ui-widget { 6 | font-size: 100%; 7 | } 8 | 9 | 10 | /* link wizard (opens from the link button in the edit toolbar) 11 | ********************************************************************/ 12 | 13 | #link__wiz { 14 | } 15 | 16 | #link__wiz_result { 17 | background-color: __background__; 18 | width: 293px; 19 | height: 193px; 20 | overflow: auto; 21 | border: 1px solid __border__; 22 | margin: 3px auto; 23 | text-align: left; 24 | line-height: 1; 25 | } 26 | [dir=rtl] #link__wiz_result { 27 | text-align: right; 28 | } 29 | 30 | #link__wiz_result div { 31 | padding: 3px 3px 3px 0; 32 | } 33 | [dir=rtl] #link__wiz_result div { 34 | padding: 3px 0 3px 3px; 35 | } 36 | 37 | #link__wiz_result div a { 38 | display: block; 39 | padding-left: 22px; 40 | min-height: 16px; 41 | background: transparent 3px center no-repeat; 42 | } 43 | [dir=rtl] #link__wiz_result div a { 44 | padding-right: 22px; 45 | background-position: right 0; 46 | } 47 | 48 | #link__wiz_result div.type_u a { 49 | background-image: url(../../images/up.png); 50 | } 51 | #link__wiz_result div.type_f a { 52 | background-image: url(../../images/page.png); 53 | } 54 | #link__wiz_result div.type_d a { 55 | background-image: url(../../images/ns.png); 56 | } 57 | 58 | #link__wiz_result div.even { 59 | background-color: __background_neu__; 60 | } 61 | 62 | #link__wiz_result div.selected { 63 | background-color: __background_alt__; 64 | } 65 | 66 | #link__wiz_result span { 67 | display: block; 68 | color: __text_neu__; 69 | margin-left: 22px; 70 | } 71 | [dir=rtl] #link__wiz_result span { 72 | margin-left: 0; 73 | margin-right: 22px; 74 | } 75 | 76 | 77 | /* media option wizard (opens when inserting media in the media popup) 78 | ********************************************************************/ 79 | 80 | #media__popup { 81 | /* for backwards compatibility (not needed since Rincewind) */ 82 | display: none; 83 | } 84 | 85 | #media__popup_content p { 86 | margin: 0 0 .5em; 87 | } 88 | 89 | #media__popup_content label { 90 | margin-right: .5em; 91 | cursor: default; 92 | } 93 | [dir=rtl] #media__popup_content label { 94 | margin-right: 0; 95 | margin-left: .5em; 96 | } 97 | 98 | #media__popup_content .button { 99 | margin-right: 1px; 100 | cursor: pointer; 101 | } 102 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_recent.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the recent changes (?do=recent) and 3 | * old revisions (?do=revisions). 4 | */ 5 | 6 | /*____________ list of revisions / recent changes ____________*/ 7 | 8 | /* select type of revisions (media/pages), should have a class on it's own, but hasn't (until after version 2012-01-25) */ 9 | .dokuwiki #dw__recent label, /* old, until 2012-01-25 */ 10 | .dokuwiki .changeType /* new */ { 11 | margin-bottom: .5em; 12 | display: block; 13 | } 14 | 15 | .dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */ 16 | .dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */ 17 | .dokuwiki form.changes ul li /* new */ { 18 | list-style: none; 19 | margin-left: 0; 20 | } 21 | [dir=rtl] .dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */ 22 | [dir=rtl] .dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */ 23 | [dir=rtl] .dokuwiki form.changes ul li /* new */ { 24 | margin-right: 0; 25 | } 26 | 27 | .dokuwiki #dw__recent ul li span, /* old, until 2012-01-25 */ 28 | .dokuwiki #page__revisions ul li span, /* old, until 2012-01-25 */ 29 | .dokuwiki form.changes ul li span, /* new */ 30 | .dokuwiki #dw__recent ul li a, /* old, until 2012-01-25 */ 31 | .dokuwiki #page__revisions ul li a, /* old, until 2012-01-25 */ 32 | .dokuwiki form.changes ul li a /* new */ { 33 | vertical-align: middle; 34 | } 35 | .dokuwiki #dw__recent ul li span.user a, /* old, until 2012-01-25 */ 36 | .dokuwiki #page__revisions ul li span.user a, /* old, until 2012-01-25 */ 37 | .dokuwiki form.changes ul li span.user a /* new */ { 38 | vertical-align: bottom; 39 | } 40 | .dokuwiki #dw__recent ul li.minor, /* old, until 2012-01-25 */ 41 | .dokuwiki #page__revisions ul li.minor, /* old, until 2012-01-25 */ 42 | .dokuwiki form.changes ul li.minor /* new */ { 43 | opacity: .7; 44 | } 45 | 46 | .dokuwiki #dw__recent ul li span.date, /* old, until 2012-01-25 */ 47 | .dokuwiki #page__revisions ul li span.date, /* old, until 2012-01-25 */ 48 | .dokuwiki form.changes ul li span.date /* new */ { 49 | } 50 | .dokuwiki #dw__recent ul li a.diff_link, /* old, until 2012-01-25 */ 51 | .dokuwiki #page__revisions ul li a.diff_link, /* old, until 2012-01-25 */ 52 | .dokuwiki form.changes ul li a.diff_link /* new */ { 53 | vertical-align: baseline; 54 | } 55 | .dokuwiki #dw__recent ul li a.revisions_link, /* old, until 2012-01-25 */ 56 | .dokuwiki #page__revisions ul li a.revisions_link, /* old, until 2012-01-25 */ 57 | .dokuwiki form.changes ul li a.revisions_link /* new */ { 58 | vertical-align: baseline; 59 | } 60 | .dokuwiki #dw__recent ul li a.wikilink1, /* old, until 2012-01-25 */ 61 | .dokuwiki #page__revisions ul li a.wikilink1, /* old, until 2012-01-25 */ 62 | .dokuwiki form.changes ul li a.wikilink1, /* new */ 63 | .dokuwiki #dw__recent ul li a.wikilink2, /* old, until 2012-01-25 */ 64 | .dokuwiki #page__revisions ul li a.wikilink2, /* old, until 2012-01-25 */ 65 | .dokuwiki form.changes ul li a.wikilink2 /* new */ { 66 | } 67 | .dokuwiki #dw__recent ul li span.sum, /* old, until 2012-01-25 */ 68 | .dokuwiki #page__revisions ul li span.sum, /* old, until 2012-01-25 */ 69 | .dokuwiki form.changes ul li span.sum /* new */ { 70 | font-weight: bold; 71 | } 72 | .dokuwiki #dw__recent ul li span.user, /* old, until 2012-01-25 */ 73 | .dokuwiki #page__revisions ul li span.user, /* old, until 2012-01-25 */ 74 | .dokuwiki form.changes ul li span.user /* new */ { 75 | } 76 | 77 | 78 | /*____________ page navigator ____________*/ 79 | 80 | .dokuwiki div.pagenav { 81 | text-align: center; 82 | margin: 1.4em 0; 83 | } 84 | .dokuwiki div.pagenav-prev, 85 | .dokuwiki div.pagenav-next { 86 | display: inline; 87 | margin: 0 .5em; 88 | } 89 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_search.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides styles for the search results page (?do=search) 3 | * and the AJAX search popup. 4 | */ 5 | 6 | /* search results page 7 | ********************************************************************/ 8 | 9 | /* loading gif */ 10 | #dw__loading { 11 | text-align: center; 12 | margin-bottom: 1.4em; 13 | } 14 | 15 | /*____________ matching pagenames ____________*/ 16 | 17 | .dokuwiki div.search_quickresult { 18 | margin-bottom: 1.4em; 19 | } 20 | .dokuwiki div.search_quickresult h3 { 21 | } 22 | .dokuwiki div.search_quickresult ul { 23 | padding: 0; 24 | } 25 | .dokuwiki div.search_quickresult ul li { 26 | float: left; 27 | width: 12em; 28 | margin: 0 1.5em; 29 | } 30 | [dir=rtl] .dokuwiki div.search_quickresult ul li { 31 | float: right; 32 | } 33 | 34 | /*____________ search results ____________*/ 35 | 36 | .dokuwiki div.search_result { 37 | margin-bottom: 1.2em; 38 | } 39 | /* search heading */ 40 | .dokuwiki dl.search_results dt { 41 | font-weight: normal; 42 | margin-bottom: .2em; 43 | } 44 | 45 | /* search snippet */ 46 | .dokuwiki div.search_result div.search_snippet, /* old, until 2012-01-25 */ 47 | .dokuwiki dl.search_results dd /* new */ { 48 | color: __text_alt__; 49 | background-color: inherit; 50 | margin: 0 0 1.2em 0; 51 | } 52 | 53 | /* search hit in normal text */ 54 | .dokuwiki .search_hit { 55 | color: __text__; 56 | background-color: __highlight__; 57 | } 58 | /* search hit in search results */ 59 | .dokuwiki div.search_result strong.search_hit, /* old */ 60 | .dokuwiki .search_results strong.search_hit /* new */ { 61 | font-weight: normal; 62 | } 63 | /* ellipsis separating snippets */ 64 | .dokuwiki div.search_result .search_sep, /* old */ 65 | .dokuwiki .search_results .search_sep /* new */ { 66 | color: __text__; 67 | background-color: inherit; 68 | } 69 | 70 | /* "nothing found" at search + media */ 71 | .dokuwiki div.nothing { 72 | margin-bottom: 1.4em; 73 | } 74 | 75 | 76 | /* AJAX quicksearch popup 77 | ********************************************************************/ 78 | 79 | .dokuwiki form.search div.no { 80 | position: relative; 81 | z-index: 1; 82 | } 83 | 84 | /* .JSpopup */ 85 | .dokuwiki form.search div.ajax_qsearch { 86 | position: absolute; 87 | top: 0; 88 | left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */ 89 | width: 12em; 90 | padding: 0.5em; 91 | font-size: .9em; 92 | z-index: 20; 93 | text-align: left; 94 | display: none; 95 | } 96 | [dir=rtl] .dokuwiki form.search div.ajax_qsearch { 97 | left: auto; 98 | right: -13.5em; 99 | text-align: right; 100 | } 101 | 102 | .dokuwiki form.search div.ajax_qsearch strong { 103 | display: block; 104 | margin-bottom: .3em; 105 | } 106 | .dokuwiki form.search div.ajax_qsearch ul { 107 | margin: 0 !important; 108 | padding: 0 !important; 109 | } 110 | .dokuwiki form.search div.ajax_qsearch ul li { 111 | margin: 0; 112 | padding: 0; 113 | display: block !important; 114 | } 115 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_tabs.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides the styles for general tabs. 3 | */ 4 | 5 | .dokuwiki .tabs > ul, 6 | .dokuwiki ul.tabs { 7 | padding: 0; 8 | margin: 0; 9 | overflow: hidden; 10 | position: relative; 11 | } 12 | /* border underneath */ 13 | .dokuwiki .tabs > ul:after, 14 | .dokuwiki ul.tabs:after { 15 | position: absolute; 16 | content: ""; 17 | width: 100%; 18 | bottom: 0; 19 | left: 0; 20 | border-bottom: 1px solid __border__; 21 | z-index: 1; 22 | } 23 | 24 | .dokuwiki .tabs > ul li, 25 | .dokuwiki ul.tabs li { 26 | float: left; 27 | padding: 0; 28 | margin: 0; 29 | list-style: none; 30 | } 31 | [dir=rtl] .dokuwiki .tabs > ul li, 32 | [dir=rtl] .dokuwiki ul.tabs li { 33 | float: right; 34 | } 35 | 36 | .dokuwiki .tabs > ul li a, 37 | .dokuwiki ul.tabs li strong, 38 | .dokuwiki ul.tabs li a { 39 | display: inline-block; 40 | padding: .3em .8em; 41 | margin: 0 0 0 .3em; 42 | background-color: __background_neu__; 43 | color: __text__; 44 | border: 1px solid __border__; 45 | border-radius: .5em .5em 0 0; 46 | position: relative; 47 | z-index: 0; 48 | } 49 | [dir=rtl] .dokuwiki .tabs > ul li a, 50 | [dir=rtl] .dokuwiki ul.tabs li strong, 51 | [dir=rtl] .dokuwiki ul.tabs li a { 52 | margin: 0 .3em 0 0; 53 | } 54 | 55 | .dokuwiki ul.tabs li strong { 56 | font-weight: normal; 57 | } 58 | 59 | .dokuwiki ul.tabs li a:link, 60 | .dokuwiki ul.tabs li a:visited { 61 | } 62 | .dokuwiki .tabs > ul li a:hover, 63 | .dokuwiki .tabs > ul li a:active, 64 | .dokuwiki .tabs > ul li a:focus, 65 | .dokuwiki .tabs > ul li .curid a, 66 | .dokuwiki .tabs > ul .active a, 67 | .dokuwiki ul.tabs li a:hover, 68 | .dokuwiki ul.tabs li a:active, 69 | .dokuwiki ul.tabs li a:focus, 70 | .dokuwiki ul.tabs li strong { 71 | background-color: __background_alt__; 72 | color: __text__; 73 | text-decoration: none; 74 | font-weight: normal; 75 | } 76 | 77 | .dokuwiki .tabs > ul li .curid a, 78 | .dokuwiki .tabs > ul li .active a, 79 | .dokuwiki ul.tabs li strong { 80 | z-index: 2; 81 | border-bottom-color: __background_alt__; 82 | } 83 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/_toc.css: -------------------------------------------------------------------------------- 1 | /* ATTENTION: This file was edited for the "vector template for DokuWiki". 2 | - All url(images/[...]) rules where changed. 3 | See 00_starter-tmpl-notes.txt for details. */ 4 | 5 | /** 6 | * This file provides styles for the TOC (table of contents), the 7 | * sitemap (?do=index) and backlinks (?do=backlink). 8 | */ 9 | 10 | /* toc 11 | ********************************************************************/ 12 | 13 | /* toc container */ 14 | .dokuwiki div.toc, /* old, until 2012-01-25 */ 15 | #dw__toc /* new */ { 16 | float: right; 17 | margin: 0 0 1.4em 1.4em; 18 | width: 12em; 19 | background-color: __background_alt__; 20 | color: inherit; 21 | } 22 | [dir=rtl] .dokuwiki div.toc, /* old, until 2012-01-25 */ 23 | [dir=rtl] #dw__toc /* new */ { 24 | float: left; 25 | margin: 0 1.4em 1.4em 0; 26 | } 27 | 28 | /*____________ toc header ____________*/ 29 | 30 | .dokuwiki div.tocheader, /* old */ 31 | #dw__toc h3 /* new */ { 32 | padding: .2em .5em; 33 | font-weight: bold; 34 | margin-bottom: 0; 35 | font-size: 1em; 36 | } 37 | 38 | .dokuwiki .toc span.toc_open, /* old */ 39 | .dokuwiki .toc span.toc_close, /* old */ 40 | #dw__toc h3 strong /* new */ { 41 | float: right; 42 | margin: 0 .2em; 43 | line-height: 1; 44 | } 45 | [dir=rtl] .dokuwiki .toc span.toc_open, /* old */ 46 | [dir=rtl] .dokuwiki .toc span.toc_close, /* old */ 47 | [dir=rtl] #dw__toc h3 strong /* new */ { 48 | float: left; 49 | } 50 | 51 | /*____________ toc list ____________*/ 52 | 53 | .dokuwiki #toc__inside, 54 | #dw__toc > div { 55 | padding: .2em .5em; 56 | } 57 | .dokuwiki #toc__inside ul, /* old */ 58 | #dw__toc ul /* new */ { 59 | padding: 0; 60 | margin: 0; 61 | } 62 | .dokuwiki #toc__inside ul li, /* old */ 63 | #dw__toc ul li /* new */ { 64 | list-style: none; 65 | padding: 0; 66 | margin: 0; 67 | line-height: 1.1; 68 | } 69 | .dokuwiki #toc__inside ul li div.li, /* old */ 70 | #dw__toc ul li div.li /* new */ { 71 | padding: .15em 0; 72 | } 73 | .dokuwiki #toc__inside ul ul, /* old */ 74 | #dw__toc ul ul /* new */ { 75 | padding-left: 1em; 76 | } 77 | [dir=rtl] .dokuwiki #toc__inside ul ul, /* old */ 78 | [dir=rtl] #dw__toc ul ul /* new */ { 79 | padding-left: 0; 80 | padding-right: 1em; 81 | } 82 | .dokuwiki #toc__inside ul ul li, /* old */ 83 | #dw__toc ul ul li /* new */ { 84 | } 85 | .dokuwiki #toc__inside ul li a, /* old */ 86 | #dw__toc ul li a /* new */ { 87 | } 88 | 89 | /* in case of toc list jumping one level 90 | (e.g. if heading level 3 follows directly after heading level 1) */ 91 | .dokuwiki #toc__inside ul li.clear, /* old */ 92 | #dw__toc ul li.clear /* new */ { 93 | } 94 | 95 | 96 | /* sitemap (and backlinks) 97 | ********************************************************************/ 98 | 99 | .dokuwiki ul.idx { 100 | padding-left: 0; 101 | } 102 | [dir=rtl] .dokuwiki ul.idx { 103 | padding-right: 0; 104 | } 105 | .dokuwiki ul.idx li { 106 | list-style-image: url(static/3rd/dokuwiki/bullet.png); 107 | /* 108 | @deprecated, change since Adora Belle: 109 | list-style-image: url(../../images/bullet.png); 110 | */ 111 | } 112 | .dokuwiki ul.idx li.open { 113 | list-style-image: url(static/3rd/dokuwiki/open.png); 114 | /* 115 | @deprecated, change since Adora Belle: 116 | list-style-image: url(../../images/open.png); 117 | */ 118 | } 119 | .dokuwiki ul.idx li.closed { 120 | list-style-image: url(static/3rd/dokuwiki/closed.png); 121 | /* 122 | @deprecated, change since Adora Belle: 123 | list-style-image: url(../../images/closed.png); 124 | */ 125 | } 126 | [dir=rtl] .dokuwiki ul.idx li.closed { 127 | list-style-image: url(static/3rd/dokuwiki/closed-rtl.png); 128 | /* 129 | @deprecated, change since Adora Belle: 130 | list-style-image: url(../../images/closed-rtl.png); 131 | */ 132 | } 133 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/apple-touch-icon.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/bullet.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/buttonshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/buttonshadow.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed-rtl.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/email.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/external-link.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/favicon.ico -------------------------------------------------------------------------------- /static/3rd/dokuwiki/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/inputshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/inputshadow.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/logo.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/logo.png-readme.txt: -------------------------------------------------------------------------------- 1 | en: To use an own logo, DO NOT replace the logo.png in here. Simply store your 2 | logo.[png|gif|jpg] into "/vector/user/". See README for details. 3 | 4 | de: Um ein eigenes Logo zu nutzen bitte NICHT die logo.png in diesem Verzeichnis 5 | ersetzen, sondern einfach eine logo.[png|gif|jpg] unterhalb "/vector/user/" 6 | abspeichern. Siehe README für weiter Details. 7 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/open.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/open.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/print.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This file provides the styles for printing. 3 | * 4 | * @todo: improve and finish 5 | */ 6 | 7 | body { 8 | /* 9 | font: normal 12pt/1.2 serif; 10 | color: #000; 11 | background-color: #fff; 12 | */ 13 | } 14 | 15 | /* hide certain sections */ 16 | .a11y, 17 | div.notify, div.info, div.success, div.error, 18 | #dokuwiki__header .tools, #dokuwiki__aside, 19 | .dokuwiki .breadcrumbs, .dokuwiki .toc, #dw__toc, .dokuwiki .secedit, 20 | #dokuwiki__pagetools, #dokuwiki__footer { 21 | display: none; 22 | } 23 | 24 | .dokuwiki h1, 25 | .dokuwiki h2, 26 | .dokuwiki h3, 27 | .dokuwiki h4, 28 | .dokuwiki h5, 29 | .dokuwiki caption, 30 | .dokuwiki legend { 31 | clear: both; 32 | } 33 | 34 | .dokuwiki ul { 35 | list-style: disc outside; 36 | } 37 | .dokuwiki ol { 38 | list-style: decimal outside; 39 | } 40 | .dokuwiki ol ol { 41 | list-style-type: lower-alpha; 42 | } 43 | .dokuwiki ol ol ol { 44 | list-style-type: upper-roman; 45 | } 46 | .dokuwiki ol ol ol ol { 47 | list-style-type: upper-alpha; 48 | } 49 | .dokuwiki ol ol ol ol ol { 50 | list-style-type: lower-roman; 51 | } 52 | 53 | /* undo icons */ 54 | .dokuwiki a:link, 55 | .dokuwiki a:visited { 56 | text-decoration: underline; 57 | color: #333; 58 | background-color: inherit; 59 | background-image: none; 60 | padding: 0; 61 | } 62 | 63 | /* display href after link */ 64 | a.urlextern:after, 65 | a.interwiki:after, 66 | a.mail:after { 67 | content: " [" attr(href) "]"; 68 | font-size: 90%; 69 | } 70 | 71 | /* code blocks */ 72 | .dokuwiki pre { 73 | font-family: monospace; 74 | } 75 | .dokuwiki dl.code dt, 76 | .dokuwiki dl.file dt { 77 | font-weight: bold; 78 | } 79 | 80 | /* images */ 81 | .dokuwiki img { 82 | border-width: 0; 83 | vertical-align: middle; 84 | } 85 | .dokuwiki img.media { 86 | margin: .2em 0; 87 | } 88 | .dokuwiki img.medialeft { 89 | margin: .2em 1.5em .2em 0; 90 | } 91 | .dokuwiki img.mediaright { 92 | margin: .2em 0 .2em 1.5em; 93 | } 94 | .dokuwiki img.mediacenter { 95 | margin: .2em auto; 96 | } 97 | 98 | /* align table cells */ 99 | .dokuwiki .leftalign { 100 | text-align: left; 101 | } 102 | .dokuwiki .centeralign { 103 | text-align: center; 104 | } 105 | .dokuwiki .rightalign { 106 | text-align: right; 107 | } 108 | 109 | /* underline */ 110 | .dokuwiki em.u { 111 | font-style: normal; 112 | text-decoration: underline; 113 | } 114 | .dokuwiki em em.u { 115 | font-style: italic; 116 | } 117 | 118 | div.clearer { 119 | clear: both; 120 | line-height: 0; 121 | height: 0; 122 | overflow: hidden; 123 | } 124 | 125 | .dokuwiki blockquote { 126 | padding: 0 10pt; 127 | margin: 0; 128 | border: solid #ccc; 129 | border-width: 0 0 0 2pt; 130 | } 131 | [dir=rtl] .dokuwiki blockquote { 132 | border-width: 0 2pt 0 0; 133 | } 134 | 135 | /* tables */ 136 | .dokuwiki table { 137 | border-collapse: collapse; 138 | empty-cells: show; 139 | border-spacing: 0; 140 | border: 1pt solid #ccc; 141 | } 142 | .dokuwiki th, 143 | .dokuwiki td { 144 | padding: 3pt 5pt; 145 | margin: 0; 146 | vertical-align: top; 147 | border: 1pt solid #666; 148 | text-align: left; 149 | } 150 | [dir=rtl] .dokuwiki th, 151 | [dir=rtl] .dokuwiki td { 152 | text-align: right; 153 | } 154 | .dokuwiki th { 155 | font-weight: bold; 156 | } 157 | 158 | 159 | /*____________ a bit of layout ____________*/ 160 | 161 | #dokuwiki__header { 162 | border-bottom: 2pt solid #ccc; 163 | } 164 | #dokuwiki__header h1 { 165 | font-size: 1.5em; 166 | } 167 | #dokuwiki__header h1 a { 168 | text-decoration: none; 169 | } 170 | .dokuwiki div.footnotes { 171 | clear: both; 172 | border-top: 1pt solid #000; 173 | margin-top: 10pt; 174 | } 175 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/resizecol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/resizecol.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/tocdot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/tocdot2.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/unc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/unc.png -------------------------------------------------------------------------------- /static/3rd/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/3rd/vector/arrow-down-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/arrow-down-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/audio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/audio-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/border.png -------------------------------------------------------------------------------- /static/3rd/vector/bullet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/bullet-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/document-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/document-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/edit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/edit-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/external-link-ltr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/external-link-ltr-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/external-link-rtl-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/external-link-rtl-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/file-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/3rd/vector/link-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/link-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/lock-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/lock-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/magnify-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/magnify-clip.png -------------------------------------------------------------------------------- /static/3rd/vector/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/mail-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/news-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/news-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/page-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/page-base.png -------------------------------------------------------------------------------- /static/3rd/vector/page-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/page-fade.png -------------------------------------------------------------------------------- /static/3rd/vector/portal-break-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break-ltr.png -------------------------------------------------------------------------------- /static/3rd/vector/portal-break-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break-rtl.png -------------------------------------------------------------------------------- /static/3rd/vector/portal-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break.png -------------------------------------------------------------------------------- /static/3rd/vector/preferences-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-base.png -------------------------------------------------------------------------------- /static/3rd/vector/preferences-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-break.png -------------------------------------------------------------------------------- /static/3rd/vector/preferences-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-edge.png -------------------------------------------------------------------------------- /static/3rd/vector/preferences-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-fade.png -------------------------------------------------------------------------------- /static/3rd/vector/search-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-fade.png -------------------------------------------------------------------------------- /static/3rd/vector/search-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-ltr.png -------------------------------------------------------------------------------- /static/3rd/vector/search-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-rtl.png -------------------------------------------------------------------------------- /static/3rd/vector/tab-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-break.png -------------------------------------------------------------------------------- /static/3rd/vector/tab-current-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-current-fade.png -------------------------------------------------------------------------------- /static/3rd/vector/tab-normal-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-normal-fade.png -------------------------------------------------------------------------------- /static/3rd/vector/talk-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/talk-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/user-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/video-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/video-icon.png -------------------------------------------------------------------------------- /static/3rd/vector/watch-icon-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/watch-icon-loading.gif -------------------------------------------------------------------------------- /static/3rd/vector/watch-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/watch-icons.png -------------------------------------------------------------------------------- /static/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/css/print.css: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | ******************************** ATTENTION ********************************* 3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 4 | ****************************************************************************** 5 | If you want to add some own screen CSS, have a look at the README of this 6 | template and "/user/print.css". You have been warned! 7 | *****************************************************************************/ 8 | 9 | body { 10 | font: normal 80%/1.4 sans-serif; 11 | } 12 | div#content .dokuwiki h1, 13 | div#content .dokuwiki h2, 14 | div#content .dokuwiki h3, 15 | div#content .dokuwiki h4, 16 | div#content .dokuwiki h5, 17 | div#content .dokuwiki h6 { 18 | border-bottom: 0 none; 19 | } 20 | div#content .dokuwiki h1, 21 | div#content .dokuwiki h2 { 22 | font-weight: bold; 23 | } 24 | div#content .dokuwiki h1 { 25 | font-weight: 135%; 26 | } 27 | div#content .dokuwiki h2 { 28 | font-weight: 130%; 29 | } 30 | div#content .dokuwiki h3, 31 | div#content .dokuwiki h4, 32 | div#content .dokuwiki h5, 33 | div#content .dokuwiki h6 { 34 | font-weight: normal; 35 | text-decoration: underline; 36 | } 37 | 38 | /* define the "noprint" class used by the original MediaWiki vector skin */ 39 | .noprint { 40 | display: none; 41 | } 42 | 43 | /* remove some link styling */ 44 | div.dokuwiki a { 45 | text-decoration: none !important; 46 | } 47 | 48 | /* remove interwiki link icons */ 49 | div.dokuwiki a.interwiki { 50 | background: transparent none; 51 | padding: 0; 52 | } 53 | 54 | /* quotes */ 55 | div#content .dokuwiki blockquote { 56 | border-left: 2px solid __border__; 57 | padding-left: 3px; 58 | margin-left: 0.2em; 59 | } 60 | 61 | /* preformatted stuff, source code */ 62 | div#content .dokuwiki code, 63 | div#content .dokuwiki pre, 64 | div#content .dokuwiki pre.code, 65 | div#content .dokuwiki pre.file { 66 | font-size: 100%; 67 | } 68 | div#content .dokuwiki pre, 69 | div#content .dokuwiki pre.code, 70 | div#content .dokuwiki pre.file { 71 | line-height: 1.2em; 72 | background-color: __background_other__; 73 | } 74 | div#content .dokuwiki dl.file, 75 | div#content .dokuwiki dl.file dd, 76 | div#content .dokuwiki dl.file dt { 77 | margin-left: 0; 78 | } 79 | div#content .dokuwiki dl.file dt { 80 | background-color: __background_other__; 81 | } 82 | 83 | /* misc tweaks */ 84 | div#content, 85 | div#bodyContent { 86 | margin-left: 0; 87 | border: 0 none; 88 | font-size: 1em; 89 | } 90 | body { 91 | background-image: none; 92 | background-color: #fff; 93 | } 94 | 95 | /* tag plugin: hide tag row */ 96 | div.tags { 97 | display: none; 98 | } 99 | 100 | /* pagelist plugin: listing tables */ 101 | div#content .dokuwiki table.ul, 102 | div#content .dokuwiki table.ul tr, 103 | div#content .dokuwiki table.ul td { 104 | border: 0 none; 105 | } 106 | div#content .dokuwiki table.ul td.date, 107 | div#content .dokuwiki table.ul td.user { 108 | display: none; 109 | } 110 | div#content .dokuwiki table.ul ul, 111 | div#content .dokuwiki table.ul ol, 112 | div#content .dokuwiki table.ul li { 113 | margin-top: 0; 114 | margin-bottom: 0; 115 | padding-top: 0; 116 | padding-bottom: 0; 117 | } 118 | 119 | /* wrap plugin: modify some inline styles */ 120 | div#content .dokuwiki span.wrap_box, 121 | div#content .dokuwiki span.wrap_danger, 122 | div#content .dokuwiki span.wrap_warning, 123 | div#content .dokuwiki span.wrap_caution, 124 | div#content .dokuwiki span.wrap_notice, 125 | div#content .dokuwiki span.wrap_safety, 126 | div#content .dokuwiki span.wrap_info, 127 | div#content .dokuwiki span.wrap_important, 128 | div#content .dokuwiki span.wrap_alert, 129 | div#content .dokuwiki span.wrap_tip, 130 | div#content .dokuwiki span.wrap_help, 131 | div#content .dokuwiki span.wrap_todo, 132 | div#content .dokuwiki span.wrap_download { 133 | border-top: 0 none; 134 | border-right: 0 none; 135 | border-left: 0 none; 136 | border-bottom: 1px dashed; 137 | padding: 0; 138 | } 139 | -------------------------------------------------------------------------------- /static/css/rtl.css: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | ******************************** ATTENTION ********************************* 3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 4 | ****************************************************************************** 5 | If you want to add some own screen CSS, have a look at the README of this 6 | template and "/user/rtl.css". You have been warned! 7 | *****************************************************************************/ 8 | 9 | /* right-to-left-support is still TODO */ 10 | 11 | /* external links */ 12 | div#bodyContent a.urlextern { 13 | background: url(static/3rd/vector/external-link-rtl-icon.png) center left no-repeat; 14 | padding: 0 13px 0 0; 15 | } 16 | -------------------------------------------------------------------------------- /static/css/screen_iehacks.css: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | ******************************** ATTENTION ********************************* 3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 4 | ****************************************************************************** 5 | If you want to add some own screen CSS, have a look at the README of this 6 | template and "/user/screen.css". You have been warned! 7 | *****************************************************************************/ 8 | 9 | /* This file get loaded by a conditional comment. The style.ini is not used as 10 | DokuWiki's internal CSS handling stumbles upon most of these Internet 11 | Explorer specific browser hacks and corrections. */ 12 | 13 | /* buttons */ 14 | div.dokuwiki input.button, 15 | div.dokuwiki button.button { 16 | #line-height: 1em; /* fix MSIE 6, 7 */ 17 | } 18 | div.dokuwiki button.toolbutton { 19 | height: 22px\9; /* fix MSIE 6, 7, 8 */ 20 | } 21 | /* media manager popup */ 22 | * html.popup #media__manager { 23 | height: 465px; /* fix MSIE 6 */ 24 | } 25 | /* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */ 26 | textarea, 27 | .dokuwiki #dw__editform textarea.edit { 28 | /* fix scrollbar flickers in IE8 standards mode, see 29 | http://j.mp/bHExde and http://j.mp/ad7Abj for details */ 30 | width: 450px\9; 31 | max-width: 100%\9; 32 | min-width: 100%\9; 33 | /* overwrite original vector with fixes for IE6/7 */ 34 | #width: 100% !important; 35 | border: auto; 36 | } 37 | /* MSIE 7: media manager */ 38 | *:first-child+html #mediamanager__page .panelContent li { 39 | list-style: none !important; 40 | list-style-image: none !important; 41 | } 42 | /* ajax quicksearch: MSIE 6/7 */ 43 | * html #qsearch__out { 44 | width: 206px; 45 | } 46 | #qsearch__out ul { 47 | #list-style: none !important; 48 | #list-style-image: none !important; 49 | } 50 | #qsearch__out li { 51 | #width: 206px; 52 | } 53 | /* admin menu icons: MSIE 6/7 */ 54 | .dokuwiki ul.admin_tasks li div.li { 55 | #border-left: 1px dashed #fff; /* invisible border triggers IE to render the stuff */ 56 | } 57 | /* list style: MSIE 6/7 */ 58 | div#panel div.portal div.body ul { 59 | #list-style: none outside none !important; 60 | } 61 | form#page__revisions ul, /* old, until 2012-01-25 */ 62 | form#dw__recent ul, /* old, until 2012-01-25 */ 63 | form.changes { /* new, since 2012-09-10 */ 64 | #list-style: none outside none !important; 65 | } 66 | -------------------------------------------------------------------------------- /static/img/button-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-css.png -------------------------------------------------------------------------------- /static/img/button-donate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-donate.gif -------------------------------------------------------------------------------- /static/img/button-dw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-dw.png -------------------------------------------------------------------------------- /static/img/button-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-rss.png -------------------------------------------------------------------------------- /static/img/button-vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-vector.png -------------------------------------------------------------------------------- /static/img/button-xhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-xhtml.png -------------------------------------------------------------------------------- /static/img/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/mobile.less: -------------------------------------------------------------------------------- 1 | div.mobile-hamburger, 2 | div.mobile-menu, 3 | div.mobile-logo { 4 | display: none; 5 | } 6 | 7 | 8 | @media only screen and (max-width: 750px) { 9 | 10 | div.mobile-hamburger { 11 | display: block; 12 | position: absolute; 13 | top: 0; 14 | right: 0; 15 | z-index: 1000; 16 | 17 | cursor: pointer; 18 | font-size: 2.5rem; 19 | line-height: 3rem; 20 | 21 | width: 3rem; 22 | height: 3rem; 23 | text-align: center; 24 | 25 | &::before { 26 | content: '☰'; 27 | } 28 | } 29 | 30 | div.mobile-hamburger.open { 31 | background-color: @ini_background; 32 | &::before { 33 | content: '✕'; 34 | } 35 | } 36 | 37 | div.mobile-logo { 38 | display: block; 39 | a { 40 | display: block; 41 | width: 100%; 42 | height: 3rem; 43 | background-size: contain; 44 | background-repeat: no-repeat; 45 | background-position: left; 46 | } 47 | } 48 | 49 | div.mobile-menu { 50 | position: absolute; 51 | top: 0; 52 | right: 0; 53 | 54 | height: 100%; 55 | overflow-y: auto; 56 | -ms-overflow-style: none; // IE 10+ 57 | overflow: -moz-scrollbars-none; // Firefox 58 | &::-webkit-scrollbar { 59 | display: none; // Safari and Chrome 60 | } 61 | 62 | z-index: 500; 63 | background-color: @ini_background; 64 | box-shadow: -5px 0 5px @ini_border; 65 | 66 | padding-top: 3rem; 67 | 68 | a { 69 | color: @ini_existing; 70 | } 71 | 72 | .mobile-search { 73 | display: block; 74 | margin: 0.25em; 75 | div { 76 | display: flex; 77 | 78 | input, 79 | button { 80 | line-height: inherit; 81 | flex-grow: 0; 82 | } 83 | input { 84 | flex-grow: 1; 85 | } 86 | } 87 | } 88 | 89 | ul { 90 | padding: 0; 91 | list-style-type: none; 92 | list-style-image: none !important; 93 | margin: 0.25em 0; 94 | 95 | border-bottom: 1px solid @ini_border; 96 | 97 | li { 98 | margin: 0; 99 | padding: 0.25em; 100 | } 101 | } 102 | } 103 | 104 | div.mobile-menu.open { 105 | display: block; 106 | } 107 | 108 | #page-base, 109 | #head-base, 110 | #head, 111 | #panel { 112 | display: none; 113 | } 114 | 115 | div#content, 116 | div#footer { 117 | margin-left: 0; 118 | } 119 | 120 | } 121 | 122 | // translation plugin adjustment 123 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:before, 124 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:before, 125 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:after, 126 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:after { 127 | content: ''; 128 | } 129 | -------------------------------------------------------------------------------- /style.ini: -------------------------------------------------------------------------------- 1 | ;; 2 | ; INI to handle loading of the CSS files of the "vector" template for DokuWiki 3 | ; 4 | ; 5 | ; LICENSE: This file is open source software (OSS) and may be copied under 6 | ; certain conditions. See COPYING file for details or try to contact 7 | ; the author(s) of this file in doubt. 8 | ; 9 | ; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 10 | ; @author ARSAVA 11 | ; @link https://www.dokuwiki.org/template:vector 12 | ; @link https://www.dokuwiki.org/devel:style.ini 13 | 14 | 15 | 16 | ; Please see http://www.php.net/manual/en/function.parse-ini-file.php 17 | ; for limitations of the ini format used here. 18 | 19 | ; To extend this file or make changes to it, it is recommended to create 20 | ; a style.local.ini file to prevent losing any changes after an upgrade. 21 | ; Please don't forget to copy the section your changes should be under 22 | ; (i.e. [stylesheets] or [replacements]) into that file as well. 23 | 24 | ; Define the stylesheets your template uses here. The second value 25 | ; defines for which output media the style should be loaded. Currently 26 | ; print, screen and all are supported. 27 | 28 | [stylesheets] 29 | ; screen 30 | ; load the DokuWiki styles. See why I am doing this. 31 | static/3rd/dokuwiki/_imgdetail.css = screen 32 | static/3rd/dokuwiki/_media_popup.css = screen 33 | static/3rd/dokuwiki/_media_fullscreen.css = screen 34 | static/3rd/dokuwiki/_fileuploader.css = screen 35 | static/3rd/dokuwiki/_tabs.css = screen 36 | static/3rd/dokuwiki/_links.css = screen 37 | static/3rd/dokuwiki/_toc.css = screen 38 | static/3rd/dokuwiki/_footnotes.css = screen 39 | static/3rd/dokuwiki/_search.css = screen 40 | static/3rd/dokuwiki/_recent.css = screen 41 | static/3rd/dokuwiki/_diff.css = screen 42 | static/3rd/dokuwiki/_edit.css = screen 43 | static/3rd/dokuwiki/_modal.css = screen 44 | static/3rd/dokuwiki/_forms.css = screen 45 | static/3rd/dokuwiki/_admin.css = screen 46 | 47 | ; load the most important MediaWiki vector styles 48 | static/3rd/vector/main-ltr.css = screen 49 | 50 | ; load the specific "vector for dokuwiki" styles 51 | static/css/screen.css = screen 52 | user/screen.css = screen 53 | 54 | 55 | ; print 56 | ; note to myself: don't forget to respect the "print" action for the "printable 57 | ; version" within "main.php" when adding new print styles. 58 | ; I think this function is silly (cause therefore we got 59 | ; different "media" but some people *always* searching for such 60 | ; print version links). Good text about this: 61 | ; load the DokuWiki styles. See why I am doing this. 62 | static/3rd/dokuwiki/print.css = print 63 | 64 | ; load the specific "vector for dokuwiki" styles 65 | static/css/print.css = print 66 | user/print.css = print 67 | 68 | 69 | ; right-to-left 70 | ; load the most important MediaWiki vector styles 71 | static/3rd/vector/main-rtl.css = rtl 72 | 73 | ; load the specific "vector for dokuwiki" styles 74 | static/css/rtl.css = rtl 75 | user/rtl.css = rtl 76 | 77 | 78 | 79 | static/mobile.less = all 80 | 81 | 82 | ; This section is used to configure some placeholder values used in 83 | ; the stylesheets. Changing this file is the simplest method to 84 | ; give your wiki a new look. 85 | [replacements] 86 | 87 | ;-------------------------------------------------------------------------- 88 | ;------ guaranteed dokuwiki color placeholders that every plugin can use 89 | ; main text and background colors 90 | ; 91 | __text__ = "#000" 92 | __background__ = "#fff" 93 | ; alternative text and background colors 94 | __text_alt__ = "#000" 95 | __background_alt__ = "#dee7ec" 96 | ; neutral text and background colors 97 | __text_neu__ = "#000" 98 | __background_neu__ = "#fff" 99 | ; border color 100 | __border__ = "#8cacbb" 101 | ;-------------------------------------------------------------------------- 102 | 103 | ; these are used for links 104 | __existing__ = "#002bb8" 105 | __missing__ = "#ba0000" 106 | 107 | ; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes 108 | ; from core and will therefore be removed from here if pre-Adora Belle support 109 | ; will be dropped) 110 | __highlight__ = "#ff9" 111 | -------------------------------------------------------------------------------- /template.info.txt: -------------------------------------------------------------------------------- 1 | base vector 2 | author ARSAVA 3 | email dokuwiki@dev.arsava.com 4 | date 2014-02-09 5 | name vector template 6 | desc vector brings you the year 2010 MediaWiki/Wikipedia look and feel for DokuWiki. 7 | url https://www.dokuwiki.org/template:vector 8 | -------------------------------------------------------------------------------- /user/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running vector in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessible. 4 | # The reason for protecting these files is to to keep searchengines/foo 5 | # away from indexing files containing version information, names and/or not 6 | # necessarily public template parts by default. 7 | 8 | Order Deny,Allow 9 | Deny from all 10 | 11 | -------------------------------------------------------------------------------- /user/boxes.php.dist: -------------------------------------------------------------------------------- 1 | 26 | * @link https://www.dokuwiki.org/template:vector 27 | * @link https://www.dokuwiki.org/devel:configuration 28 | */ 29 | 30 | 31 | //check if we are running within the DokuWiki environment 32 | if (!defined("DOKU_INC")){ 33 | die(); 34 | } 35 | 36 | 37 | //note: The boxes will be rendered in the order they were defined. Means: 38 | // first box will be rendered first, last box will be rendered at last. 39 | 40 | $_vector_boxes["example1"]["headline"] = "Hello World!"; 41 | $_vector_boxes["example1"]["xhtml"] = "DokuWiki with vector... rules!"; 42 | 43 | 44 | 45 | //examples: remove comments to see what is happening 46 | 47 | /* 48 | $_vector_boxes["example2"]["headline"] = "Some links"; 49 | $_vector_boxes["example2"]["xhtml"] = ""; 54 | */ 55 | 56 | 57 | /* 58 | $_vector_boxes["example3"]["headline"] = "Buttons"; 59 | $_vector_boxes["example3"]["xhtml"] = "\"Donate\""; 60 | */ 61 | 62 | 63 | /* 64 | //include the content of another wiki page (you have to create it first, for 65 | //sure. In this example, the page "wiki:your_page_here" is used) 66 | $_vector_boxes["example4"]["headline"] = "wiki:your_page_here"; 67 | $_vector_boxes["example4"]["xhtml"] = tpl_include_page("wiki:your_page_here", false); 68 | */ 69 | 70 | -------------------------------------------------------------------------------- /user/buttons.php.dist: -------------------------------------------------------------------------------- 1 | 26 | * @link https://www.dokuwiki.org/template:vector 27 | * @link https://www.dokuwiki.org/devel:configuration 28 | */ 29 | 30 | 31 | //check if we are running within the DokuWiki environment 32 | if (!defined("DOKU_INC")){ 33 | die(); 34 | } 35 | 36 | 37 | //note: The buttons will be rendered in the order they were defined. Means: 38 | // first button will be rendered first, last button will be rendered at 39 | // last. 40 | 41 | 42 | //W3C CSS validator button 43 | $_vector_btns["valid_css"]["img"] = DOKU_TPL."static/img/button-css.png"; 44 | $_vector_btns["valid_css"]["href"] = "http://jigsaw.w3.org/css-validator/check/referer"; 45 | $_vector_btns["valid_css"]["width"] = 80; 46 | $_vector_btns["valid_css"]["height"] = 15; 47 | $_vector_btns["valid_css"]["title"] = "Valid CSS"; 48 | $_vector_btns["valid_css"]["nofollow"] = true; 49 | 50 | 51 | //some examples: remove comments to see what is happening 52 | 53 | /* 54 | //button using all attributes 55 | $_vector_btns["example1"]["img"] = DOKU_TPL."user/img/yourButtonHere.png"; 56 | $_vector_btns["example1"]["href"] = "http://www.example.com"; 57 | $_vector_btns["example1"]["width"] = 80; 58 | $_vector_btns["example1"]["height"] = 15; 59 | $_vector_btns["example1"]["title"] = "Example button"; 60 | $_vector_btns["example1"]["nofollow"] = false; 61 | */ 62 | 63 | 64 | /* 65 | //button using only mandatory attributes 66 | $_vector_btns["example2"]["img"] = DOKU_TPL."user/img/yourButtonHere.png"; 67 | $_vector_btns["example2"]["href"] = "http://www.example.com"; 68 | */ 69 | -------------------------------------------------------------------------------- /user/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /user/print.css.dist: -------------------------------------------------------------------------------- 1 | /* 2 | Place for user defined CSS rules (print media) - this file can safely be 3 | preserved when updating. See README for details. 4 | 5 | Note: All example files are delivered with the ".dist" extensions to make 6 | sure your changes do not get overwritten when updating the template. 7 | Just remove the ".dist" extension to use them. 8 | */ 9 | 10 | -------------------------------------------------------------------------------- /user/rtl.css.dist: -------------------------------------------------------------------------------- 1 | /* 2 | Place for user defined CSS rules (right to left languages, e.g. Hebrew) - 3 | this file can safely be preserved when updating. See README for details. 4 | 5 | Note: All example files are delivered with the ".dist" extensions to make 6 | sure your changes do not get overwritten when updating the template. 7 | Just remove the ".dist" extension to use them. 8 | */ 9 | 10 | -------------------------------------------------------------------------------- /user/screen.css.dist: -------------------------------------------------------------------------------- 1 | /* 2 | Place for user defined CSS rules (screen media) - this file can safely be 3 | preserved when updating. See README for details. 4 | 5 | Note: All example files are delivered with the ".dist" extensions to make 6 | sure your changes do not get overwritten when updating the template. 7 | Just remove the ".dist" extension to use them. 8 | */ 9 | 10 | -------------------------------------------------------------------------------- /user/tracker.php.dist: -------------------------------------------------------------------------------- 1 | " 15 | * 16 | * Note: All example files are delivered with the ".dist" extensions to make 17 | * sure your changes do not get overwritten when updating the template. 18 | * Just remove the ".dist" extension to use them. 19 | * 20 | * 21 | * LICENSE: This file is open source software (OSS) and may be copied under 22 | * certain conditions. See COPYING file for details or try to contact 23 | * the author(s) of this file in doubt. 24 | * 25 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 26 | * @author ARSAVA 27 | * @link http://piwik.org/ 28 | * @link http://www.google.com/analytics/ 29 | * @link https://www.dokuwiki.org/template:vector 30 | */ 31 | 32 | 33 | //check if we are running within the DokuWiki environment 34 | if (!defined("DOKU_INC")){ 35 | die(); 36 | } 37 | 38 | //place the needed HTML source codes BELOW this line ?> 39 | -------------------------------------------------------------------------------- /user/user.js.dist: -------------------------------------------------------------------------------- 1 | /* 2 | Place for user defined JavaScript - this file can safely be preserved 3 | when updating. See README for details. 4 | 5 | Note: All example files are delivered with the ".dist" extensions to make 6 | sure your changes do not get overwritten when updating the template. 7 | Just remove the ".dist" extension to use them. 8 | 9 | To use own JavaScript: 10 | 11 | 1. Create a /user/user.js file. You may just want to rename this file from 12 | "user.js.dist" to "user.js" 13 | 14 | 2. Do not forget to activate the template option 15 | "vector_loaduserjs" (->"Load 'vector/user/user.js'?") in the 16 | DokuWiki Config Manager! Otherwise, any changes to this file 17 | won't have any effect! 18 | */ 19 | --------------------------------------------------------------------------------