diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-15 14:40:26 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-15 14:40:26 +0100 |
commit | 5cfefba5c8852c101ad62b0a59410705fa15b842 (patch) | |
tree | 0413b2b26c0bf6452485ac3c5a1b4eac9f07da68 /util | |
parent | 70cf5ae3c79ad1b94e9d5fab82325d55a12761c0 (diff) | |
download | volse-hubzilla-5cfefba5c8852c101ad62b0a59410705fa15b842.tar.gz volse-hubzilla-5cfefba5c8852c101ad62b0a59410705fa15b842.tar.bz2 volse-hubzilla-5cfefba5c8852c101ad62b0a59410705fa15b842.zip |
Small tweaks to string_translator
Diffstat (limited to 'util')
-rw-r--r-- | util/string_translator.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/string_translator.php b/util/string_translator.php index 4d24f7a6f..4112d9506 100644 --- a/util/string_translator.php +++ b/util/string_translator.php @@ -4,6 +4,7 @@ <style> textarea { width: 100% } .no { background: #ffdddd; } + label { border-bottom: 1px solid #888; } </style> </head> <body> @@ -78,14 +79,13 @@ function strhex($string) { echo "<h1>Translator</h1>"; -echo "<p>Utility to translate <code>string.php</code> file."; -echo " Need write permission to language file you want to modify</p>"; +echo "<small>Utility to translate <code>string.php</code> file."; +echo " Need write permission to language file you want to modify</small>"; echo "<p>Installed languages:"; -echo "<ul>"; foreach($LANGS as $l){ - echo "<li><a href='?lang=$l'>$l</a></li>"; + echo "<a href='?lang=$l'>$l</a>, "; } -echo "</ul></p>"; +echo "</p>"; $strings['en'] = loadstrings(); @@ -156,7 +156,7 @@ if (isset($_GET['lang'])){ $istranslate = $translation != '' ? 'yes':'no'; echo "<dl class='$istranslate'>"; - echo "<dt><label for='$id'>".htmlspecialchars($v)."</label></dt>"; + echo "<dt><pre><label for='$id'>".htmlspecialchars($v)."</label></pre></dt>"; echo "<dd><textarea id='$id' name='$id'>$translation</textarea></dd>"; echo "</dl>"; } |