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: 'vector_copyright_translate' and 'vector_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 'vector_navigation_translate').
$conf["vector_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice
46
+
$conf["vector_sitenotice_translate"] = true; //TRUE: load translated sitenotice if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
$conf["vector_copyright_default"] = true; //TRUE: use default copyright notice (if copyright notice is enabled at all)
66
+
$conf["vector_copyright_location"] = ":wiki:copyright"; //page/article used to store a custom copyright notice
67
+
$conf["vector_copyright_translate"] = true; //TRUE: load translated copyright notice if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
Copy file name to clipboardExpand all lines: lang/en/settings.php
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,9 @@
39
39
$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
40
40
41
41
//site notice
42
-
$lang["vector_sitenotice"] = "Show site wide notice?";
43
-
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
42
+
$lang["vector_sitenotice"] = "Show site wide notice?";
43
+
$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
44
+
$lang["vector_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 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
44
45
45
46
//navigation
46
47
$lang["vector_navigation"] = "Show navigation?";
@@ -58,9 +59,10 @@
58
59
$lang["vector_toolbox_location"] = "If not default, use following wiki page as toolbox location:";
$lang["vector_copyright_default"] = "If yes, use default copyright notice?";
64
+
$lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:";
65
+
$lang["vector_copyright_translate"] = "If not default 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 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
0 commit comments