summaryrefslogtreecommitdiffstats
path: root/template/en/default/setup
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2007-03-17 22:13:34 +0100
committermkanat%bugzilla.org <>2007-03-17 22:13:34 +0100
commitba5a5c404b8ef0b71efd873e604184ab90ebff94 (patch)
tree1e6369d1daf4649bec1e44e8917978a071764cd7 /template/en/default/setup
parentaf5161076a754d2d66ba8178d4fcce331eedd588 (diff)
downloadbugzilla-ba5a5c404b8ef0b71efd873e604184ab90ebff94.tar.gz
bugzilla-ba5a5c404b8ef0b71efd873e604184ab90ebff94.tar.xz
Bug 374227: Create a system for localizing basic installation strings
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'template/en/default/setup')
-rw-r--r--template/en/default/setup/strings.txt.pl16
1 files changed, 16 insertions, 0 deletions
diff --git a/template/en/default/setup/strings.txt.pl b/template/en/default/setup/strings.txt.pl
new file mode 100644
index 000000000..0942bb0e9
--- /dev/null
+++ b/template/en/default/setup/strings.txt.pl
@@ -0,0 +1,16 @@
+# This file contains a single hash named %strings, which is used by the
+# installation code to display strings before Template-Toolkit can safely
+# be loaded.
+#
+# Each string supports a very simple substitution system, where you can
+# have variables named like ##this## and they'll be replaced by the string
+# variable with that name.
+#
+# Please keep the strings in alphabetical order by their name.
+
+%strings = (
+ version_and_os => "* This is Bugzilla ##bz_ver## on perl ##perl_ver##\n"
+ . "* Running on ##os_name## ##os_ver##",
+);
+
+1;