├── .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 ├── 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 ├── eo │ ├── .htaccess │ ├── index.html │ ├── lang.php │ └── style.css ├── es │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── fr │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── index.html ├── it │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── ja │ ├── .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 ├── no │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── pl │ ├── .htaccess │ ├── index.html │ ├── lang.php │ └── style.css ├── pt-br │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── ru │ ├── .htaccess │ ├── index.html │ ├── lang.php │ └── style.css ├── sk │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── zh-tw │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css └── zh │ ├── .htaccess │ ├── index.html │ ├── lang.php │ ├── settings.php │ └── style.css ├── main.php ├── mediamanager.php ├── 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 │ ├── monobook │ │ ├── IE50Fixes.css │ │ ├── IE55Fixes.css │ │ ├── IE60Fixes.css │ │ ├── IE70Fixes.css │ │ ├── IEMacFixes.css │ │ ├── bullet.gif │ │ ├── discussionitem_icon.gif │ │ ├── external.png │ │ ├── file_icon.gif │ │ ├── headbg.jpg │ │ ├── index.html │ │ ├── lock_icon.gif │ │ ├── mail_icon.gif │ │ ├── main.css │ │ ├── news_icon.png │ │ ├── rtl.css │ │ └── user.gif │ └── wikipedia │ │ ├── IEFixes.js │ │ ├── commonPrint.css │ │ └── index.html ├── css │ ├── index.html │ ├── print.css │ ├── rtl.css │ ├── screen.css │ └── screen_iehacks.css ├── img │ ├── button-css.png │ ├── button-donate.gif │ ├── button-dw.png │ ├── button-monobook.png │ ├── button-qrcode.png │ ├── button-rss.png │ ├── button-xhtml.png │ └── index.html ├── index.html └── js │ └── index.html ├── 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 monobook 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. Terence J. Grant 15 | 16 | This template is heavily inspired and partially based on the great 17 | "Monobook for DokuWiki" template by Terence J. Grant [1]. He developed the 18 | template from 2006 until the end of 2009 but did not have enough time to 19 | maintain it any longer. Thank you for your work and your ideas! 20 | 21 | [1] 22 | 23 | 24 | 25 | III. Tamara Göbes 26 | 27 | Tamara Göbes [1] contributed the French language files. 28 | 29 | [1] 30 | 31 | 32 | 33 | IV. Luigi Micco 34 | 35 | Luigi Micco [1] contributed the Italian language files an reported a few 36 | bugs. 37 | 38 | [1] 39 | 40 | 41 | 42 | V. Yoshitaka Kunikane 43 | 44 | Yoshitaka Kunikane contributed the Japanese language files. 45 | 46 | 47 | 48 | VI. Henrik Karlstrøm 49 | 50 | Henrik Karlstrøm contributed the Norwegian language files. 51 | 52 | 53 | 54 | VII. Sérgio Evandro Motta 55 | 56 | Sérgio Evandro Motta contributed the Brazilian Portuguese language files. 57 | 58 | 59 | 60 | VIII. Theo Klein 61 | 62 | Theo Klein contributed the Dutch language files and some ideas. 63 | 64 | 65 | IX. Stefan Riemer 66 | 67 | Thanks to Stefan Riemer, especially for helping so many monobook users at 68 | the DokuWiki forum [2]. 69 | 70 | [1] 71 | [2] 72 | 73 | 74 | 75 | X. Jacobo María Pantoja Checa 76 | 77 | Jacobo María Pantoja Checa contributed the Spanish language files. 78 | 79 | 80 | 81 | XI. Martin Hanula 82 | 83 | Martin Hanula contributed the Slovak language files. 84 | 85 | 86 | 87 | XII. Andrzej Pruszyński 88 | 89 | Andrzej Pruszyński contributed the Polish language files. 90 | 91 | 92 | 93 | XIII. Aleksej Kuznecov 94 | 95 | Aleksej Kuznecov contributed the Espereanto language files. 96 | 97 | 98 | 99 | XIV. Yuri Timofeev 100 | 101 | Yuri Timofeev[1] contributed the Russion language files. 102 | 103 | [1] 104 | 105 | 106 | 107 | XV. 呂理群 108 | 109 | 呂理群 contributed the Chinese (as used in Taiwan) language files. 110 | 111 | 112 | 113 | XVI. Rubby 114 | 115 | Rubby contributed the Chinese (simplified) language files. 116 | 117 | 118 | 119 | XVII. Myeongjin 120 | 121 | Myeongjin contributed the Korean language files. 122 | 123 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2014-02-09 2 | -------------------------------------------------------------------------------- /conf/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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:monobook 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 | $_monobook_btns["rss"]["img"] = DOKU_TPL."static/img/button-rss.png"; 41 | $_monobook_btns["rss"]["href"] = DOKU_BASE."feed.php"; 42 | $_monobook_btns["rss"]["width"] = 80; 43 | $_monobook_btns["rss"]["height"] = 15; 44 | $_monobook_btns["rss"]["title"] = $lang["monobook_recentchanges"]; 45 | $_monobook_btns["rss"]["nofollow"] = true; 46 | 47 | 48 | //"monobook for DokuWiki" button 49 | $_monobook_btns["mbfdw"]["img"] = DOKU_TPL."static/img/button-monobook.png"; 50 | $_monobook_btns["mbfdw"]["href"] = "https://www.dokuwiki.org/template:monobook"; 51 | $_monobook_btns["mbfdw"]["width"] = 80; 52 | $_monobook_btns["mbfdw"]["height"] = 15; 53 | $_monobook_btns["mbfdw"]["title"] = $lang["monobook_mdtemplatefordw"]; 54 | $_monobook_btns["mbfdw"]["nofollow"] = !(cleanID(getID()) === "start"); 55 | 56 | 57 | //donation button 58 | if (tpl_getConf("monobook_donate")){ 59 | $_monobook_btns["donate"]["img"] = DOKU_TPL."static/img/button-donate.gif"; 60 | $_monobook_btns["donate"]["href"] = tpl_getConf("monobook_donate_url"); 61 | $_monobook_btns["donate"]["width"] = 80; 62 | $_monobook_btns["donate"]["height"] = 15; 63 | $_monobook_btns["donate"]["title"] = $lang["monobook_donate"]; 64 | $_monobook_btns["donate"]["nofollow"] = true; 65 | } 66 | 67 | 68 | //DokuWiki button 69 | $_monobook_btns["dw"]["img"] = DOKU_TPL."static/img/button-dw.png"; 70 | $_monobook_btns["dw"]["href"] = "https://www.dokuwiki.org/"; 71 | $_monobook_btns["dw"]["width"] = 80; 72 | $_monobook_btns["dw"]["height"] = 15; 73 | $_monobook_btns["dw"]["title"] = "DokuWiki"; 74 | $_monobook_btns["dw"]["nofollow"] = !(cleanID(getID()) === "start"); 75 | 76 | 77 | //W3C (X)HTML validator button 78 | $_monobook_btns["valid_xhtml"]["img"] = DOKU_TPL."static/img/button-xhtml.png"; 79 | $_monobook_btns["valid_xhtml"]["href"] = "http://validator.w3.org/check/referer"; 80 | $_monobook_btns["valid_xhtml"]["width"] = 80; 81 | $_monobook_btns["valid_xhtml"]["height"] = 15; 82 | $_monobook_btns["valid_xhtml"]["title"] = "Valid XHTML"; 83 | $_monobook_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:monobook 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["monobook_userpage"] = 1; //1: use/show user pages 37 | $conf["monobook_userpage_ns"] = ":wiki:user:"; //namespace to use for user page storage 38 | 39 | //discussion pages 40 | $conf["monobook_discuss"] = 1; //1: use/show discussion pages 41 | $conf["monobook_discuss_ns"] = ":talk:"; //namespace to use for discussion page storage 42 | 43 | //site notice 44 | $conf["monobook_sitenotice"] = 1; //1: use/show sitenotice 45 | $conf["monobook_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice 46 | $conf["monobook_sitenotice_translate"] = 1; //1: load translated sitenotice if translation plugin is available (see ) 47 | 48 | //navigation 49 | $conf["monobook_navigation"] = 1; //1: use/show navigation 50 | $conf["monobook_navigation_location"] = ":wiki:navigation"; //page/article used to store the navigation 51 | $conf["monobook_navigation_translate"] = 1; //1: load translated navigation if translation plugin is available (see ) 52 | 53 | //custom copyright notice 54 | $conf["monobook_copyright"] = 1; //1: use/show copyright notice 55 | $conf["monobook_copyright_default"] = 1; //1: use default copyright notice (if copyright notice is enabled at all) 56 | $conf["monobook_copyright_location"] = ":wiki:copyright"; //page/article used to store a custom copyright notice 57 | $conf["monobook_copyright_translate"] = 1; //1: load translated copyright notice if translation plugin is available (see ) 58 | 59 | //search form 60 | $conf["monobook_search"] = 1; //1: use/show search form 61 | 62 | //toolbox 63 | $conf["monobook_toolbox"] = 1; //1: use/show toolbox 64 | $conf["monobook_toolbox_default"] = 1; //1: use default toolbox (if toolbox is enabled at all) 65 | $conf["monobook_toolbox_default_print"] = 1; //1: if default toolbox is used, show printable version link? 66 | $conf["monobook_toolbox_location"] = ":wiki:toolbox"; //page/article used to store a custom toolbox 67 | 68 | //qr code box 69 | $conf["monobook_qrcodebox"] = 1; //1: use/show box with QR Code of current page's URL 70 | 71 | //donation link/button 72 | $conf["monobook_donate"] = 0; //1: use/show donation link/button 73 | $conf["monobook_donate_url"] = "https://donate.arsava.com/dokuwiki-template-monobook/"; //custom donation URL 74 | 75 | //TOC 76 | $conf["monobook_toc_position"] = "article"; //article: show TOC embedded within the article; "sidebar": show TOC near the navigation, left column 77 | 78 | //other stuff 79 | $conf["monobook_breadcrumbs_position"] = "bottom"; //position of breadcrumbs navigation ("top" or "bottom") 80 | $conf["monobook_youarehere_position"] = "top"; //position of "you are here" navigation ("top" or "bottom") 81 | $conf["monobook_cite_author"] = "Anonymous Contributors"; //name to use for the author on the citation page 82 | $conf["monobook_loaduserjs"] = 0; //1: monobook/user/user.js will be loaded 83 | $conf["monobook_closedwiki"] = 0; //1: hides most tabs/functions until user is logged in 84 | 85 | -------------------------------------------------------------------------------- /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:monobook 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["monobook_userpage"] = array("onoff"); 37 | $meta["monobook_userpage_ns"] = array("string", "_pattern" => "/^:.{1,}:$/"); 38 | 39 | //discussion pages 40 | $meta["monobook_discuss"] = array("onoff"); 41 | $meta["monobook_discuss_ns"] = array("string", "_pattern" => "/^:.{1,}:$/"); 42 | 43 | //site notice 44 | $meta["monobook_sitenotice"] = array("onoff"); 45 | $meta["monobook_sitenotice_location"] = array("string"); 46 | $meta["monobook_sitenotice_translate"] = array("onoff"); 47 | 48 | //navigation 49 | $meta["monobook_navigation"] = array("onoff"); 50 | $meta["monobook_navigation_location"] = array("string"); 51 | $meta["monobook_navigation_translate"] = array("onoff"); 52 | 53 | //custom copyright notice 54 | $meta["monobook_copyright"] = array("onoff"); 55 | $meta["monobook_copyright_default"] = array("onoff"); 56 | $meta["monobook_copyright_location"] = array("string"); 57 | $meta["monobook_copyright_translate"] = array("onoff"); 58 | 59 | //search form 60 | $meta["monobook_search"] = array("onoff"); 61 | 62 | //toolbox 63 | $meta["monobook_toolbox"] = array("onoff"); 64 | $meta["monobook_toolbox_default"] = array("onoff"); 65 | $meta["monobook_toolbox_default_print"] = array("onoff"); 66 | $meta["monobook_toolbox_location"] = array("string"); 67 | 68 | //qr code box 69 | $meta["monobook_qrcodebox"] = array("onoff"); 70 | 71 | //donation link/button 72 | $meta["monobook_donate"] = array("onoff"); 73 | $meta["monobook_donate_url"] = array("string", "_pattern" => "/^.{1,6}:\/{2}.+$/"); 74 | 75 | //TOC 76 | $meta["monobook_toc_position"] = array("multichoice", "_choices" => array("article", "sidebar")); 77 | 78 | //other stuff 79 | $meta["monobook_breadcrumbs_position"] = array("multichoice", "_choices" => array("top", "bottom")); 80 | $meta["monobook_youarehere_position"] = array("multichoice", "_choices" => array("top", "bottom")); 81 | $meta["monobook_cite_author"] = array("string"); 82 | $meta["monobook_loaduserjs"] = array("onoff"); 83 | $meta["monobook_closedwiki"] = array("onoff"); 84 | 85 | -------------------------------------------------------------------------------- /detail.php: -------------------------------------------------------------------------------- 1 | 13 | * @link https://www.dokuwiki.org/template:monobook 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["mddo"] 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["mddo"] = "detail"; 30 | include DOKU_TPLINC."main.php"; 31 | 32 | -------------------------------------------------------------------------------- /inc_detail.php: -------------------------------------------------------------------------------- 1 | 18 | * @link https://www.dokuwiki.org/template:monobook 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 monobook 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/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/style.css: -------------------------------------------------------------------------------- 1 | /* uppercase for navigation links */ 2 | .portlet h5, 3 | .portlet h6, 4 | #p-personal ul, 5 | #p-cactions li a { 6 | text-transform: none; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /lang/de/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/style.css: -------------------------------------------------------------------------------- 1 | /* uppercase for navigation links */ 2 | .portlet h5, 3 | .portlet h6, 4 | #p-personal ul, 5 | #p-cactions li a { 6 | text-transform: none; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /lang/en/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author ARSAVA 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Article"; 35 | $lang["monobook_tab_discussion"] = "Discussion"; 36 | $lang["monobook_tab_userpage"] = "User Page"; 37 | $lang["monobook_tab_specialpage"] = "Special Pages"; 38 | $lang["monobook_tab_mytalk"] = "My Talk"; 39 | $lang["monobook_tab_exportodt"] = "Export: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Export: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Views"; 44 | $lang["monobook_bar_personnaltools"] = "Personal Tools"; 45 | $lang["monobook_bar_navigation"] = "Navigation"; 46 | $lang["monobook_bar_toolbox"] = "Toolbox"; 47 | $lang["monobook_qrcodebox"] = "QR Code"; 48 | $lang["monobook_bar_inotherlanguages"] = "In Other Languages"; 49 | $lang["monobook_bar_search"] = "Search"; 50 | 51 | //buttons 52 | $lang["monobook_btn_go"] = "Go"; 53 | $lang["monobook_btn_search"] = "Search"; 54 | 55 | //default toolbox 56 | $lang["monobook_toolbxdef_whatlinkshere"] = "What links here"; 57 | $lang["monobook_toolbxdef_upload"] = "Upload file"; 58 | $lang["monobook_toolbxdef_siteindex"] = "Site index"; 59 | $lang["monobook_toolbxdef_print"] = "Printable version"; 60 | $lang["monobook_toolboxdef_permanent"] = "Permanent link"; 61 | $lang["monobook_toolboxdef_cite"] = "Cite this article"; 62 | 63 | //qr code box 64 | $lang["monobook_qrcodebox_qrcode"] = "QR Code"; 65 | $lang["monobook_qrcodebox_genforcurrentpage"] = "generated for current page"; 66 | $lang["monobook_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)"; 67 | 68 | //cite this article 69 | $lang["monobook_cite_bibdetailsfor"] = "Bibliographic details for"; 70 | $lang["monobook_cite_pagename"] = "Page name"; 71 | $lang["monobook_cite_author"] = "Author"; 72 | $lang["monobook_cite_publisher"] = "Publisher"; 73 | $lang["monobook_cite_dateofrev"] = "Date of this revision"; 74 | $lang["monobook_cite_dateretrieved"] = "Date retrieved"; 75 | $lang["monobook_cite_permurl"] = "Permanent URL"; 76 | $lang["monobook_cite_pageversionid"] = "Page Version ID"; 77 | $lang["monobook_cite_citationstyles"] = "Citation styles for"; 78 | $lang["monobook_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs"; 79 | $lang["monobook_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"; 80 | $lang["monobook_cite_retrieved"] = "Retrieved"; 81 | $lang["monobook_cite_from"] = "from"; 82 | $lang["monobook_cite_in"] = "In"; 83 | $lang["monobook_cite_accessed"] = "Accessed"; 84 | $lang["monobook_cite_cited"] = "Cited"; 85 | $lang["monobook_cite_lastvisited"] = "Last visited"; 86 | $lang["monobook_cite_availableat"] = "Available at"; 87 | $lang["monobook_cite_discussionpages"] = "DokuWiki talk pages"; 88 | $lang["monobook_cite_markup"] = "Markup"; 89 | $lang["monobook_cite_result"] = "Result"; 90 | $lang["monobook_cite_thisversion"] = "this version"; 91 | 92 | //other 93 | $lang["monobook_accessdenied"] = "Access denied"; 94 | $lang["monobook_fillplaceholder"] = "Please fill or disable this placeholder"; 95 | $lang["monobook_donate"] = "Donate"; 96 | $lang["monobook_mdtemplatefordw"] = "monobook template for DokuWiki"; 97 | $lang["monobook_recentchanges"] = "Recent changes"; 98 | 99 | -------------------------------------------------------------------------------- /lang/en/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author ARSAVA 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //user pages 34 | $lang["monobook_userpage"] = "Use User pages?"; 35 | $lang["monobook_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:"; 36 | 37 | //discussion pages 38 | $lang["monobook_discuss"] = "Use discussion tabs/sites?"; 39 | $lang["monobook_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:"; 40 | 41 | //site notice 42 | $lang["monobook_sitenotice"] = "Show site wide notice?"; 43 | $lang["monobook_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:"; 44 | $lang["monobook_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 'monobook_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de')."; 45 | 46 | //navigation 47 | $lang["monobook_navigation"] = "Show navigation?"; 48 | $lang["monobook_navigation_location"] = "If yes, use following wiki page as navigation:"; 49 | $lang["monobook_navigation_translate"] = "If yes and Translation plugin available: load language specific navigation?
The wiki page of the translated navigation(s) is [value of 'monobook_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de')."; 50 | 51 | //custom copyright notice 52 | $lang["monobook_copyright"] = "Show copyright notice?"; 53 | $lang["monobook_copyright_default"] = "If yes, use default copyright notice?"; 54 | $lang["monobook_copyright_location"] = "If not default, use following wiki page as copyright notice:"; 55 | $lang["monobook_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 'monobook_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de')."; 56 | 57 | //search form 58 | $lang["monobook_search"] = "Show search form?"; 59 | 60 | //toolbox 61 | $lang["monobook_toolbox"] = "Show toolbox?"; 62 | $lang["monobook_toolbox_default"] = "If yes, use default toolbox?"; 63 | $lang["monobook_toolbox_default_print"] = "If default toolbox is used, show printable version link?"; 64 | $lang["monobook_toolbox_location"] = "If not default, use following wiki page as toolbox location:"; 65 | 66 | //qr code box 67 | $lang["monobook_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?"; 68 | 69 | //donation link/button 70 | $lang["monobook_donate"] = "Show donation link/button?"; 71 | $lang["monobook_donate_url"] = "Use following URL for donations:"; 72 | 73 | //TOC 74 | $lang["monobook_toc_position"] = "Table of contents (TOC) position"; 75 | 76 | //other stuff 77 | $lang["monobook_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):"; 78 | $lang["monobook_youarehere_position"] = "Position of 'You are here' navigation (if enabled):"; 79 | $lang["monobook_cite_author"] = "Author name in 'Cite this Article':"; 80 | $lang["monobook_loaduserjs"] = "Load 'monobook/user/user.js'?"; 81 | $lang["monobook_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?"; 82 | 83 | -------------------------------------------------------------------------------- /lang/en/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/en/style.css -------------------------------------------------------------------------------- /lang/eo/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/eo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/eo/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Aleksej Kuznecov 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | //Language constant, for the monobook DokuWiki template : 28 | 29 | //check if we are running within the DokuWiki environment 30 | if (!defined("DOKU_INC")){ 31 | die(); 32 | } 33 | 34 | //tabs 35 | $lang["monobook_tab_article"] = "Artikolo"; 36 | $lang["monobook_tab_discussion"] = "Diskutejo"; 37 | $lang["monobook_tab_userpage"] = "Uzantopaĝo"; 38 | $lang["monobook_tab_specialpage"] = "Specialaj paĝoj"; 39 | $lang["monobook_tab_mytalk"] = "Mia diskutejo"; 40 | $lang["monobook_tab_exportodt"] = "Eksport: ODT"; 41 | $lang["monobook_tab_exportpdf"] = "Eksport: PDF"; 42 | 43 | //Constants for the search toolbar 44 | $lang['monobook_bar_views'] = 'Views'; 45 | $lang['monobook_bar_personnaltools'] = 'Personalaj iloj'; 46 | $lang['monobook_bar_navigation'] = 'Navigado'; 47 | $lang['monobook_bar_toolbox'] = 'Ilaro'; 48 | $lang['monobook_bar_inotherlanguages'] = 'En aliaj lingvoj'; 49 | $lang['monobook_bar_search'] = 'Serĉo'; 50 | 51 | //buttons 52 | $lang['monobook_btn_go'] = 'Ek!'; 53 | $lang['monobook_btn_search'] = 'Serĉo'; 54 | 55 | //default toolbox 56 | $lang["monobook_toolbxdef_whatlinkshere"] = "Ligoj tien"; 57 | $lang["monobook_toolbxdef_upload"] = "Ŝarĝi dosieron"; 58 | $lang["monobook_toolbxdef_siteindex"] = "Indekso"; 59 | $lang["monobook_toolbxdef_print"] = "Printebla versio"; 60 | $lang["monobook_toolboxdef_permanent"] = "Rekta ligo"; 61 | $lang["monobook_toolboxdef_cite"] = "Citi tiun artikolon"; 62 | 63 | //other 64 | $lang["monobook_accessdenied"] = "Aliro malpermesita"; 65 | $lang["monobook_fillplaceholder"] = "Bonvolu plenigi tiun kampon"; 66 | $lang["monobook_donate"] = "Donaci"; 67 | $lang["monobook_mdtemplatefordw"] = "ŝablono monobook por DokuWiki"; 68 | $lang["monobook_recentchanges"] = "Lastaj ŝanĝoj"; 69 | 70 | -------------------------------------------------------------------------------- /lang/eo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/eo/style.css -------------------------------------------------------------------------------- /lang/es/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Jacobo María Pantoja Checa 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Artículo"; 35 | $lang["monobook_tab_discussion"] = "Discusión"; 36 | $lang["monobook_tab_userpage"] = "Página del usuario"; 37 | $lang["monobook_tab_specialpage"] = "Páginas especiales"; 38 | $lang["monobook_tab_mytalk"] = "Mis discusiones"; 39 | $lang["monobook_tab_exportodt"] = "Exportar: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Exportar: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Vistas"; 44 | $lang["monobook_bar_personnaltools"] = "Herramientas Personales"; 45 | $lang["monobook_bar_navigation"] = "Navegación"; 46 | $lang["monobook_bar_toolbox"] = "Herramientas"; 47 | $lang["monobook_bar_inotherlanguages"] = "En otros idiomas"; 48 | $lang["monobook_bar_search"] = "Búsqueda"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Ir"; 52 | $lang["monobook_btn_search"] = "Buscar"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "Qué enlaza aquí"; 56 | $lang["monobook_toolbxdef_upload"] = "Subir archivo"; 57 | $lang["monobook_toolbxdef_siteindex"] = "Índice del sitio"; 58 | $lang["monobook_toolbxdef_print"] = "Versión imprimible"; 59 | $lang["monobook_toolboxdef_permanent"] = "Enlace permanente"; 60 | $lang["monobook_toolboxdef_cite"] = "Citar este artículo"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Detalles bibliográficos de"; 64 | $lang["monobook_cite_pagename"] = "Nombre de la página"; 65 | $lang["monobook_cite_author"] = "Autor"; 66 | $lang["monobook_cite_publisher"] = "Publicado por"; 67 | $lang["monobook_cite_dateofrev"] = "Fecha de revisión"; 68 | $lang["monobook_cite_dateretrieved"] = "Fecha actual"; 69 | $lang["monobook_cite_permurl"] = "URL permanente"; 70 | $lang["monobook_cite_pageversionid"] = "ID de la página"; 71 | $lang["monobook_cite_citationstyles"] = "Estilos de cita para"; 72 | $lang["monobook_cite_checkstandards"] = "Por favor, recuerda comprobar tu guía de estilo o las indicaciones de tu profesor para que la sintaxis cuadre con tus necesidades."; 73 | $lang["monobook_cite_latexusepackagehint"] = "Al usar el paquete 'url' de LaTeX (pista: busca '\userpackage{url}' en el preámbulo), que suele dar una dirección web mucho mejor formateada, es preferible lo siguiente"; 74 | $lang["monobook_cite_retrieved"] = "obtenido"; 75 | $lang["monobook_cite_from"] = "de"; 76 | $lang["monobook_cite_accessed"] = "accedido"; 77 | $lang["monobook_cite_cited"] = "citado"; 78 | $lang["monobook_cite_lastvisited"] = "última visita"; 79 | $lang["monobook_cite_availableat"] = "disponible en"; 80 | 81 | //other 82 | $lang["monobook_accessdenied"] = "Acceso denegado"; 83 | $lang["monobook_fillplaceholder"] = "Por favor, completa este espacio"; 84 | $lang["monobook_donate"] = "Donar"; 85 | $lang["monobook_mdtemplatefordw"] = "Monobook para DokuWiki"; 86 | $lang["monobook_recentchanges"] = "Cambios recientes"; 87 | 88 | -------------------------------------------------------------------------------- /lang/es/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Jacobo María Pantoja Checa 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //discussion pages 34 | $lang["monobook_discuss"] = "¿Usar pestañas y páginas de discusión?"; 35 | $lang["monobook_discuss_ns"] = "En caso afirmativo, usar el siguiente ':namespace:' como raíz de las mismas:"; 36 | 37 | //site notice 38 | $lang["monobook_sitenotice"] = "¿Mostrar noticias del sitio?"; 39 | $lang["monobook_sitenotice_location"] = "En caso afirmativo, usar la siguiente wiki-página para las noticias:"; 40 | 41 | //navigation 42 | $lang["monobook_navigation"] = "¿Mostrar navegación?"; 43 | $lang["monobook_navigation_location"] = "En caso afirmativo, usar la siguiente wiki-página para la navegación:"; 44 | 45 | //custom copyright notice 46 | $lang["monobook_copyright"] = "¿Mostrar aviso de copyright?"; 47 | $lang["monobook_copyright_default"] = "En caso afirmativo, ¿usar el aviso por defecto?"; 48 | $lang["monobook_copyright_location"] = "En caso de no mostrar el aviso por defecto, usar la siguiente wiki-página como aviso:"; 49 | 50 | //search form 51 | $lang["monobook_search"] = "¿Mostrar la barra de búsqueda?"; 52 | 53 | //toolbox 54 | $lang["monobook_toolbox"] = "¿Mostrar herramientas?"; 55 | $lang["monobook_toolbox_default"] = "En caso afirmativo, ¿usar las herramientas por defecto?"; 56 | $lang["monobook_toolbox_default_print"] = "Si se usan las herramientas por defecto, ¿mostrar el enlace 'Versión imprimible'?"; 57 | $lang["monobook_toolbox_location"] = "Si no se usan las herramientas por defecto, usar la siguiente wiki-página para las herramientas"; 58 | 59 | //donation link/button 60 | $lang["monobook_donate"] = "¿Mostrar el enlace/botón 'Donar'?"; 61 | $lang["monobook_donate_url"] = "En caso contrario, usar la siguiente URL:"; 62 | 63 | //other stuff 64 | $lang["monobook_breadcrumbs_position"] = "&Position of breadcrumb navigation (if enabled):"; 65 | $lang["monobook_youarehere_position"] = "Posición de 'Estás aquí' (si está habilitado)"; 66 | $lang["monobook_cite_author"] = "Nombre de autor en 'Citar este artículo':"; 67 | $lang["monobook_loaduserjs"] = "¿Cargar 'monobook/user/user.js'?"; 68 | 69 | -------------------------------------------------------------------------------- /lang/es/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/es/style.css -------------------------------------------------------------------------------- /lang/fr/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Tamara Göbes 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Article"; 35 | $lang["monobook_tab_discussion"] = "Discussion"; 36 | $lang["monobook_tab_userpage"] = "Page utilisateur"; 37 | $lang["monobook_tab_specialpage"] = "Pages spéciales"; 38 | $lang["monobook_tab_mytalk"] = "Ma discussion"; 39 | $lang["monobook_tab_exportodt"] = "Export: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Export: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Affichages"; 44 | $lang["monobook_bar_personnaltools"] = "Propres outils"; 45 | $lang["monobook_bar_navigation"] = "Navigation"; 46 | $lang["monobook_bar_toolbox"] = "Boîte à outils"; 47 | $lang["monobook_bar_inotherlanguages"] = "Autres langues"; 48 | $lang["monobook_bar_search"] = "Recherche"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Lire"; 52 | $lang["monobook_btn_search"] = "Recherche"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "Pages liées"; 56 | $lang["monobook_toolbxdef_upload"] = "Télécharger"; 57 | $lang["monobook_toolbxdef_siteindex"] = "Page d'index"; 58 | $lang["monobook_toolbxdef_print"] = "Version imprimable"; 59 | $lang["monobook_toolboxdef_permanent"] = "Lien permanent"; 60 | $lang["monobook_toolboxdef_cite"] = "Citer cette page"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Informations bibliographiques sur"; 64 | $lang["monobook_cite_pagename"] = "Nom de la page"; 65 | $lang["monobook_cite_author"] = "Auteur(s)"; 66 | $lang["monobook_cite_publisher"] = "Éditeur"; 67 | $lang["monobook_cite_dateofrev"] = "Dernière révision"; 68 | $lang["monobook_cite_dateretrieved"] = "Page consultée le"; 69 | $lang["monobook_cite_permurl"] = "URL permanente"; 70 | $lang["monobook_cite_pageversionid"] = "Numéro de version"; 71 | $lang["monobook_cite_citationstyles"] = "Style de citation de/pour"; 72 | $lang["monobook_cite_checkstandards"] = "N'oubliez pas de comparer les informations avec les prescriptions qui vous avez ou avec les prescriptions de votre professeur pour maintenir la syntaxe exacte qui remplit les conditions svp."; 73 | $lang["monobook_cite_latexusepackagehint"] = "Lorsque vous utilisez la package url sous LaTeX (\usepackage{url} quelque part dans le préambule) qui améliore l'affichage des adresses internet, veuillez utiliser de préférence ce format:"; 74 | $lang["monobook_cite_retrieved"] = "Consulté"; 75 | $lang["monobook_cite_from"] = "de"; 76 | $lang["monobook_cite_accessed"] = "Consulté"; 77 | $lang["monobook_cite_cited"] = "Cité"; 78 | $lang["monobook_cite_lastvisited"] = "Dérnièrement consulté"; 79 | $lang["monobook_cite_availableat"] = "Disponible sur"; 80 | 81 | //other 82 | $lang["monobook_accessdenied"] = "Accès non-autorisé"; 83 | $lang["monobook_fillplaceholder"] = "Remplir cette marque substitutive svp"; 84 | $lang["monobook_donate"] = "Faire un don"; 85 | $lang["monobook_mdtemplatefordw"] = "Template monobook pour DokuWiki"; 86 | $lang["monobook_recentchanges"] = "Modifications récentes"; 87 | 88 | -------------------------------------------------------------------------------- /lang/fr/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Tamara Göbes 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //discussion pages 34 | $lang["monobook_discuss"] = "Utiliser des pages/ onglets de discussion?"; 35 | $lang["monobook_discuss_ns"] = "Si oui, prendre la racine suivante ':espace de noms:' pour des discussions:"; 36 | 37 | //site notice 38 | $lang["monobook_sitenotice"] = "Afficher la note sur tous les sites?"; 39 | $lang["monobook_sitenotice_location"] = "Si oui, utiliser la page-wiki suivante comme note:"; 40 | 41 | //navigation 42 | $lang["monobook_navigation"] = "Afficher navigation?"; 43 | $lang["monobook_navigation_location"] = "Si oui, utiliser la page-wiki suivante comme navigation:"; 44 | 45 | //custom copyright notice 46 | $lang["monobook_copyright"] = "Afficher note de copyright?"; 47 | $lang["monobook_copyright_default"] = "Si oui, utiliser la note standard de copyright?"; 48 | $lang["monobook_copyright_location"] = "Sinon la note standard de copyright, utiliser la page-wiki suivante comme note de copyright:"; 49 | 50 | //search form 51 | $lang["monobook_search"] = "Afficher le formulaire de recherche?"; 52 | 53 | //toolbox 54 | $lang["monobook_toolbox"] = "Afficher boîte à outils/ outils?"; 55 | $lang["monobook_toolbox_default"] = "Si oui, utiliser la boîte à outils standard?"; 56 | $lang["monobook_toolbox_default_print"] = "Si la boîte à outils est utilisée, afficher la lien de version imprimée supplémentaire?"; 57 | $lang["monobook_toolbox_location"] = "Sinon la boîte à outils standard, utiliser la page wiki suivante comme boîte à outils:"; 58 | 59 | //donation link/button 60 | $lang["monobook_donate"] = "Afficher le lien/ le bouton 'faire un don'?"; 61 | $lang["monobook_donate_url"] = "Sinon le but de don standard, utiliser la url suivante pour faire un don:"; 62 | 63 | //other stuff 64 | $lang["monobook_breadcrumbs_position"] = "Position de la navigation breadcrumb (si activé):"; 65 | $lang["monobook_youarehere_position"] = "Position de la navigation 'Vous-êtes ice' (si activé)"; 66 | $lang["monobook_cite_author"] = "Citer dans l'article le nom de l'auteur utilisé':"; 67 | $lang["monobook_loaduserjs"] = "Charger le fichier 'monobook/user/user.js'?"; 68 | 69 | -------------------------------------------------------------------------------- /lang/fr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/fr/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 monobook 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/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Luigi Micco 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Articolo"; 35 | $lang["monobook_tab_discussion"] = "discussione"; 36 | $lang["monobook_tab_userpage"] = "Pagina utente"; 37 | $lang["monobook_tab_specialpage"] = "Pagine spaciali"; 38 | $lang["monobook_tab_mytalk"] = "Le mie discussioni"; 39 | $lang["monobook_tab_exportodt"] = "Esporta: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Esporta: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Viste"; 44 | $lang["monobook_bar_personnaltools"] = "Strumenti personali"; 45 | $lang["monobook_bar_navigation"] = "Navigazione"; 46 | $lang["monobook_bar_toolbox"] = "Strumenti"; 47 | $lang["monobook_bar_inotherlanguages"] = "Altre lingue"; 48 | $lang["monobook_bar_search"] = "Cerca"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Vai"; 52 | $lang["monobook_btn_search"] = "Cerca"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "Pagine che puntano qui"; 56 | $lang["monobook_toolbxdef_upload"] = "Carica file"; 57 | $lang["monobook_toolbxdef_siteindex"] = "Indice del sito"; 58 | $lang["monobook_toolbxdef_print"] = "Versione stampabile"; 59 | $lang["monobook_toolboxdef_permanent"] = "Link permanente"; 60 | $lang["monobook_toolboxdef_cite"] = "Cita questo articolo"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Dettagli bibliografici per"; 64 | $lang["monobook_cite_pagename"] = "Nome pagina"; 65 | $lang["monobook_cite_author"] = "Autore"; 66 | $lang["monobook_cite_publisher"] = "Editore"; 67 | $lang["monobook_cite_dateofrev"] = "Data dell'ultima revisione"; 68 | $lang["monobook_cite_dateretrieved"] = "Data della citazione"; 69 | $lang["monobook_cite_permurl"] = "Link permanente"; 70 | $lang["monobook_cite_pageversionid"] = "ID della revisione"; 71 | $lang["monobook_cite_citationstyles"] = "Stili di citazione per"; 72 | $lang["monobook_cite_checkstandards"] = "Usate la versione che risponde meglio ai vostri bisogni."; 73 | $lang["monobook_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:"; 74 | $lang["monobook_cite_retrieved"] = "Retrieved"; 75 | $lang["monobook_cite_from"] = "from"; 76 | $lang["monobook_cite_accessed"] = "Accessed"; 77 | $lang["monobook_cite_cited"] = "Cited"; 78 | $lang["monobook_cite_lastvisited"] = "Last visited"; 79 | $lang["monobook_cite_availableat"] = "Available at"; 80 | 81 | //other 82 | $lang["monobook_accessdenied"] = "Accesso negato"; 83 | $lang["monobook_fillplaceholder"] = "Sostituisci questo segnaposto"; 84 | $lang["monobook_donate"] = "Dona"; 85 | $lang["monobook_mdtemplatefordw"] = "stile monobook per DokuWiki"; 86 | $lang["monobook_recentchanges"] = "Modifiche recenti"; 87 | 88 | -------------------------------------------------------------------------------- /lang/it/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Luigi Micco 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //discussion pages 34 | $lang["monobook_discuss"] = "Usare linguetta discussioni?"; 35 | $lang["monobook_discuss_ns"] = "Se si, usa questo ':namespace:' come radice per le discussioni:"; 36 | 37 | //site notice 38 | $lang["monobook_sitenotice"] = "Mostra annunci generali?"; 39 | $lang["monobook_sitenotice_location"] = "Se si, usa la seguente pagina wiki come annuncio:"; 40 | 41 | //navigation 42 | $lang["monobook_navigation"] = "Mostra pannello di navigazione?"; 43 | $lang["monobook_navigation_location"] = "Se si, usa la seguente pagina wiki come pannello di navigazione:"; 44 | 45 | //custom copyright notice 46 | $lang["monobook_copyright"] = "Mostra avviso di copyright?"; 47 | $lang["monobook_copyright_default"] = "Se si, usa l'avviso di copyright predefinito?"; 48 | $lang["monobook_copyright_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come avviso di copyright:"; 49 | 50 | //search form 51 | $lang["monobook_search"] = "Mostra casella di ricerca?"; 52 | 53 | //toolbox 54 | $lang["monobook_toolbox"] = "Mostra pannello strumenti?"; 55 | $lang["monobook_toolbox_default"] = "Se si, usa il pannello predefinito?"; 56 | $lang["monobook_toolbox_default_print"] = "Se utilizzi il pannello predefinito, mostra link per versione stampabile?"; 57 | $lang["monobook_toolbox_location"] = "Se non usi il predefinito, usa la seguente pagina wiki come pannello degli strumenti:"; 58 | 59 | //donation link/button 60 | $lang["monobook_donate"] = "Mostra link/pulsante per le donazioni?"; 61 | $lang["monobook_donate_url"] = "Se non predefinito, usa il seguente indirizzo URL per le donazioni:"; 62 | 63 | //other stuff 64 | $lang["monobook_breadcrumbs_position"] = "Posizione del pannello breadcrumb (se abilitato):"; 65 | $lang["monobook_youarehere_position"] = "Posizione del pannello 'Tu sei qui' (se abilitato):"; 66 | $lang["monobook_cite_author"] = "Nome autore in 'Cita questo articolo':"; 67 | $lang["monobook_loaduserjs"] = "Carica 'monobook/user/user.js'?"; 68 | 69 | -------------------------------------------------------------------------------- /lang/it/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/it/style.css -------------------------------------------------------------------------------- /lang/ja/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/ja/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/ja/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Yoshitaka Kunikane 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "本文"; 35 | $lang["monobook_tab_discussion"] = "議論"; 36 | $lang["monobook_tab_userpage"] = "ユーザー"; 37 | $lang["monobook_tab_specialpage"] = "特別"; 38 | $lang["monobook_tab_mytalk"] = "トーク"; 39 | $lang["monobook_tab_exportodt"] = "書き出し: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "書き出し: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "表示"; 44 | $lang["monobook_bar_personnaltools"] = "個人ツール"; 45 | $lang["monobook_bar_navigation"] = "ナビゲーション"; 46 | $lang["monobook_bar_toolbox"] = "ツールボックス"; 47 | $lang["monobook_bar_inotherlanguages"] = "言語選択"; 48 | $lang["monobook_bar_search"] = "検索"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Go"; 52 | $lang["monobook_btn_search"] = "検索"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "被リンク"; 56 | $lang["monobook_toolbxdef_upload"] = "アップロード"; 57 | $lang["monobook_toolbxdef_siteindex"] = "索引"; 58 | $lang["monobook_toolbxdef_print"] = "印刷用"; 59 | $lang["monobook_toolboxdef_permanent"] = "固定リンク"; 60 | $lang["monobook_toolboxdef_cite"] = "項目の引用"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Bibliographic details for"; 64 | $lang["monobook_cite_pagename"] = "Page name"; 65 | $lang["monobook_cite_author"] = "Author"; 66 | $lang["monobook_cite_publisher"] = "Publisher"; 67 | $lang["monobook_cite_dateofrev"] = "Date of this revision"; 68 | $lang["monobook_cite_dateretrieved"] = "Date retrieved"; 69 | $lang["monobook_cite_permurl"] = "Permanent URL"; 70 | $lang["monobook_cite_pageversionid"] = "Page Version ID"; 71 | $lang["monobook_cite_citationstyles"] = "Citation styles for"; 72 | $lang["monobook_cite_checkstandards"] = "Please remember to check with your standards guide or professor's guidelines for the exact syntax to suit your needs."; 73 | $lang["monobook_cite_latexusepackagehint"] = "When using the LaTeX package 'url' (hint: search for '\usepackage{url}' somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred"; 74 | $lang["monobook_cite_retrieved"] = "Retrieved"; 75 | $lang["monobook_cite_from"] = "from"; 76 | $lang["monobook_cite_accessed"] = "Accessed"; 77 | $lang["monobook_cite_cited"] = "Cited"; 78 | $lang["monobook_cite_lastvisited"] = "Last visited"; 79 | $lang["monobook_cite_availableat"] = "Available at"; 80 | 81 | //other 82 | $lang["monobook_accessdenied"] = "アクセスは拒否されました"; 83 | $lang["monobook_fillplaceholder"] = "Please fill this placeholder"; 84 | $lang["monobook_donate"] = "寄付"; 85 | $lang["monobook_mdtemplatefordw"] = "monobook template for DokuWiki"; 86 | $lang["monobook_recentchanges"] = "最近の変更"; 87 | 88 | -------------------------------------------------------------------------------- /lang/ja/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Yoshitaka Kunikane 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //discussion pages 34 | $lang["monobook_discuss"] = "ディスカッションタブを使用する"; 35 | $lang["monobook_discuss_ns"] = "使用する場合、ディスカッションのルート名前空間を指定:"; 36 | 37 | //site notice 38 | $lang["monobook_sitenotice"] = "サイト案内を使用する"; 39 | $lang["monobook_sitenotice_location"] = "使用する場合、サイト案内の名前空間を指定:"; 40 | 41 | //navigation 42 | $lang["monobook_navigation"] = "ナビゲーションを使用する"; 43 | $lang["monobook_navigation_location"] = "使用する場合、ナビゲーションの名前空間を指定:"; 44 | 45 | //custom copyright notice 46 | $lang["monobook_copyright"] = "著作権表示を使用する"; 47 | $lang["monobook_copyright_default"] = "使用する場合、著作権表示の名前空間を指定:"; 48 | $lang["monobook_copyright_location"] = "デフォルトを使用しない場合、著作権表示を下記のページに指定する:"; 49 | 50 | //search form 51 | $lang["monobook_search"] = "検索窓を使用する"; 52 | 53 | //toolbox 54 | $lang["monobook_toolbox"] = "ツールボックスを使用する"; 55 | $lang["monobook_toolbox_default"] = "使用する場合、デフォルトのツールボックスを使用する"; 56 | $lang["monobook_toolbox_default_print"] = "デフォルトのツールボックスを使う場合、印刷用リンクを表示する。"; 57 | $lang["monobook_toolbox_location"] = "デフォルトを使用しない場合、ツールボックスを下記のページに指定する:"; 58 | 59 | //donation link/button 60 | $lang["monobook_donate"] = "寄付のリンク/ボタンを表示する"; 61 | $lang["monobook_donate_url"] = "デフォルトを使用しない場合、下記のURLを指定する。"; 62 | 63 | //other stuff 64 | $lang["monobook_breadcrumbs_position"] = "パンくずの表示位置(利用している場合のみ適用):"; 65 | $lang["monobook_youarehere_position"] = "現在位置の表示位置(利用している場合のみ適用):"; 66 | $lang["monobook_cite_author"] = "'項目を引用'に表示する作者の名前:"; 67 | $lang["monobook_loaduserjs"] = "'monobook/user/user.js'をロードする"; 68 | 69 | -------------------------------------------------------------------------------- /lang/ja/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/ja/style.css -------------------------------------------------------------------------------- /lang/ko/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author 관인생략 22 | * @author Myeongjin 23 | * @link https://www.dokuwiki.org/template:monobook 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["monobook_tab_article"] = "문서"; 36 | $lang["monobook_tab_discussion"] = "토론"; 37 | $lang["monobook_tab_userpage"] = "사용자 문서"; 38 | $lang["monobook_tab_specialpage"] = "특수 문서"; 39 | $lang["monobook_tab_mytalk"] = "사용자 토론"; 40 | $lang["monobook_tab_exportodt"] = "내보내기: ODT"; 41 | $lang["monobook_tab_exportpdf"] = "내보내기: PDF"; 42 | 43 | //headlines for the different bars 44 | $lang["monobook_bar_views"] = "보기"; 45 | $lang["monobook_bar_personnaltools"] = "개인 도구"; 46 | $lang["monobook_bar_navigation"] = "둘러보기"; 47 | $lang["monobook_bar_toolbox"] = "도구모음"; 48 | $lang["monobook_qrcodebox"] = "QR 코드"; 49 | $lang["monobook_bar_inotherlanguages"] = "다른 언어"; 50 | $lang["monobook_bar_search"] = "찾기"; 51 | 52 | //buttons 53 | $lang["monobook_btn_go"] = "보기"; 54 | $lang["monobook_btn_search"] = "찾기"; 55 | 56 | //default toolbox 57 | $lang["monobook_toolbxdef_whatlinkshere"] = "여기를 가리키는 문서"; 58 | $lang["monobook_toolbxdef_upload"] = "파일 올리기"; 59 | $lang["monobook_toolbxdef_siteindex"] = "사이트맵"; 60 | $lang["monobook_toolbxdef_print"] = "인쇄용 문서"; 61 | $lang["monobook_toolboxdef_permanent"] = "고유 링크"; 62 | $lang["monobook_toolboxdef_cite"] = "이 문서 인용하기"; 63 | 64 | //qr code box 65 | $lang["monobook_qrcodebox_qrcode"] = "QR 코드"; 66 | $lang["monobook_qrcodebox_genforcurrentpage"] = "현재 문서의 생성된 QR 코드"; 67 | $lang["monobook_qrcodebox_urlofcurrentpage"] = "현재 문서의 QR 코드 (쉽게 모바일 접근을 하려면 스캔)"; 68 | 69 | //cite this article 70 | $lang["monobook_cite_bibdetailsfor"] = "다음 문서의 출처 정보:"; 71 | $lang["monobook_cite_pagename"] = "문서 이름"; 72 | $lang["monobook_cite_author"] = "저자"; 73 | $lang["monobook_cite_publisher"] = "발행처"; 74 | $lang["monobook_cite_dateofrev"] = "이 판의 날짜"; 75 | $lang["monobook_cite_dateretrieved"] = "확인한 날짜"; 76 | $lang["monobook_cite_permurl"] = "고유 URL"; 77 | $lang["monobook_cite_pageversionid"] = "문서 판 ID"; 78 | $lang["monobook_cite_citationstyles"] = "다음 문서의 인용 양식:"; 79 | $lang["monobook_cite_checkstandards"] = "필요에 따라 정확한 구문에 대한 양식 매뉴얼, 표준 가이드 또는 안내자의 지침을 확인하는 것을 기억하세요"; 80 | $lang["monobook_cite_latexusepackagehint"] = "LaTeX 패키지 URL(프리앰블의 어딘가에 \usepackage{url})을 사용하면 더 정돈된 형식의 웹 주소를 얻을 수 있습니다. 다음과 같은 방법을 선호합니다"; 81 | $lang["monobook_cite_retrieved"] = "확인한 날짜:"; 82 | $lang["monobook_cite_from"] = "다음에서 찾아볼 수 있음:"; 83 | $lang["monobook_cite_in"] = "발행처:"; 84 | $lang["monobook_cite_accessed"] = "접근한 날짜:"; 85 | $lang["monobook_cite_cited"] = "인용한 날짜:"; 86 | $lang["monobook_cite_lastvisited"] = "마지막으로 방문한 날짜:"; 87 | $lang["monobook_cite_availableat"] = "다음에서 찾아볼 수 있음"; 88 | $lang["monobook_cite_discussionpages"] = "도쿠위키 토론 문서"; 89 | $lang["monobook_cite_markup"] = "문법"; 90 | $lang["monobook_cite_result"] = "결과"; 91 | $lang["monobook_cite_thisversion"] = "이 판"; 92 | 93 | //other 94 | $lang["monobook_accessdenied"] = "접근 거부됨"; 95 | $lang["monobook_fillplaceholder"] = "이 자리를 채우거나 비활성화하세요"; 96 | $lang["monobook_donate"] = "기부"; 97 | $lang["monobook_mdtemplatefordw"] = "도쿠위키를 위한 모노북 템플릿"; 98 | $lang["monobook_recentchanges"] = "최근 바뀜"; 99 | 100 | -------------------------------------------------------------------------------- /lang/ko/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Myeongjin 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //user pages 34 | $lang["monobook_userpage"] = "사용자 문서를 사용하겠습니까?"; 35 | $lang["monobook_userpage_ns"] = "만약 사용한다면 사용자 문서에 대한 루트로 다음 ':이름공간:' 사용:"; 36 | 37 | //discussion pages 38 | $lang["monobook_discuss"] = "토론 탭/사이트를 사용하겠습니까?"; 39 | $lang["monobook_discuss_ns"] = "만약 사용한다면 토론에 대한 루트로 다음 ':이름공간:' 사용:"; 40 | 41 | //site notice 42 | $lang["monobook_sitenotice"] = "사이트 넓은 알림을 보여줄까요?"; 43 | $lang["monobook_sitenotice_location"] = "만약 보여준다면 사이트 넓은 알림에 대해 다음 위키 문서 사용:"; 44 | $lang["monobook_sitenotice_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 사이트 넓은 알림을 불러올까요?
번역된 사이트 알림의 위키 문서는 ['monobook_sitenotice_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:site_notice_de') 입니다."; 45 | 46 | //navigation 47 | $lang["monobook_navigation"] = "둘러보기를 보여줄까요?"; 48 | $lang["monobook_navigation_location"] = "만약 보여준다면 둘러보기로 다음 위키 문서 사용:"; 49 | $lang["monobook_navigation_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 둘러보기를 불러올까요?
번역된 둘러보기의 위키 문서는 ['monobook_navigation_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:navigation_de') 입니다."; 50 | 51 | //custom copyright notice 52 | $lang["monobook_copyright"] = "저작권 알림을 보여줄까요?"; 53 | $lang["monobook_copyright_default"] = "만약 보여준다면 기본 저작권 알림을 사용하겠습니까?"; 54 | $lang["monobook_copyright_location"] = "기본 알림을 사용하지 않는다면 저작권 알림으로 다음 위키 문서 사용:"; 55 | $lang["monobook_copyright_translate"] = "만약 보여주고 Translation 플러그인을 사용할 수 있다면: 언어별 저작권 알림을 불러올까요?
번역된 저작권 일림의 위키 문서는 ['monobook_copyright_location'의 값]_[iso 언어 코드] (예를 들어 ':wiki:copyright_de') 입니다."; 56 | 57 | //search form 58 | $lang["monobook_search"] = "검색 양식을 보여줄까요?"; 59 | 60 | //toolbox 61 | $lang["monobook_toolbox"] = "도구모음을 보여줄까요?"; 62 | $lang["monobook_toolbox_default"] = "만약 보여준다면 기본 도구모음을 사용하겠습니까?"; 63 | $lang["monobook_toolbox_default_print"] = "만약 기본 도구모음을 사용한다면 인쇄용 문서 링크를 보여줄까요?"; 64 | $lang["monobook_toolbox_location"] = "기본 모음을 사용하지 않는다면 도구모음 위치로 다음 위키 문서 사용:"; 65 | 66 | //qr code box 67 | $lang["monobook_qrcodebox"] = "(모바일 브라우저에 쉽게 URL 전송을 위해) 현재 위키 문서 URL의 QR 코드로 된 상자를 보여줄까요?"; 68 | 69 | //donation link/button 70 | $lang["monobook_donate"] = "기부 링크/버튼을 보여줄까요?"; 71 | $lang["monobook_donate_url"] = "기부에 대한 다음 URL 사용:"; 72 | 73 | //TOC 74 | $lang["monobook_toc_position"] = "목차 위치"; 75 | 76 | //other stuff 77 | $lang["monobook_breadcrumbs_position"] = "(활성화되었다면) 위치 추적 둘러보기의 위치:"; 78 | $lang["monobook_youarehere_position"] = "(활성화되었다면) '현재 위치' 둘러보기의 위치:"; 79 | $lang["monobook_cite_author"] = "'이 문서 인용하기'의 저자 이름:"; 80 | $lang["monobook_loaduserjs"] = "'monobook/user/user.js'를 불러올까요?"; 81 | $lang["monobook_closedwiki"] = "닫힌 위키입니까? (대부분의 링크/탭/도구를 사용자가 로그인하기 전에 숨깁니다)"; 82 | 83 | -------------------------------------------------------------------------------- /lang/ko/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/ko/style.css -------------------------------------------------------------------------------- /lang/nl/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 10 | * - /lib/tpl/monobook/lang//settings.php 11 | * If they are not existing, copy and translate the English ones. 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 Theo Klein 23 | * @link https://www.dokuwiki.org/template:monobook 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["monobook_tab_article"] = "Artikel"; 36 | $lang["monobook_tab_discussion"] = "Discussie"; 37 | $lang["monobook_tab_userpage"] = "Gebruikers Pagina"; 38 | $lang["monobook_tab_specialpage"] = "Speciale Pagina's"; 39 | $lang["monobook_tab_mytalk"] = "Mijn overleg"; 40 | $lang["monobook_tab_exportodt"] = "Exporteer: ODT"; 41 | $lang["monobook_tab_exportpdf"] = "Exporteer: PDF"; 42 | 43 | //headlines for the different bars 44 | $lang["monobook_bar_views"] = "Views"; 45 | $lang["monobook_bar_personnaltools"] = "Persoonlijke gereedschappen"; 46 | $lang["monobook_bar_navigation"] = "Navigatie"; 47 | $lang["monobook_bar_toolbox"] = "Gereedschappen"; 48 | $lang["monobook_bar_inotherlanguages"] = "In andere talen"; 49 | $lang["monobook_bar_search"] = "Zoek"; 50 | 51 | //buttons 52 | $lang["monobook_btn_go"] = "Ga naar"; 53 | $lang["monobook_btn_search"] = "Zoek"; 54 | 55 | //default toolbox 56 | $lang["monobook_toolbxdef_whatlinkshere"] = "Links naar deze pagina"; 57 | $lang["monobook_toolbxdef_upload"] = "Upload bestand"; 58 | $lang["monobook_toolbxdef_siteindex"] = "Index pagina"; 59 | $lang["monobook_toolbxdef_print"] = "Printversie"; 60 | $lang["monobook_toolboxdef_permanent"] = "Permanente link"; 61 | $lang["monobook_toolboxdef_cite"] = "Deze pagina citeren"; 62 | 63 | //cite this article 64 | $lang["monobook_cite_bibdetailsfor"] = "Bibliografische details voor"; 65 | $lang["monobook_cite_pagename"] = "Page naam"; 66 | $lang["monobook_cite_author"] = "Auteur"; 67 | $lang["monobook_cite_publisher"] = "Uitgever"; 68 | $lang["monobook_cite_dateofrev"] = "Datum van deze revisie"; 69 | $lang["monobook_cite_dateretrieved"] = "Opgehaald op"; 70 | $lang["monobook_cite_permurl"] = "Permanente URL"; 71 | $lang["monobook_cite_pageversionid"] = "Pagina Versie ID"; 72 | $lang["monobook_cite_citationstyles"] = "Stylen om te verwijzen naar"; 73 | $lang["monobook_cite_checkstandards"] = "Vergeet niet uw eigen normen of richtlijnen te controleren voor de exacte zinsbouw die voldoet aan uw behoeften."; 74 | $lang["monobook_cite_latexusepackagehint"] = "Bij gebruik van URLs in het LaTeX-pakket geeft deze methode veel mooiere opgemaakte webadressen, hint: zoek naar '\usepackage {url} ' in de handleiding'"; 75 | $lang["monobook_cite_retrieved"] = "Opgehaald op"; 76 | $lang["monobook_cite_from"] = "van"; 77 | $lang["monobook_cite_accessed"] = "Op"; 78 | $lang["monobook_cite_cited"] = "Geciteerd"; 79 | $lang["monobook_cite_lastvisited"] = "Laatst bezocht op"; 80 | $lang["monobook_cite_availableat"] = "Beschikbaar op"; 81 | 82 | //other 83 | $lang["monobook_accessdenied"] = "Toegang gewijgerd"; 84 | $lang["monobook_fillplaceholder"] = "Vul dit veld in"; 85 | $lang["monobook_donate"] = "Doneer"; 86 | $lang["monobook_mdtemplatefordw"] = "monobook template voor DokuWiki"; 87 | $lang["monobook_recentchanges"] = "Recent gewijzigd"; 88 | 89 | -------------------------------------------------------------------------------- /lang/nl/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 10 | * - /lib/tpl/monobook/lang//settings.php 11 | * If they are not existing, copy and translate the English ones. 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 Theo Klein 23 | * @link https://www.dokuwiki.org/template:monobook 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 | //discussion pages 35 | $lang["monobook_discuss"] = "Gebruik discussie pagina's en tabs?"; 36 | $lang["monobook_discuss_ns"] = "Indien ja, gebruik de volgende ':namespace:' als root voor discussies:"; 37 | 38 | //site notice 39 | $lang["monobook_sitenotice"] = "Toon notificatie door de gehele site?"; 40 | $lang["monobook_sitenotice_location"] = "Indien ja, gebruik de volgende wiki pagina als notificatie:"; 41 | 42 | //navigation 43 | $lang["monobook_navigation"] = "Toon navigatie?"; 44 | $lang["monobook_navigation_location"] = "Indien ja, gebruik de volgende wiki pagina als navigatie:"; 45 | 46 | //custom copyright notice 47 | $lang["monobook_copyright"] = "Toon copyright notificatie?"; 48 | $lang["monobook_copyright_default"] = "Indien ja, gebruik de standaard copyright notificatie?"; 49 | $lang["monobook_copyright_location"] = "Wanneer de standaard niet gebruikt wordt, gebruik de volgende wiki pagina als copyright notificatie:"; 50 | 51 | //search form 52 | $lang["monobook_search"] = "Toon zoek veld?"; 53 | 54 | //toolbox 55 | $lang["monobook_toolbox"] = "Toon gereedschappen?"; 56 | $lang["monobook_toolbox_default"] = "Indien ja, gebruik maken van de standaard gereedschappen?"; 57 | $lang["monobook_toolbox_default_print"] = "Indien de standaard gebruikt wordt, toon een link naar de printbare versie?"; 58 | $lang["monobook_toolbox_location"] = "Indien niet de standaard gereedschappen gebruikt worden, wordt deze wiki pagina gebruikt:"; 59 | 60 | //donation link/button 61 | $lang["monobook_donate"] = "Toon donatie link/knop?"; 62 | $lang["monobook_donate_url"] = "Indien niet standaard, gebruik de volgende URL voor donaties:"; 63 | 64 | //other stuff 65 | $lang["monobook_breadcrumbs_position"] = "Positie van broodkruimel navigatie (indien ingeschakeld):"; 66 | $lang["monobook_youarehere_position"] = "Positie van 'U bent hier' navigatie (indien ingeschakeld):"; 67 | $lang["monobook_cite_author"] = "Naam van de auteur in 'Citeer dit artikel':"; 68 | $lang["monobook_loaduserjs"] = "Laad 'monobook/user/user.js'?"; 69 | 70 | -------------------------------------------------------------------------------- /lang/nl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/nl/style.css -------------------------------------------------------------------------------- /lang/no/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/no/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/no/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * 21 | * no: Norsk språk for konfigurasjonsinnstillinger 22 | * 23 | * Hvis ditt språk ikke er her eller bare delvis er oversatt, ta en titt på 24 | * følgende filer: 25 | * - /lib/tpl/monobook/lang//lang.php 26 | * - /lib/tpl/monobook/lang//settings.php 27 | * Hvis de ikke fins, kopier og oversett de engelske versjonene. 28 | * 29 | * 30 | * LISENS: Denne fila er programvare med åpen kildekode og kan kopieres under 31 | * visse vilkår. Se fila COPYING for detaljer eller forsøk å kontakte 32 | * forfatteren av denne fila. 33 | * 34 | * 35 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 36 | * @author Henrik Karlstrøm 37 | * @link https://www.dokuwiki.org/template:monobook 38 | * @link https://www.dokuwiki.org/config:lang 39 | * @link https://www.dokuwiki.org/devel:configuration 40 | */ 41 | 42 | 43 | //check if we are running within the DokuWiki environment 44 | if (!defined("DOKU_INC")){ 45 | die(); 46 | } 47 | 48 | //discussion pages 49 | //diskusjonssider 50 | $lang["monobook_discuss"] = "Bruke diskusjonsfaner?"; 51 | $lang["monobook_discuss_ns"] = "Hvis ja, bruk følgende ':namespace:' som rot for diskusjoner:"; 52 | 53 | //site notice 54 | //sidenotis 55 | $lang["monobook_sitenotice"] = "Vise notis over hele sida?"; 56 | $lang["monobook_sitenotice_location"] = "Hvis ja, bruk følgende wiki-side for notisen:"; 57 | 58 | //navigation 59 | //navigering 60 | $lang["monobook_navigation"] = "Vise navigering?"; 61 | $lang["monobook_navigation_location"] = "Hvis ja, bruk følgende wiki-side til navigering:"; 62 | 63 | //custom copyright notice 64 | //selvvalgt kopibeskyttelsesnotis 65 | $lang["monobook_copyright"] = "Vise kopibeskyttelsesnotis?"; 66 | $lang["monobook_copyright_default"] = "Hvis ja, bruk standard kopibeskyttelsesnotis?"; 67 | $lang["monobook_copyright_location"] = "Hvis ikke standard, bruk følgende wiki-side til kopibeskyttelsesnotis:"; 68 | 69 | //search form 70 | //søkefelt 71 | $lang["monobook_search"] = "Vise søkefelt?"; 72 | 73 | //toolbox 74 | //verktøykasse 75 | $lang["monobook_toolbox"] = "Vise verktøykasse?"; 76 | $lang["monobook_toolbox_default"] = "Hvis ja, bruk standard verktøykasse?"; 77 | $lang["monobook_toolbox_default_print"] = "Hvis standard verktøykasse, vise lenke til utskriftsvennlig versjon?"; 78 | $lang["monobook_toolbox_location"] = "Hvis ikke standard, bruk følgende wiki-side til verktøykasse:"; 79 | 80 | //donation link/button 81 | //donasjons-lenke/knapp 82 | $lang["monobook_donate"] = "Vise lenke/knapp til donasjoner?"; 83 | $lang["monobook_donate_url"] = "Bruk følgende lenke til donasjoner:"; 84 | 85 | //other stuff 86 | //annet 87 | $lang["monobook_breadcrumbs_position"] = "Posisjonen til breadcrumb-navigering (hvis tillatt):"; 88 | $lang["monobook_youarehere_position"] = "Posisjonen til 'Du er her'-navigering (hvis tillatt):"; 89 | $lang["monobook_cite_author"] = "Forfatternavn i 'Sitér denne artikkelen':"; 90 | $lang["monobook_loaduserjs"] = "Laste 'monobook/user/user.js'?"; 91 | 92 | -------------------------------------------------------------------------------- /lang/no/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/no/style.css -------------------------------------------------------------------------------- /lang/pl/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/pl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/pl/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Andrzej Pruszyński 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "artykuł"; 35 | $lang["monobook_tab_discussion"] = "dyskusja"; 36 | $lang["monobook_tab_userpage"] = "strona użytkownika"; 37 | $lang["monobook_tab_specialpage"] = "strony specjalne"; 38 | $lang["monobook_tab_mytalk"] = "moja dyskusja"; 39 | $lang["monobook_tab_exportodt"] = "eksport: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "eksport: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Views"; 44 | $lang["monobook_bar_personnaltools"] = "narzędzia użytkownika"; 45 | $lang["monobook_bar_navigation"] = "nawigacja"; 46 | $lang["monobook_bar_toolbox"] = "narzędzia"; 47 | $lang["monobook_bar_inotherlanguages"] = "w innych językach"; 48 | $lang["monobook_bar_search"] = "wyszukiwanie"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "idź do"; 52 | $lang["monobook_btn_search"] = "szukaj"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "wykaz odnośników"; 56 | $lang["monobook_toolbxdef_upload"] = "przesyłanie plików"; 57 | $lang["monobook_toolbxdef_siteindex"] = "indeks witryny"; 58 | $lang["monobook_toolbxdef_print"] = "wersja do druku"; 59 | $lang["monobook_toolboxdef_permanent"] = "link z wersją"; 60 | $lang["monobook_toolboxdef_cite"] = "cytowanie"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Szczegóły bibliograficzne strony"; 64 | $lang["monobook_cite_pagename"] = "Nazwa strony"; 65 | $lang["monobook_cite_author"] = "Autor"; 66 | $lang["monobook_cite_publisher"] = "Wydawca"; 67 | $lang["monobook_cite_dateofrev"] = "Data publikacji tej wersji"; 68 | $lang["monobook_cite_dateretrieved"] = "Data dostępu"; 69 | $lang["monobook_cite_permurl"] = "Adres URL tej wersji"; 70 | $lang["monobook_cite_pageversionid"] = "Identyfikator wersji strony"; 71 | $lang["monobook_cite_citationstyles"] = "Style cytowania strony"; 72 | $lang["monobook_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs"; 73 | $lang["monobook_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"; 74 | $lang["monobook_cite_retrieved"] = "Retrieved"; 75 | $lang["monobook_cite_from"] = "from"; 76 | $lang["monobook_cite_in"] = "In"; 77 | $lang["monobook_cite_accessed"] = "Accessed"; 78 | $lang["monobook_cite_cited"] = "Cited"; 79 | $lang["monobook_cite_lastvisited"] = "Last visited"; 80 | $lang["monobook_cite_availableat"] = "Available at"; 81 | $lang["monobook_cite_discussionpages"] = "DokuWiki talk pages"; 82 | $lang["monobook_cite_markup"] = "Markup"; 83 | $lang["monobook_cite_result"] = "Result"; 84 | $lang["monobook_cite_thisversion"] = "this version"; 85 | 86 | //other 87 | $lang["monobook_accessdenied"] = "Dostęp zabroniony"; 88 | $lang["monobook_fillplaceholder"] = "Please fill this placeholder"; 89 | $lang["monobook_donate"] = "Donate"; 90 | $lang["monobook_mdtemplatefordw"] = "monobook template for DokuWiki"; 91 | $lang["monobook_recentchanges"] = "ostatnie zmiany"; 92 | 93 | -------------------------------------------------------------------------------- /lang/pl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/pl/style.css -------------------------------------------------------------------------------- /lang/pt-br/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessable. 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/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Sérgio Evandro Motta 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Artigo"; 35 | $lang["monobook_tab_discussion"] = "Discussão"; 36 | $lang["monobook_tab_userpage"] = "Página do Usuário"; 37 | $lang["monobook_tab_specialpage"] = "Páginas Especiais"; 38 | $lang["monobook_tab_mytalk"] = "Minha Discussão"; 39 | $lang["monobook_tab_exportodt"] = "Exportar: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Exportar: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Views"; 44 | $lang["monobook_bar_personnaltools"] = "Ferramentas Pessoais"; 45 | $lang["monobook_bar_navigation"] = "Navegação"; 46 | $lang["monobook_bar_toolbox"] = "Ferramentas"; 47 | $lang["monobook_bar_inotherlanguages"] = "Em outras línguas"; 48 | $lang["monobook_bar_search"] = "Busca"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Ir"; 52 | $lang["monobook_btn_search"] = "Pesquisa"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "Links para cá"; 56 | $lang["monobook_toolbxdef_upload"] = "Upload de arquivo"; 57 | $lang["monobook_toolbxdef_siteindex"] = "Índice do site"; 58 | $lang["monobook_toolbxdef_print"] = "Versão para Impressão"; 59 | $lang["monobook_toolboxdef_permanent"] = "Link permanente"; 60 | $lang["monobook_toolboxdef_cite"] = "Cite este artigo"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Detalhes bibliográficos para"; 64 | $lang["monobook_cite_pagename"] = "Nome da página"; 65 | $lang["monobook_cite_author"] = "Autor"; 66 | $lang["monobook_cite_publisher"] = "Editor"; 67 | $lang["monobook_cite_dateofrev"] = "Data desta revisão"; 68 | $lang["monobook_cite_dateretrieved"] = "Data encontrada"; 69 | $lang["monobook_cite_permurl"] = "URL permanente"; 70 | $lang["monobook_cite_pageversionid"] = "ID da versão da página"; 71 | $lang["monobook_cite_citationstyles"] = "Estilos de citação para"; 72 | $lang["monobook_cite_checkstandards"] = "Por favor, lembre-se de verificar no seu guia de padrões ou diretivas do seu professor pela sintaxe exata para as suas necessidades."; 73 | $lang["monobook_cite_latexusepackagehint"] = "When using the LaTeX package 'url' (hint: search for '\usepackage{url}' somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred"; 74 | $lang["monobook_cite_retrieved"] = "Encontrado"; 75 | $lang["monobook_cite_from"] = "de"; 76 | $lang["monobook_cite_accessed"] = "Accessado"; 77 | $lang["monobook_cite_cited"] = "Citado"; 78 | $lang["monobook_cite_lastvisited"] = "Visitado por último"; 79 | $lang["monobook_cite_availableat"] = "Disponível em"; 80 | 81 | //other 82 | $lang["monobook_accessdenied"] = "Accesso negado"; 83 | $lang["monobook_fillplaceholder"] = "Por favor, preencha este local"; 84 | $lang["monobook_donate"] = "Doações"; 85 | $lang["monobook_mdtemplatefordw"] = "monobook template para DokuWiki"; 86 | $lang["monobook_recentchanges"] = "Mudanças recentes"; 87 | 88 | -------------------------------------------------------------------------------- /lang/pt-br/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Sérgio Evandro Motta 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //discussion pages 34 | $lang["monobook_discuss"] = "Usar tabs de discussão?"; 35 | $lang["monobook_discuss_ns"] = "Se sim, usar o seguinte ':namespace:' como raiz para as discussões:"; 36 | 37 | //site notice 38 | $lang["monobook_sitenotice"] = "Mostrar 'site wide notice'?"; 39 | $lang["monobook_sitenotice_location"] = "Se sim, usar a seguinte página do wiki para 'site wide notice':"; 40 | 41 | //navigation 42 | $lang["monobook_navigation"] = "Mostrar navegação?"; 43 | $lang["monobook_navigation_location"] = "Se sim, usar a seguinte página do wiki para navegação:"; 44 | 45 | //custom copyright notice 46 | $lang["monobook_copyright"] = "Mostrar nota de copyright?"; 47 | $lang["monobook_copyright_default"] = "Se sim, usar a nota de copyright padrão?"; 48 | $lang["monobook_copyright_location"] = "Se não for o padrão, use a seguinte página do wiki como nota de copyright:"; 49 | 50 | //search form 51 | $lang["monobook_search"] = "Mostrar formulário de busca?"; 52 | 53 | //toolbox 54 | $lang["monobook_toolbox"] = "Mostrar ferramentas?"; 55 | $lang["monobook_toolbox_default"] = "Se sim, usar ferramentas padrão?"; 56 | $lang["monobook_toolbox_default_print"] = "Se as ferramentas padrão forem usadas, mostrar o link 'versão para impressão'?"; 57 | $lang["monobook_toolbox_location"] = "Se não for o padrão, usar a seguinte página do wiki como ferramentas:"; 58 | 59 | //donation link/button 60 | $lang["monobook_donate"] = "Mostrar o botão/link de doação?"; 61 | $lang["monobook_donate_url"] = "Se não, usar a seguinte URL para doações:"; 62 | 63 | //other stuff 64 | $lang["monobook_breadcrumbs_position"] = "Posição das páginas visitadas (se habilitado):"; 65 | $lang["monobook_youarehere_position"] = "Posição do 'Você está aqui' (se habilitado):"; 66 | $lang["monobook_cite_author"] = "Nome do autor em 'Cite este artigo':"; 67 | $lang["monobook_loaduserjs"] = "Carregar 'monobook/user/user.js'?"; 68 | 69 | -------------------------------------------------------------------------------- /lang/pt-br/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/pt-br/style.css -------------------------------------------------------------------------------- /lang/ru/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook in your environment, simply delete 2 | # it. Everything should be safe even if the files blocked by the following 3 | # Apache rules are accessable. 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/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Yuri Timofeev 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "Статья"; 35 | $lang["monobook_tab_discussion"] = "Дискуссия"; 36 | $lang["monobook_tab_userpage"] = "Персональная страница участника"; 37 | $lang["monobook_tab_specialpage"] = "Специальные страницы"; 38 | $lang["monobook_tab_mytalk"] = "Моя страница обсуждения"; 39 | $lang["monobook_tab_exportodt"] = "Экспорт: ODT"; 40 | $lang["monobook_tab_exportpdf"] = "Экспорт: PDF"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "Просмотры"; 44 | $lang["monobook_bar_personnaltools"] = "Персональные инструменты"; 45 | $lang["monobook_bar_navigation"] = "Навигация"; 46 | $lang["monobook_bar_toolbox"] = "Инструменты"; 47 | $lang["monobook_bar_inotherlanguages"] = "На других языках"; 48 | $lang["monobook_bar_search"] = "Поиск"; 49 | 50 | //buttons 51 | $lang["monobook_btn_go"] = "Перейти"; 52 | $lang["monobook_btn_search"] = "Поиск"; 53 | 54 | //default toolbox 55 | $lang["monobook_toolbxdef_whatlinkshere"] = "Страницы, ссылающиеся на эту"; 56 | $lang["monobook_toolbxdef_upload"] = "Загрузить файл"; 57 | $lang["monobook_toolbxdef_siteindex"] = "Индекс сайта"; 58 | $lang["monobook_toolbxdef_print"] = "Версия для печати"; 59 | $lang["monobook_toolboxdef_permanent"] = "Постоянная ссылка"; 60 | $lang["monobook_toolboxdef_cite"] = "Цитировать статью"; 61 | 62 | //cite this article 63 | $lang["monobook_cite_bibdetailsfor"] = "Библиографические данные для"; 64 | $lang["monobook_cite_pagename"] = "Имя страницы"; 65 | $lang["monobook_cite_author"] = "Автор"; 66 | $lang["monobook_cite_publisher"] = "Издатель"; 67 | $lang["monobook_cite_dateofrev"] = "Дата текущей ревизии"; 68 | $lang["monobook_cite_dateretrieved"] = "Дата доступа"; 69 | $lang["monobook_cite_permurl"] = "Постоянный URL"; 70 | $lang["monobook_cite_pageversionid"] = "ID версии страницы"; 71 | $lang["monobook_cite_citationstyles"] = "Стиль цитирования"; 72 | $lang["monobook_cite_checkstandards"] = "Не забудьте свериться с руководством по стилю, стандартным руководством или руководящими принципами для уточнения синтаксиса удовлетворяющего вашим потребностям"; 73 | $lang["monobook_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"; 74 | $lang["monobook_cite_retrieved"] = "Получено"; 75 | $lang["monobook_cite_from"] = "от"; 76 | $lang["monobook_cite_in"] = "В"; 77 | $lang["monobook_cite_accessed"] = "Доступно"; 78 | $lang["monobook_cite_cited"] = "Цитируется"; 79 | $lang["monobook_cite_lastvisited"] = "Последнее посещение"; 80 | $lang["monobook_cite_availableat"] = "Доступно в"; 81 | $lang["monobook_cite_discussionpages"] = "Страницы обсуждения DokuWiki"; 82 | $lang["monobook_cite_markup"] = "Разметка"; 83 | $lang["monobook_cite_result"] = "Результат"; 84 | $lang["monobook_cite_thisversion"] = "эта версия"; 85 | 86 | //other 87 | $lang["monobook_accessdenied"] = "Доступ запрещен"; 88 | $lang["monobook_fillplaceholder"] = "Заполните этот placeholder"; 89 | $lang["monobook_donate"] = "Пожертвовать"; 90 | $lang["monobook_mdtemplatefordw"] = "Шаблон monobook для DokuWiki"; 91 | $lang["monobook_recentchanges"] = "Последние изменения"; 92 | 93 | -------------------------------------------------------------------------------- /lang/ru/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/ru/style.css -------------------------------------------------------------------------------- /lang/sk/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/sk/style.css -------------------------------------------------------------------------------- /lang/zh-tw/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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-tw/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/zh-tw/lang.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author 呂理群 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "文章"; 35 | $lang["monobook_tab_discussion"] = "討論"; 36 | $lang["monobook_tab_userpage"] = "使用者頁面"; 37 | $lang["monobook_tab_specialpage"] = "特定頁面"; 38 | $lang["monobook_tab_mytalk"] = "我的對話頁"; 39 | $lang["monobook_tab_exportodt"] = "匯出成: ODT檔"; 40 | $lang["monobook_tab_exportpdf"] = "匯出成: PDF檔"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "檢視"; 44 | $lang["monobook_bar_personnaltools"] = "個人工具"; 45 | $lang["monobook_bar_navigation"] = "導覽"; 46 | $lang["monobook_bar_toolbox"] = "工具箱"; 47 | $lang["monobook_qrcodebox"] = "QR Code"; 48 | $lang["monobook_bar_inotherlanguages"] = "其他語言"; 49 | $lang["monobook_bar_search"] = "搜尋"; 50 | 51 | //buttons 52 | $lang["monobook_btn_go"] = "轉到指定頁"; 53 | $lang["monobook_btn_search"] = "搜尋"; 54 | 55 | //default toolbox 56 | $lang["monobook_toolbxdef_whatlinkshere"] = "相關連接"; 57 | $lang["monobook_toolbxdef_upload"] = "上傳檔案"; 58 | $lang["monobook_toolbxdef_siteindex"] = "網站地圖"; 59 | $lang["monobook_toolbxdef_print"] = "預覽列印"; 60 | $lang["monobook_toolboxdef_permanent"] = "永久鏈接"; 61 | $lang["monobook_toolboxdef_cite"] = "引用這篇文章"; 62 | 63 | //qr code box 64 | $lang["monobook_qrcodebox_qrcode"] = "QR Code"; 65 | $lang["monobook_qrcodebox_genforcurrentpage"] = "對當前頁面產生"; 66 | $lang["monobook_qrcodebox_urlofcurrentpage"] = "當前頁的 QR Code (行動裝置易存取)"; 67 | 68 | //cite this article 69 | $lang["monobook_cite_bibdetailsfor"] = "詳細書目"; 70 | $lang["monobook_cite_pagename"] = "頁面名稱"; 71 | $lang["monobook_cite_author"] = "作者"; 72 | $lang["monobook_cite_publisher"] = "發佈者"; 73 | $lang["monobook_cite_dateofrev"] = "本次修訂的日期"; 74 | $lang["monobook_cite_dateretrieved"] = "日期檢索"; 75 | $lang["monobook_cite_permurl"] = "永久網址"; 76 | $lang["monobook_cite_pageversionid"] = "頁面版本 ID"; 77 | $lang["monobook_cite_citationstyles"] = "引用樣式"; 78 | $lang["monobook_cite_checkstandards"] = "請記得確切的語法的風格,以檢查您的手冊、指南或其他的指導方針,以滿足您的需求"; 79 | $lang["monobook_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"; 80 | $lang["monobook_cite_retrieved"] = "檢索"; 81 | $lang["monobook_cite_from"] = "from"; 82 | $lang["monobook_cite_in"] = "In"; 83 | $lang["monobook_cite_accessed"] = "存取"; 84 | $lang["monobook_cite_cited"] = "Cited"; 85 | $lang["monobook_cite_lastvisited"] = "最後一次拜訪"; 86 | $lang["monobook_cite_availableat"] = "Available at"; 87 | $lang["monobook_cite_discussionpages"] = "DokuWiki talk pages"; 88 | $lang["monobook_cite_markup"] = "標記"; 89 | $lang["monobook_cite_result"] = "結果"; 90 | $lang["monobook_cite_thisversion"] = "這個版本"; 91 | 92 | //other 93 | $lang["monobook_accessdenied"] = "拒絕存取"; 94 | $lang["monobook_fillplaceholder"] = "請填寫或不啟用"; 95 | $lang["monobook_donate"] = "捐助"; 96 | $lang["monobook_mdtemplatefordw"] = "monobook template for DokuWiki"; 97 | $lang["monobook_recentchanges"] = "最新更新"; 98 | 99 | -------------------------------------------------------------------------------- /lang/zh-tw/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author 呂理群 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //user pages 34 | $lang["monobook_userpage"] = "使用「使用者頁面」嗎?"; 35 | $lang["monobook_userpage_ns"] = "如果要, 使用 ':namespace:' 為使用者頁面的 root:"; 36 | 37 | //discussion pages 38 | $lang["monobook_discuss"] = "使用「討論的標籤/網站」嗎?"; 39 | $lang["monobook_discuss_ns"] = "如果要, 使用 ':namespace:' 為討論頁面的 root:"; 40 | 41 | //site notice 42 | $lang["monobook_sitenotice"] = "顯示「行條式的網站注意事項」嗎?"; 43 | $lang["monobook_sitenotice_location"] = "如果要, 使用以下頁面當成行條式網站注意事項:"; 44 | $lang["monobook_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 'monobook_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de')."; 45 | 46 | //navigation 47 | $lang["monobook_navigation"] = "顯示「導覽」嗎?"; 48 | $lang["monobook_navigation_location"] = "如果要, 使用以下頁面當成導覽頁面:"; 49 | $lang["monobook_navigation_translate"] = "If yes and Translation plugin available: load language specific navigation?
The wiki page of the translated navigation(s) is [value of 'monobook_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de')."; 50 | 51 | //custom copyright notice 52 | $lang["monobook_copyright"] = "顯示「版權注意事項」嗎?"; 53 | $lang["monobook_copyright_default"] = "如果要, 使用預設的「版權注意事項」嗎?"; 54 | $lang["monobook_copyright_location"] = "如果不使用預設值, 使用以下頁面當成「版權注意事項」:"; 55 | $lang["monobook_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 'monobook_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de')."; 56 | 57 | //search form 58 | $lang["monobook_search"] = "顯示從哪搜尋嗎?"; 59 | 60 | //toolbox 61 | $lang["monobook_toolbox"] = "顯示「工具箱」嗎?"; 62 | $lang["monobook_toolbox_default"] = "如果要, 使用「預設工具箱」?"; 63 | $lang["monobook_toolbox_default_print"] = "如果「預設工具箱」已使用中, 則顯示「可列印版本的連結」?"; 64 | $lang["monobook_toolbox_location"] = "如果不是預設值, 使用以下頁面當成「工具箱位置」:"; 65 | 66 | //qr code box 67 | $lang["monobook_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?"; 68 | 69 | //donation link/button 70 | $lang["monobook_donate"] = "顯示捐助連接/按紐?"; 71 | $lang["monobook_donate_url"] = "使用以下捐助的 URL:"; 72 | 73 | //TOC 74 | $lang["monobook_toc_position"] = "Table of contents (TOC) position"; 75 | 76 | //other stuff 77 | $lang["monobook_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):"; 78 | $lang["monobook_youarehere_position"] = "Position of 'You are here' navigation (if enabled):"; 79 | $lang["monobook_cite_author"] = "在引用文章中顯示作者姓名:"; 80 | $lang["monobook_loaduserjs"] = "載入 'monobook/user/user.js'?"; 81 | $lang["monobook_closedwiki"] = "已關閉頁面 (most links/tabs/boxes are hidden until user is logged in)?"; 82 | 83 | -------------------------------------------------------------------------------- /lang/zh-tw/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/zh-tw/style.css -------------------------------------------------------------------------------- /lang/zh/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Rubyy 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //tabs 34 | $lang["monobook_tab_article"] = "文章"; 35 | $lang["monobook_tab_discussion"] = "讨论"; 36 | $lang["monobook_tab_userpage"] = "使用者页面"; 37 | $lang["monobook_tab_specialpage"] = "特定页面"; 38 | $lang["monobook_tab_mytalk"] = "我的对话页"; 39 | $lang["monobook_tab_exportodt"] = "导出为ODT文件"; 40 | $lang["monobook_tab_exportpdf"] = "导出为PDF文件"; 41 | 42 | //headlines for the different bars 43 | $lang["monobook_bar_views"] = "查看"; 44 | $lang["monobook_bar_personnaltools"] = "个人工具"; 45 | $lang["monobook_bar_navigation"] = "导航"; 46 | $lang["monobook_bar_toolbox"] = "工具箱"; 47 | $lang["monobook_qrcodebox"] = "二维码"; 48 | $lang["monobook_bar_inotherlanguages​​"] = "其他语言"; 49 | $lang["monobook_bar_search"] = "查找"; 50 | 51 | //buttons 52 | $lang["monobook_btn_go"] = "转到指定页"; 53 | $lang["monobook_btn_search"] = "查找"; 54 | 55 | //default toolbox 56 | $lang["monobook_toolbxdef_whatlinkshere"] = "相关链接"; 57 | $lang["monobook_toolbxdef_upload"] = "上传文件"; 58 | $lang["monobook_toolbxdef_siteindex"] = "网站地图"; 59 | $lang["monobook_toolbxdef_print"] = "预览打印"; 60 | $lang["monobook_toolboxdef_permanent"] = "永久链接"; 61 | $lang["monobook_toolboxdef_cite"] = "引用这篇文章"; 62 | 63 | //qr code box 64 | $lang["monobook_qrcodebox_qrcode"] = "二维码"; 65 | $lang["monobook_qrcodebox_genforcurrentpage"] = "生成当前页面的二维码"; 66 | $lang["monobook_qrcodebox_urlofcurrentpage"] = "当前页的二维码(QR Code)"; 67 | 68 | //cite this article 69 | $lang["monobook_cite_bibdetailsfor"] = "详细书目"; 70 | $lang["monobook_cite_pagename"] = "页面名称"; 71 | $lang["monobook_cite_author"] = "作者"; 72 | $lang["monobook_cite_publisher"] = "发布者"; 73 | $lang["monobook_cite_dateofrev"] = "本次修订的日期"; 74 | $lang["monobook_cite_dateretrieved"] = "日期检索"; 75 | $lang["monobook_cite_permurl"] = "永久网址"; 76 | $lang["monobook_cite_pageversionid"] = "页面版本ID"; 77 | $lang["monobook_cite_citationstyles"] = "引用样式"; 78 | $lang["monobook_cite_checkstandards"] = "请记得确切的语法的风格,以检查您的手册、指南或其他的指导方针,以满足您的需求"; 79 | $lang["monobook_cite_latexusepackagehint"] = "当使用往往能给予更好的Web地址格式的LaTeX包 (在开头的某个位置的\usepackage{url})的URL时, 这可能是首选"; 80 | $lang["monobook_cite_retrieved"] = "搜索"; 81 | $lang["monobook_cite_from"] = "来源"; 82 | $lang["monobook_cite_in"] = "在"; 83 | $lang["monobook_cite_accessed"] = "访问"; 84 | $lang["monobook_cite_cited"] = "被引用"; 85 | $lang["monobook_cite_lastvisited"] = "最后一次查看"; 86 | $lang["monobook_cite_availableat"] = "可用时间"; 87 | $lang["monobook_cite_discussionpages"] = "DokuWiki讨论页"; 88 | $lang["monobook_cite_markup"] = "标记"; 89 | $lang["monobook_cite_result"] = "结果"; 90 | $lang["monobook_cite_thisversion"] = "这个版本"; 91 | 92 | //other 93 | $lang["monobook_accessdenied"] = "拒绝访问"; 94 | $lang["monobook_fillplaceholder"] = "请填写这里,否则请不要启用本功能."; 95 | $lang["monobook_donate"] = "捐助"; 96 | $lang["monobook_mdtemplatefordw"] = "为Dokuwiki设计的Monobook模板"; 97 | $lang["monobook_recentchanges"] = "最近更新"; 98 | -------------------------------------------------------------------------------- /lang/zh/settings.php: -------------------------------------------------------------------------------- 1 | /lang.php 9 | * - /lib/tpl/monobook/lang//settings.php 10 | * If they are not existing, copy and translate the English ones. 11 | * 12 | * Don't forget to mail your translation to ARSAVA . 13 | * Thanks! :-D 14 | * 15 | * 16 | * LICENSE: This file is open source software (OSS) and may be copied under 17 | * certain conditions. See COPYING file for details or try to contact 18 | * the author(s) of this file in doubt. 19 | * 20 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 | * @author Rubyy 22 | * @link https://www.dokuwiki.org/template:monobook 23 | * @link https://www.dokuwiki.org/config:lang 24 | * @link https://www.dokuwiki.org/devel:configuration 25 | */ 26 | 27 | 28 | //check if we are running within the DokuWiki environment 29 | if (!defined("DOKU_INC")){ 30 | die(); 31 | } 32 | 33 | //user pages 34 | $lang["monobook_userpage"] = "开启用户页么?"; 35 | $lang["monobook_userpage_ns"] = "如果开启,使用 ':namespace' 作为用户页的根页面"; 36 | 37 | //discussion pages 38 | $lang["monobook_discuss"] = "开启讨论页么?"; 39 | $lang["monobook_discuss_ns"] = "如果开启,使用 ':namespace' 作为讨论页的根页面"; 40 | 41 | //site notice 42 | $lang["monobook_sitenotice"] = "显示'站点公告'么?"; 43 | $lang["monobook_sitenotice_location"] = "如果显示,使用 ':namespace' 作为站点公告页面"; 44 | $lang["monobook_sitenotice_translate"] = "如果开启了翻译插件,站点公告的不同语言翻译在:(例如':wiki:site_notice_en')."; 45 | 46 | //navigation 47 | $lang["monobook_navigation"] = "显示'导航栏'么?"; 48 | $lang["monobook_navigation_location"] = "如果显示,使用 ':namespace' 作为导航栏页面"; 49 | $lang["monobook_navigation_translate"] = "如果开启了翻译插件,导航栏的不同语言翻译在:(例如':wiki:site_navigation_en')."; 50 | 51 | //custom copyright notice 52 | $lang["monobook_copyright"] = "显示版权声明么?"; 53 | $lang["monobook_copyright_default"] = "如果显示,使用 ':namespace' 作为版权声明页面"; 54 | $lang["monobook_copyright_location"] = "如果不使用预设值, 使用以下页面作为版权声明页面"; 55 | $lang["monobook_copyright_translate"] = "如果开启了翻译插件,版权声明的的不同语言翻译在:(例如':wiki:site_copyright_en')."; 56 | 57 | //search form 58 | $lang["monobook_search"] = "显示查找栏么?"; 59 | 60 | //toolbox 61 | $lang["monobook_toolbox"] = "显示'工具箱'么?"; 62 | $lang["monobook_toolbox_default"] = "如果显示,使用预设工具箱页面么?"; 63 | $lang["monobook_toolbox_default_print"] = "如果使用预设工具箱页面,要显示'可打印版本'的链接么?"; 64 | $lang["monobook_toolbox_location"] = "如果不适用预设, 使用以下页面作为工具箱页面:"; 65 | 66 | //qr code box 67 | $lang["monobook_qrcodebox"] = "显示当前页面URL生成的二维码么(对于手机浏览更方便)?"; 68 | 69 | //donation link/button 70 | $lang["monobook_donate"] = "显示捐助按钮么?"; 71 | $lang["monobook_donate_url"] = "使用以下捐助URL:"; 72 | 73 | //TOC 74 | $lang["monobook_toc_position"] = "内容表(TOC)的位置"; 75 | 76 | //other stuff 77 | $lang["monobook_breadcrumbs_position"] = "'我的足迹'导航的位置:"; 78 | $lang["monobook_youarehere_position"] = "'当前位置'导航的位置:"; 79 | $lang["monobook_cite_author"] = "在引用文章中显示作者姓名:"; 80 | $lang["monobook_loaduserjs"] = "是否载入'monobook/user/user.js'?"; 81 | $lang["monobook_closedwiki"] = "是否为封闭Wiki(大多数页面对于未登录的游客不可显示)?"; 82 | 83 | -------------------------------------------------------------------------------- /lang/zh/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/lang/zh/style.css -------------------------------------------------------------------------------- /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 "monobook 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 "monobook 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-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/apple-touch-icon.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/bullet.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/buttonshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/buttonshadow.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/closed-rtl.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/closed.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/closed.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/email.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/external-link.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/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-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/inputshadow.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/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 "/monobook/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 "/monobook/user/" 6 | abspeichern. Siehe README für weiter Details. 7 | -------------------------------------------------------------------------------- /static/3rd/dokuwiki/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/open.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/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-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/resizecol.png -------------------------------------------------------------------------------- /static/3rd/dokuwiki/tocdot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/tocdot2.gif -------------------------------------------------------------------------------- /static/3rd/dokuwiki/unc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/dokuwiki/unc.png -------------------------------------------------------------------------------- /static/3rd/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/3rd/monobook/IE50Fixes.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** IE5.0 Fix Stylesheet 3 | */ 4 | 5 | #column-content { 6 | margin: 0 !important; 7 | float: none; 8 | } 9 | #column-content #content { 10 | margin-top: 3em; 11 | height: 1%; 12 | } 13 | #column-one { 14 | position: absolute; 15 | overflow: visible; 16 | top: 0; 17 | left: 0; 18 | z-index: 3; 19 | } 20 | #footer { 21 | margin: 0 0 0 13.6em; 22 | } 23 | 24 | /* IE 5 & 5.5 interpret keyword sizes one off */ 25 | body { font-size: xx-small; } 26 | /* 27 | ** the edit tabs 28 | */ 29 | #p-cactions li { 30 | float: left; 31 | padding-top: 0; 32 | padding-bottom: 0 !important; 33 | height: 0.9em; 34 | } 35 | #p-cactions li a { 36 | display: block; 37 | padding-bottom: 0.045em; 38 | } 39 | #p-cactions li.selected a { 40 | padding-bottom: 0.17em; 41 | } 42 | #p-cactions li a:hover { 43 | padding-bottom: 0.17em; 44 | } 45 | /* 5.0 doesn't like the background icon for external links and user */ 46 | .link-external, 47 | .external { 48 | background: none; 49 | padding: 0; 50 | } 51 | #p-personal ul { float: right } 52 | #p-personal li { float: left } 53 | li#pt-userpage, 54 | li#pt-anonuserpage, 55 | li#pt-login, 56 | li#pt-logout { 57 | background: none; 58 | padding-left: none; 59 | } 60 | .visualClear { 61 | width: 100%; 62 | height: 0px; 63 | padding:0; 64 | margin: 0; 65 | } 66 | .firstHeading { margin-bottom: .3em; } 67 | /*div{ border:1px solid Red !important;}*/ 68 | -------------------------------------------------------------------------------- /static/3rd/monobook/IE55Fixes.css: -------------------------------------------------------------------------------- 1 | /* IE5.5/win- only fixes */ 2 | 3 | #column-content { 4 | float: none; 5 | margin-left: 0; 6 | height: 1%; 7 | } 8 | #column-content #content { 9 | position: relative; 10 | z-index: 5; 11 | margin-left: 12.2em; 12 | margin-top: 3em; 13 | height: 1%; 14 | } 15 | #column-one { 16 | position: absolute; 17 | top: 0; 18 | left: 0; 19 | z-index: 4; 20 | width: 100%; 21 | } 22 | #footer { 23 | margin-left: 13.6em; 24 | border-left: 1px solid #fabd23; 25 | } 26 | 27 | /*#bodyContent div, 28 | #bodyContent pre { overflow: auto; }*/ 29 | 30 | #p-personal { padding-bottom: .1em; } 31 | 32 | body { font-size: xx-small; } 33 | 34 | #p-cactions { 35 | width: 76% !important; 36 | z-index: 3 !important; 37 | float: none; 38 | } 39 | #p-cactions li { 40 | padding-bottom: 0 !important; 41 | border: none; 42 | background-color: transparent; 43 | cursor: default; 44 | float: none !important; 45 | } 46 | #p-cactions li a { 47 | display: inline-block !important; 48 | vertical-align: top; 49 | padding-bottom: 0; 50 | border: solid #aaa; 51 | border-width: 1px 1px 0; 52 | } 53 | #p-cactions li.selected a { 54 | border-color: #fabd23; 55 | padding-bottom: 0.17em; 56 | } 57 | #p-cactions li a:hover { 58 | padding-bottom: 0.17em; 59 | } 60 | #p-navigation a { 61 | display: inline-block; 62 | width: 100%; 63 | } 64 | .portlet { 65 | overflow: hidden; 66 | } 67 | #bodyContent a.external { 68 | background: url(external.png) center right no-repeat; 69 | padding-right: 13px; 70 | } 71 | /* show the hand */ 72 | #p-logo a, 73 | #p-logo a:hover { 74 | cursor: pointer; 75 | } 76 | .visualClear { 77 | width: 90%; 78 | height: 1px; 79 | padding: 0; 80 | margin: 0; 81 | } 82 | 83 | #editform { 84 | width: 100%; 85 | } 86 | -------------------------------------------------------------------------------- /static/3rd/monobook/IE60Fixes.css: -------------------------------------------------------------------------------- 1 | /* ATTENTION: This file was edited for the "monobook template for DokuWiki". 2 | - "#catlinks" was replaced with ".catlinks" 3 | See README for details. */ 4 | 5 | 6 | /* 6.0 - only fixes */ 7 | /* content area */ 8 | /* workaround for various ie float bugs */ 9 | #column-content { 10 | float: none; 11 | margin-left: 0; 12 | height: 1%; 13 | } 14 | #column-content #content { 15 | margin-left: 12.2em; 16 | margin-top: 3em; 17 | height: 1%; 18 | } 19 | #column-one { 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | z-index: 4; 24 | } 25 | #footer { 26 | margin-left: 13.6em; 27 | border-left: 1px solid #fabd23; 28 | } 29 | 30 | /* the tabs */ 31 | 32 | #p-cactions { 33 | z-index: 3; 34 | } 35 | 36 | #p-cactions li { 37 | padding-bottom: 0 !important; 38 | border: none; 39 | background-color: transparent; 40 | cursor: default; 41 | float: none !important; 42 | } 43 | #p-cactions li a { 44 | display: inline-block !important; 45 | vertical-align: top; 46 | padding-bottom: 0; 47 | border: solid #aaa; 48 | border-width: 1px 1px 0; 49 | } 50 | #p-cactions li.selected a { 51 | border-color: #fabd23; 52 | padding-bottom: 0.17em; 53 | } 54 | #p-cactions li a:hover { 55 | padding-bottom: 0.17em; 56 | } 57 | #p-navigation a { 58 | display: inline-block; 59 | width: 100%; 60 | } 61 | #portal-personaltools { 62 | padding-bottom: 0.1em; 63 | } 64 | #bodyContent a.external { 65 | background: url(external.png) center right no-repeat; 66 | padding-right: 13px; 67 | } 68 | 69 | /* show the hand */ 70 | #p-logo a, 71 | #p-logo a:hover { 72 | cursor: pointer; 73 | } 74 | div.visualClear { 75 | width:100%; 76 | line-height: 0; 77 | } 78 | textarea { 79 | width: 96%; 80 | } 81 | 82 | div.editsection, 83 | .catlinks, 84 | div.tright, 85 | div.tleft { 86 | position: relative; 87 | } 88 | /*{ border:1px solid Red !important;}*/ 89 | 90 | -------------------------------------------------------------------------------- /static/3rd/monobook/IE70Fixes.css: -------------------------------------------------------------------------------- 1 | /* 7.0 - only fixes */ 2 | /* content area */ 3 | /* workaround for various ie float bugs */ 4 | 5 | /* This bit is needed to make links clickable... WTF */ 6 | #column-content #content { 7 | margin-left: 12.2em; 8 | margin-top: 3em; 9 | height: 1%; 10 | } 11 | 12 | .rtl #column-one { 13 | /* For some reason it tries to inherit the padding-top into every div, 14 | * and I can't figure out how to get it back off. 15 | */ 16 | padding-top: 0; 17 | } 18 | .rtl #column-one #p-navigation { 19 | margin-top: 160px; 20 | } 21 | 22 | /* the tabs */ 23 | 24 | #p-cactions { 25 | z-index: 3; 26 | } 27 | 28 | 29 | #p-cactions li { 30 | padding-bottom: 0 !important; 31 | border: none; 32 | background-color: transparent; 33 | cursor: default; 34 | float: none !important; 35 | } 36 | 37 | #p-cactions li a { 38 | display: inline-block !important; 39 | vertical-align: top; 40 | padding-bottom: 0; 41 | border: solid #aaa; 42 | border-width: 1px 1px 0; 43 | } 44 | #p-cactions li.selected a { 45 | border-color: #fabd23; 46 | padding-bottom: 0.17em; 47 | } 48 | #p-cactions li a:hover { 49 | padding-bottom: 0.17em; 50 | } 51 | #p-navigation a { 52 | display: inline-block; 53 | width: 100%; 54 | } 55 | #portal-personaltools { 56 | padding-bottom: 0.1em; 57 | } 58 | textarea { 59 | width: 96%; 60 | } 61 | 62 | /* 63 | div.editsection, 64 | #catlinks, 65 | div.tright, 66 | div.tleft { 67 | position: relative; 68 | } 69 | */ 70 | 71 | 72 | #footer li { 73 | /* Work around bug with inline
  • tags with right margins and nowrap */ 74 | margin-right: 0; 75 | } 76 | -------------------------------------------------------------------------------- /static/3rd/monobook/IEMacFixes.css: -------------------------------------------------------------------------------- 1 | /* IE/Mac only fix stylesheet, imported from main.css */ 2 | #portal-column-content { 3 | margin: 0 0 4.8em 0; 4 | float: none; 5 | } 6 | #portal-column-content #content { 7 | z-index: 0; 8 | } 9 | #portal-column-one { 10 | position: absolute; 11 | top: 0; 12 | left: 0; 13 | z-index: 3; 14 | } 15 | #portal-footer { 16 | margin-left: 12em; 17 | } 18 | /* 19 | #portlet-contentViews { 20 | top: 0.6em !important; 21 | left: 14.5em !important; 22 | } 23 | */ 24 | #portlet-contentViews li, 25 | #portlet-contentViews .selected { 26 | border: none !important; 27 | } 28 | #portlet-contentViews li a { 29 | border: 1px solid #aaaaaa; 30 | border-bottom: none; 31 | } 32 | #portlet-contentViews li.selected a { 33 | border: 1px solid #fabd23; 34 | border-bottom: none; 35 | } 36 | /* no background images */ 37 | li#personaltools-userpage, 38 | li#personaltools-login/* */ { 39 | background: none; 40 | padding-left: none; 41 | } 42 | #mactest { 43 | color: green; 44 | } 45 | -------------------------------------------------------------------------------- /static/3rd/monobook/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/bullet.gif -------------------------------------------------------------------------------- /static/3rd/monobook/discussionitem_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/discussionitem_icon.gif -------------------------------------------------------------------------------- /static/3rd/monobook/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/external.png -------------------------------------------------------------------------------- /static/3rd/monobook/file_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/file_icon.gif -------------------------------------------------------------------------------- /static/3rd/monobook/headbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/headbg.jpg -------------------------------------------------------------------------------- /static/3rd/monobook/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/3rd/monobook/lock_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/lock_icon.gif -------------------------------------------------------------------------------- /static/3rd/monobook/mail_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/mail_icon.gif -------------------------------------------------------------------------------- /static/3rd/monobook/news_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/news_icon.png -------------------------------------------------------------------------------- /static/3rd/monobook/rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Right-to-left fixes for MonoBook. 3 | Places sidebar on right, tweaks various alignment issues. 4 | 5 | Works mostly ok nicely on Safari 1.2.1; fine in Mozilla. 6 | 7 | Safari bugs (1.2.1): 8 | * Tabs are still appearing in left-to-right order. (Try after localizing) 9 | 10 | Opera bugs (7.23 linux): 11 | * Some bits of ltr text (sidebar box titles) have forward and backward versions overlapping each other 12 | 13 | IE/mac bugs: 14 | * The thing barfs on Hebrew and Arabic anyway, so no point testing. 15 | 16 | Missing features due to lack of support: 17 | * external link icons 18 | 19 | To test: 20 | * Opera6 21 | * IE 5.0 22 | * etc 23 | 24 | */ 25 | body { 26 | direction: rtl; 27 | /* unicode-bidi: bidi-override;*/ 28 | unicode-bidi: embed; 29 | } 30 | #column-content { 31 | margin: 0 -12.2em 0 0; 32 | float: left; 33 | } 34 | #column-content #content{ 35 | margin-left: 0; 36 | margin-right: 12.2em; 37 | border-right: 1px solid #aaaaaa; 38 | border-left: none; 39 | } 40 | html>body .portlet { 41 | float: right; 42 | clear: right; 43 | } 44 | /* recover IEMac (might be fine with the float, but usually it's close to IE */ 45 | *>body .portlet { 46 | float: none; 47 | clear: none; 48 | } 49 | .pBody { 50 | padding-right: 0.8em; 51 | padding-left: 0.5em; 52 | } 53 | 54 | /* Fix alignment */ 55 | .documentByLine, 56 | .portletDetails, 57 | .portletMore, 58 | #p-personal { 59 | text-align: left; 60 | } 61 | 62 | div div.thumbcaption { 63 | text-align: right; 64 | } 65 | 66 | div.magnify, 67 | #div.townBox, 68 | #p-logo { 69 | left: auto; 70 | right: 0; 71 | } 72 | #p-personal { 73 | left: auto; 74 | right: 0; 75 | } 76 | 77 | #p-cactions { 78 | left: auto; 79 | right: 11.5em; 80 | padding-left: 0; 81 | padding-right: 1em; 82 | } 83 | #p-cactions li { 84 | margin-left: 0.3em; 85 | margin-right: 0; 86 | float: right; 87 | } 88 | * html #p-cactions li a { 89 | display: block; 90 | padding-bottom: 0; 91 | } 92 | * html #p-cactions li a:hover { 93 | padding-bottom: 0.2em; 94 | } 95 | /* offsets to distinguish the tab groups */ 96 | li#ca-talk { 97 | margin-right: auto; 98 | margin-left: 1.6em; 99 | } 100 | li#ca-watch,li#ca-unwatch { 101 | margin-right: 1.6em !important; 102 | } 103 | 104 | /* Fix margins for non-css2 browsers */ 105 | /* top right bottom left */ 106 | 107 | ul { 108 | margin-left: 0; 109 | margin-right: 1.5em; 110 | } 111 | ol { 112 | margin-left: 0; 113 | margin-right: 2.4em; 114 | } 115 | dd { 116 | margin-left: 0; 117 | margin-right: 1.6em; 118 | } 119 | #contentSub { 120 | margin-right: 1em; 121 | margin-left: 0; 122 | } 123 | .tocindent { 124 | margin-left: 0; 125 | margin-right: 2em; 126 | } 127 | div.tright, div.floatright, table.floatright { 128 | clear: none; 129 | } 130 | div.tleft, div.floatleft, table.floatleft { 131 | clear: left; 132 | } 133 | div.townBox { 134 | margin-left: 0; 135 | margin-right: 1em; 136 | } 137 | div.townBox dl dd { 138 | margin-left: 0; 139 | margin-right: 1.1em; 140 | } 141 | #p-personal li { 142 | margin-left: 0; 143 | margin-right: 1em; 144 | } 145 | 146 | li#ca-talk, 147 | li#ca-watch { 148 | margin-right: auto; 149 | margin-left: 1.6em; 150 | } 151 | 152 | #p-personal li { 153 | float: left; 154 | } 155 | /* Fix link icons */ 156 | .external { 157 | padding: 0 !important; 158 | background: none !important; 159 | } 160 | #footer { 161 | clear: both; 162 | } 163 | * html #footer { 164 | margin-left: 0; 165 | margin-right: 13.6em; 166 | border-left: 0; 167 | border-right: 1px solid #fabd23; 168 | } 169 | * html #column-content { 170 | float: none; 171 | margin-left: 0; 172 | margin-right: 0; 173 | } 174 | * html #column-content #content { 175 | margin-left: 0; 176 | margin-top: 3em; 177 | } 178 | * html #column-one { right: 0; } 179 | 180 | /* js pref toc */ 181 | 182 | #preftoc { 183 | margin-right: 1em; 184 | } 185 | 186 | .errorbox, .successbox, #preftoc li, .prefsection fieldset { 187 | float: right; 188 | } 189 | 190 | .prefsection { 191 | padding-right: 2em; 192 | } 193 | 194 | /* workaround for moz bug, displayed bullets on left side */ 195 | 196 | #toc ul { 197 | text-align: right; 198 | } 199 | 200 | #toc ul ul { 201 | margin: 0 2em 0 0; 202 | } 203 | 204 | input#wpSave, input#wpDiff { 205 | margin-right: 0; 206 | margin-left: .33em; 207 | } 208 | 209 | #userlogin { 210 | float: right; 211 | margin: 0 0 1em 3em; 212 | } 213 | -------------------------------------------------------------------------------- /static/3rd/monobook/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/3rd/monobook/user.gif -------------------------------------------------------------------------------- /static/3rd/wikipedia/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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 print CSS, have a look at the README of this 6 | template and "/user/print.css". You have been warned! 7 | *****************************************************************************/ 8 | 9 | html { 10 | background-color: #fff; 11 | } 12 | body { 13 | font: normal 80%/1.4 sans-serif; 14 | } 15 | div#content .dokuwiki h1, 16 | div#content .dokuwiki h2, 17 | div#content .dokuwiki h3, 18 | div#content .dokuwiki h4, 19 | div#content .dokuwiki h5, 20 | div#content .dokuwiki h6 { 21 | border-bottom: 0 none; 22 | } 23 | div#content .dokuwiki h1, 24 | div#content .dokuwiki h2 { 25 | font-weight: bold; 26 | } 27 | div#content .dokuwiki h1 { 28 | font-weight: 135%; 29 | } 30 | div#content .dokuwiki h2 { 31 | font-weight: 130%; 32 | } 33 | div#content .dokuwiki h3, 34 | div#content .dokuwiki h4, 35 | div#content .dokuwiki h5, 36 | div#content .dokuwiki h6 { 37 | font-weight: normal; 38 | text-decoration: underline; 39 | } 40 | 41 | /* define the "noprint" class and hide some elements */ 42 | .noprint { 43 | display: none; 44 | } 45 | .toc, 46 | #dw__toc { 47 | display: none; 48 | } 49 | 50 | /* special pages background: media/cite etc. */ 51 | .ns-2 #content, 52 | .ns-2 #p-cactions li, 53 | .ns-2 #p-cactions li a { 54 | background: transparent none; 55 | } 56 | 57 | /* special pages background: discussion */ 58 | .ns-1 #content, 59 | .ns-1 #p-cactions li, 60 | .ns-1 #p-cactions li a { 61 | background: transparent none; 62 | } 63 | 64 | /* remove interwiki link icons */ 65 | div.dokuwiki a.interwiki { 66 | background: transparent none; 67 | padding: 0; 68 | } 69 | 70 | /* quotes */ 71 | div#content .dokuwiki blockquote { 72 | border-left: 2px solid __border__; 73 | padding-left: 3px; 74 | margin-left: 0.2em; 75 | } 76 | 77 | /* preformatted stuff, source code */ 78 | div#content .dokuwiki code, 79 | div#content .dokuwiki pre, 80 | div#content .dokuwiki pre.code, 81 | div#content .dokuwiki pre.file { 82 | font-size: 100%; 83 | } 84 | div#content .dokuwiki pre, 85 | div#content .dokuwiki pre.code, 86 | div#content .dokuwiki pre.file { 87 | line-height: 1.2em; 88 | background-color: __background_other__; 89 | } 90 | div#content .dokuwiki dl.file, 91 | div#content .dokuwiki dl.file dd, 92 | div#content .dokuwiki dl.file dt { 93 | margin-left: 0; 94 | } 95 | div#content .dokuwiki dl.file dt { 96 | background-color: __background_other__; 97 | } 98 | 99 | /* tag plugin: hide tag row */ 100 | div.tags { 101 | display: none; 102 | } 103 | 104 | /* pagelist plugin: listing tables */ 105 | div#content .dokuwiki table.ul, 106 | div#content .dokuwiki table.ul tr, 107 | div#content .dokuwiki table.ul td { 108 | border: 0 none; 109 | } 110 | div#content .dokuwiki table.ul td.date, 111 | div#content .dokuwiki table.ul td.user { 112 | display: none; 113 | } 114 | div#content .dokuwiki table.ul ul, 115 | div#content .dokuwiki table.ul ol, 116 | div#content .dokuwiki table.ul li { 117 | margin-top: 0; 118 | margin-bottom: 0; 119 | padding-top: 0; 120 | padding-bottom: 0; 121 | } 122 | 123 | /* wrap plugin: modify some inline styles */ 124 | div#content .dokuwiki span.wrap_box, 125 | div#content .dokuwiki span.wrap_danger, 126 | div#content .dokuwiki span.wrap_warning, 127 | div#content .dokuwiki span.wrap_caution, 128 | div#content .dokuwiki span.wrap_notice, 129 | div#content .dokuwiki span.wrap_safety, 130 | div#content .dokuwiki span.wrap_info, 131 | div#content .dokuwiki span.wrap_important, 132 | div#content .dokuwiki span.wrap_alert, 133 | div#content .dokuwiki span.wrap_tip, 134 | div#content .dokuwiki span.wrap_help, 135 | div#content .dokuwiki span.wrap_todo, 136 | div#content .dokuwiki span.wrap_download { 137 | border-top: 0 none; 138 | border-right: 0 none; 139 | border-left: 0 none; 140 | border-bottom: 1px dashed; 141 | padding: 0; 142 | } 143 | -------------------------------------------------------------------------------- /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 print 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 - Feel free to send patches */ 10 | -------------------------------------------------------------------------------- /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 | 19 | div.dokuwiki button.toolbutton { 20 | height: 22px\9; /* fix MSIE 6, 7, 8 */ 21 | } 22 | /* media manager popup */ 23 | * html.popup #media__manager { 24 | height: 465px; /* fix MSIE 6 */ 25 | } 26 | /* MSIE 7: renders the anchor in headlines in two lines?! */ 27 | *:first-child+html div#content .dokuwiki h1 a, 28 | *:first-child+html div#content .dokuwiki h2 a, 29 | *:first-child+html div#content .dokuwiki h3 a { 30 | display: inline-block; 31 | } 32 | *:first-child+html div#content .dokuwiki h1 a { 33 | padding-bottom: 2px; 34 | } 35 | *:first-child+html div#content .dokuwiki h2 a, 36 | *:first-child+html div#content .dokuwiki h3 a { 37 | padding-bottom: 1px; 38 | } 39 | /* MSIE 7: media manager */ 40 | *:first-child+html #mediamanager__page .panelContent li { 41 | list-style: none !important; 42 | list-style-image: none !important; 43 | } 44 | *:first-child+html #mediamanager__page .panelContent ul.thumbs dl { 45 | margin-left: 0; 46 | } 47 | /* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */ 48 | textarea, 49 | .dokuwiki #dw__editform textarea.edit { 50 | /* fix scrollbar flickers in IE8 standards mode, see 51 | http://j.mp/bHExde and http://j.mp/ad7Abj for details */ 52 | width: 450px\9; 53 | max-width: 100%\9; 54 | min-width: 100%\9; 55 | /* overwrite original monobook with fixes for IE6/7 */ 56 | #width: 100% !important; 57 | border: auto; 58 | } 59 | /* MSIE 6/7: admin menu icons */ 60 | .dokuwiki ul.admin_tasks li div.li { 61 | #font-weight: bold; 62 | #border-left: 1px dashed __background__; /* invisible border triggers IE to render the stuff */ 63 | } 64 | /* MSIE 6/7: take care about hiding the bottom border when tab is selected */ 65 | #p-cactions .selected, 66 | #p-cactions .selected a, 67 | #p-cactions .selected span { 68 | #padding-bottom: 0.17em; 69 | } 70 | 71 | -------------------------------------------------------------------------------- /static/img/button-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-css.png -------------------------------------------------------------------------------- /static/img/button-donate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-donate.gif -------------------------------------------------------------------------------- /static/img/button-dw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-dw.png -------------------------------------------------------------------------------- /static/img/button-monobook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-monobook.png -------------------------------------------------------------------------------- /static/img/button-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-qrcode.png -------------------------------------------------------------------------------- /static/img/button-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/static/img/button-rss.png -------------------------------------------------------------------------------- /static/img/button-xhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsava/dokuwiki-template-monobook/b59e0c3c3fad25741797e0f438f7a8ffe64d8544/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 | -------------------------------------------------------------------------------- /template.info.txt: -------------------------------------------------------------------------------- 1 | base monobook 2 | author ARSAVA 3 | email dokuwiki@dev.arsava.com 4 | date 2014-02-09 5 | name monobook template 6 | desc monobook brings you the traditional MediaWiki/Wikipedia look and feel for DokuWiki. 7 | url https://www.dokuwiki.org/template:monobook 8 | -------------------------------------------------------------------------------- /user/.htaccess: -------------------------------------------------------------------------------- 1 | #Note: If this file prevents running monobook 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:monobook 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 | $_monobook_boxes["example1"]["headline"] = "Hello World!"; 41 | $_monobook_boxes["example1"]["xhtml"] = "DokuWiki with monobook... rules!"; 42 | 43 | 44 | 45 | //examples: uncomment to see what is happening 46 | 47 | /* 48 | $_monobook_boxes["example2"]["headline"] = "Some links"; 49 | $_monobook_boxes["example2"]["xhtml"] = ""; 54 | */ 55 | 56 | 57 | /* 58 | $_monobook_boxes["example3"]["headline"] = "Buttons"; 59 | $_monobook_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 | $_monobook_boxes["example4"]["headline"] = "wiki:your_page_here"; 67 | $_monobook_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:monobook 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 | $_monobook_btns["valid_css"]["img"] = DOKU_TPL."static/img/button-css.png"; 44 | $_monobook_btns["valid_css"]["href"] = "http://jigsaw.w3.org/css-validator/check/referer"; 45 | $_monobook_btns["valid_css"]["width"] = 80; 46 | $_monobook_btns["valid_css"]["height"] = 15; 47 | $_monobook_btns["valid_css"]["title"] = "Valid CSS"; 48 | $_monobook_btns["valid_css"]["nofollow"] = true; 49 | 50 | 51 | //examples: uncomment to see what is happening 52 | 53 | /* 54 | //button using all attributes 55 | $_monobook_btns["example1"]["img"] = DOKU_TPL."user/img/yourButtonHere.png"; 56 | $_monobook_btns["example1"]["href"] = "http://www.example.com"; 57 | $_monobook_btns["example1"]["width"] = 80; 58 | $_monobook_btns["example1"]["height"] = 15; 59 | $_monobook_btns["example1"]["title"] = "Example button"; 60 | $_monobook_btns["example1"]["nofollow"] = false; 61 | */ 62 | 63 | 64 | /* 65 | //button using only mandatory attributes 66 | $_monobook_btns["example2"]["img"] = DOKU_TPL."user/img/yourButtonHere.png"; 67 | $_monobook_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/tabs.php.dist: -------------------------------------------------------------------------------- 1 | 26 | * @link https://www.dokuwiki.org/template:monobook 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 tabs will be rendered in the order they were defined. Means: first 38 | // tab will be rendered first, last tab will be rendered at last. 39 | 40 | 41 | //text 42 | $_monobook_tabs["tab-textexample"]["text"] = "Example"; 43 | 44 | 45 | //examples: uncomment to see what is happening 46 | 47 | /* 48 | //Recent Changes (thanks to Stefan Riemer for this) 49 | //To get some space between this and the other tabs, you may add the following 50 | //additional CSS to /monobook/user/screen.css: 51 | // li#tab-recent { 52 | // margin-left: 1.6em; 53 | // } 54 | if (!empty($conf["recent_days"])){ 55 | $_monobook_tabs["tab-recent"]["text"] = $lang["btn_recent"]; //language comes from DokuWiki core 56 | $_monobook_tabs["tab-recent"]["href"] = wl("", array("do" => "recent"), false, "&"); 57 | $_monobook_tabs["tab-recent"]["nofollow"] = true; 58 | } 59 | */ 60 | 61 | 62 | /* 63 | //(un)subscribe namespace tab 64 | if (!empty($conf["useacl"]) && 65 | !empty($conf["subscribers"]) && 66 | !empty($loginname)){ //$loginname was defined within main.php 67 | if (empty($INFO["subscribedns"])){ //$INFO comes from DokuWiki core 68 | $_monobook_tabs["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "subscribens"), false, "&"); 69 | $_monobook_tabs["ca-watchns"]["text"] = $lang["btn_subscribens"]; //language comes from DokuWiki core 70 | }else{ 71 | $_monobook_tabs["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribens"), false, "&"); 72 | $_monobook_tabs["ca-watchns"]["text"] = $lang["btn_unsubscribens"]; //language comes from DokuWiki core 73 | } 74 | } 75 | */ 76 | 77 | 78 | /* 79 | //link 80 | $_monobook_tabs["tab-urlexample"]["text"] = "Creator"; 81 | $_monobook_tabs["tab-urlexample"]["href"] = "https://andreashaerter.com/"; 82 | $_monobook_tabs["tab-urlexample"]["nofollow"] = true; 83 | */ 84 | 85 | 86 | /* 87 | //link with rel="nofollow", see http://www.wikipedia.org/wiki/Nofollow for info 88 | $_monobook_tabs["tab-urlexample2"]["text"] = "Search the web"; 89 | $_monobook_tabs["tab-urlexample2"]["href"] = "https://www.google.com/search?q=dokuwiki"; 90 | $_monobook_tabs["tab-urlexample2"]["nofollow"] = true; 91 | */ 92 | 93 | 94 | /* 95 | //internal wiki link 96 | $_monobook_tabs["tab-wikilinkexample"]["text"] = "Home"; 97 | $_monobook_tabs["tab-wikilinkexample"]["wiki"] = ":start"; 98 | $_monobook_tabs["tab-wikilinkexample"]["accesskey"] = "H"; //accesskey is optional 99 | */ 100 | 101 | -------------------------------------------------------------------------------- /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:monobook 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 | "monobook_loaduserjs" (->"Load 'monobook/user/user.js'?") in the 16 | DokuWiki Config Manager! Otherwise, any changes to this file 17 | won't have any effect! 18 | */ 19 | --------------------------------------------------------------------------------