はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#Note: If this file prevents running vector in your environment, simply delete
# it. Everything should be safe even if the files blocked by the following
# Apache rules are accessible.
# The reason for protecting these files is to to keep searchengines/foo
# away from indexing files containing version information, names and/or not
# necessarily public template parts by default.
Deny from all
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
+111
View File
@@ -0,0 +1,111 @@
<?php
/**
* English language for the "vector" DokuWiki template
*
* If your language is not/only partially translated or you found an error/typo,
* have a look at the following files:
* - /lib/tpl/vector/lang/<your lang>/lang.php
* - /lib/tpl/vector/lang/<your lang>/settings.php
* If they are not existing, copy and translate the English ones (hint: looking
* at <http://[your lang].wikipedia.org> might be helpful).
*
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
* Thanks! :-D
*
*
* LICENSE: This file is open source software (OSS) and may be copied under
* certain conditions. See COPYING file for details or try to contact
* the author(s) of this file in doubt.
*
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
* @author ARSAVA <dokuwiki@dev.arsava.com>
* @link https://www.dokuwiki.org/template:vector
* @link https://www.dokuwiki.org/config:lang
* @link https://www.dokuwiki.org/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//tabs, personal tools and special links
$lang["vector_article"] = "Article";
$lang["vector_discussion"] = "Discussion";
$lang["vector_read"] = "Read";
$lang["vector_edit"] = "Edit";
$lang["vector_create"] = "Create";
$lang["vector_userpage"] = "User Page";
$lang["vector_specialpage"] = "Special Pages";
$lang["vector_mytalk"] = "My Talk";
$lang["vector_exportodt"] = "Export: ODT";
$lang["vector_exportpdf"] = "Export: PDF";
$lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
$lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
$lang["vector_translations"] = "Languages";
//headlines for the different bars and boxes
$lang["vector_navigation"] = "Navigation";
$lang["vector_toolbox"] = "Tools";
$lang["vector_exportbox"] = "Print/export";
$lang["vector_qrcodebox"] = "QR Code";
$lang["vector_inotherlanguages"] = "Languages";
$lang["vector_printexport"] = "Print/export";
$lang["vector_personnaltools"] = "Personal Tools";
//buttons
$lang["vector_btn_go"] = "Go";
$lang["vector_btn_search"] = "Search";
$lang["vector_btn_search_title"] = "Search for this text";
//exportbox ("print/export")
$lang["vector_exportbxdef_print"] = "Printable version";
$lang["vector_exportbxdef_downloadodt"] = "Download as ODT";
$lang["vector_exportbxdef_downloadpdf"] = "Download as PDF";
//default toolbox
$lang["vector_toolbxdef_whatlinkshere"] = "What links here";
$lang["vector_toolbxdef_upload"] = "Upload file";
$lang["vector_toolbxdef_siteindex"] = "Sitemap";
$lang["vector_toolboxdef_permanent"] = "Permanent link";
$lang["vector_toolboxdef_cite"] = "Cite this page";
//qr code box
$lang["vector_qrcodebox_qrcode"] = "QR Code";
$lang["vector_qrcodebox_genforcurrentpage"] = "generated for current page";
$lang["vector_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)";
//cite this article
$lang["vector_cite_bibdetailsfor"] = "Bibliographic details for";
$lang["vector_cite_pagename"] = "Page name";
$lang["vector_cite_author"] = "Author";
$lang["vector_cite_publisher"] = "Publisher";
$lang["vector_cite_dateofrev"] = "Date of this revision";
$lang["vector_cite_dateretrieved"] = "Date retrieved";
$lang["vector_cite_permurl"] = "Permanent URL";
$lang["vector_cite_pageversionid"] = "Page Version ID";
$lang["vector_cite_citationstyles"] = "Citation styles for";
$lang["vector_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs.";
$lang["vector_cite_latexusepackagehint"] = "When using the LaTeX package url (\usepackage{url} somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred";
$lang["vector_cite_retrieved"] = "Retrieved";
$lang["vector_cite_from"] = "from";
$lang["vector_cite_in"] = "In";
$lang["vector_cite_accessed"] = "Accessed";
$lang["vector_cite_cited"] = "Cited";
$lang["vector_cite_lastvisited"] = "Last visited";
$lang["vector_cite_availableat"] = "Available at";
$lang["vector_cite_discussionpages"] = "DokuWiki talk pages";
$lang["vector_cite_markup"] = "Markup";
$lang["vector_cite_result"] = "Result";
$lang["vector_cite_thisversion"] = "this version";
//other
$lang["vector_search"] = "Search";
$lang["vector_accessdenied"] = "Access denied";
$lang["vector_fillplaceholder"] = "Please fill or disable this placeholder";
$lang["vector_donate"] = "Donate";
$lang["vector_mdtemplatefordw"] = "vector template for DokuWiki";
$lang["vector_recentchanges"] = "Recent changes";
+84
View File
@@ -0,0 +1,84 @@
<?php
/**
* English language for the Config Manager
*
* If your language is not/only partially translated or you found an error/typo,
* have a look at the following files:
* - /lib/tpl/vector/lang/<your lang>/lang.php
* - /lib/tpl/vector/lang/<your lang>/settings.php
* If they are not existing, copy and translate the English ones (hint: looking
* at <http://[your lang].wikipedia.org> might be helpful).
*
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
* Thanks! :-D
*
*
* LICENSE: This file is open source software (OSS) and may be copied under
* certain conditions. See COPYING file for details or try to contact
* the author(s) of this file in doubt.
*
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
* @author ARSAVA <dokuwiki@dev.arsava.com>
* @link https://www.dokuwiki.org/template:vector
* @link https://www.dokuwiki.org/config:lang
* @link https://www.dokuwiki.org/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//user pages
$lang["vector_userpage"] = "Use User pages?";
$lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
//discussion pages
$lang["vector_discuss"] = "Use discussion tabs/sites?";
$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
//site notice
$lang["vector_sitenotice"] = "Show site wide notice?";
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
$lang["vector_sitenotice_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific site wide notice?<br />The wiki page of the translated site notice(s) is [value of 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
//navigation
$lang["vector_navigation"] = "Show navigation?";
$lang["vector_navigation_location"] = "If yes, use following wiki page as navigation:";
$lang["vector_navigation_translate"] = "If yes and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific navigation?<br />The wiki page of the translated navigation(s) is [value of 'vector_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
//exportbox ("print/export")
$lang["vector_exportbox"] = "Show 'print/export' box?";
$lang["vector_exportbox_default"] = "If yes, use default 'print/export' box?";
$lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:";
//toolbox
$lang["vector_toolbox"] = "Show tools?";
$lang["vector_toolbox_default"] = "If yes, use default tools?";
$lang["vector_toolbox_location"] = "If not default, use following wiki page as tools location:";
//qr code box
$lang["vector_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?";
//custom copyright notice
$lang["vector_copyright"] = "Show copyright notice?";
$lang["vector_copyright_default"] = "If yes, use default copyright notice?";
$lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:";
$lang["vector_copyright_translate"] = "If not default and <a href=\"https://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific copyright notice?<br />The wiki page of the translated copyright notice(s) is [value of 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
//donation link/button
$lang["vector_donate"] = "Show donation link/button?";
$lang["vector_donate_url"] = "Use following URL for donations:";
//TOC
$lang["vector_toc_position"] = "Table of contents (TOC) position";
//other stuff
$lang["vector_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):";
$lang["vector_youarehere_position"] = "Position of 'You are here' navigation (if enabled):";
$lang["vector_cite_author"] = "Author name in 'Cite this Article':";
$lang["vector_loaduserjs"] = "Load 'vector/user/user.js'?";
$lang["vector_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
View File