diff options
author | friendica <info@friendica.com> | 2012-04-15 06:04:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-15 06:04:54 -0700 |
commit | c4e8ef330e54ac149d333b92cf732099e828f40d (patch) | |
tree | 021287cfab403903e70f8ea41a2ff2945d11c66e | |
parent | 97715c73fcb5b6de582f7165f70526acaf24bc86 (diff) | |
download | volse-hubzilla-c4e8ef330e54ac149d333b92cf732099e828f40d.tar.gz volse-hubzilla-c4e8ef330e54ac149d333b92cf732099e828f40d.tar.bz2 volse-hubzilla-c4e8ef330e54ac149d333b92cf732099e828f40d.zip |
where did this "lang" string come from and why?
-rw-r--r-- | view/theme/duepuntozero/lang_selector.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/theme/duepuntozero/lang_selector.tpl b/view/theme/duepuntozero/lang_selector.tpl new file mode 100644 index 000000000..e777a0a86 --- /dev/null +++ b/view/theme/duepuntozero/lang_selector.tpl @@ -0,0 +1,10 @@ +<div id="lang-select-icon" class="icon s22 language" title="$title" onclick="openClose('language-selector');" ></div> +<div id="language-selector" style="display: none;" > + <form action="#" method="post" > + <select name="system_language" onchange="this.form.submit();" > + {{ for $langs.0 as $v=>$l }} + <option value="$v" {{if $v==$langs.1}}selected="selected"{{endif}}>$l</option> + {{ endfor }} + </select> + </form> +</div> |