You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new options: 'monobook_copyright_translate' and 'monobook_sitenotice_translate'
Enables the user to use language specific wiki pages as translated side wide
notice / copyright notice if the Translation plugin (cf.
http://www.dokuwiki.org/plugin:translation) is available. Works the same way
as the multilingual navigation (cf. option 'monobook_navigation_translate').
$conf["monobook_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice
46
+
$conf["monobook_sitenotice_translate"] = true; //TRUE: load translated sitenotice if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
$conf["monobook_navigation_location"] = ":wiki:navigation"; //page/article used to store the navigation
50
51
$conf["monobook_navigation_translate"] = true; //TRUE: load translated navigation if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
$conf["monobook_copyright_default"] = true; //TRUE: 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"] = true; //TRUE: load translated copyright notice if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
56
58
57
59
//search form
58
60
$conf["monobook_search"] = true; //TRUE: use/show search form
Copy file name to clipboardExpand all lines: lang/en/settings.php
+7-5
Original file line number
Diff line number
Diff line change
@@ -38,18 +38,20 @@
38
38
$lang["monobook_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
39
39
40
40
//site notice
41
-
$lang["monobook_sitenotice"] = "Show site wide notice?";
42
-
$lang["monobook_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
41
+
$lang["monobook_sitenotice"] = "Show site wide notice?";
42
+
$lang["monobook_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
43
+
$lang["monobook_sitenotice_translate"] = "If yes and <a href=\"http://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 'monobook_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
$lang["monobook_navigation_location"] = "If yes, use following wiki page as navigation:";
47
48
$lang["monobook_navigation_translate"] = "If yes and <a href=\"http://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 'monobook_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
$lang["monobook_copyright_default"] = "If yes, use default copyright notice?";
53
+
$lang["monobook_copyright_location"] = "If not default, use following wiki page as copyright notice:";
54
+
$lang["monobook_copyright_translate"] = "If yes and <a href=\"http://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 'monobook_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
0 commit comments