summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-11-16 10:54:54 +0000
committerfisharebest <fisharebest@gmail.com>2010-11-16 10:54:54 +0000
commit10c226f9aab96749d55eb6286bb84420b28f424b (patch)
tree6e48699d411d7a0542b0d8e2b685e2b055c0938a
parentfd5c63d52d6fc63f411096ec402bd02ac0874418 (diff)
downloadwebtrees-10c226f9aab96749d55eb6286bb84420b28f424b.tar.gz
webtrees-10c226f9aab96749d55eb6286bb84420b28f424b.tar.bz2
webtrees-10c226f9aab96749d55eb6286bb84420b28f424b.zip
Add I18N hints
-rw-r--r--modules/googlemap/flags.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/googlemap/flags.php b/modules/googlemap/flags.php
index adad0dd378..aba72c0215 100644
--- a/modules/googlemap/flags.php
+++ b/modules/googlemap/flags.php
@@ -226,7 +226,7 @@ else {
<td class="optionbox" colspan="4">
<?php echo help_link('PLE_FLAGS','googlemap'); ?>
<select name="STATESELECT" dir="ltr" onchange="selectCountry()">
- <option value="States"><?php echo /* Parts of a country */ i18n::translate('States'); ?></option>
+ <option value="States"><?php echo /* I18N: Parts of a country */ i18n::translate('States'); ?></option>
<?php foreach ($stateList as $state_key=>$state_name) {
echo "<option value=\"", $state_key, "\"";
if ($stateSelected == $state_key) echo " selected=\"selected\" ";