[Mapbender-commits] r5556 - trunk/mapbender/http/php

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Sat Feb 20 08:30:30 EST 2010


Author: astrid_emde
Date: 2010-02-20 08:30:30 -0500 (Sat, 20 Feb 2010)
New Revision: 5556

Modified:
   trunk/mapbender/http/php/mod_SelectKeyword.php
Log:
i18n

Modified: trunk/mapbender/http/php/mod_SelectKeyword.php
===================================================================
--- trunk/mapbender/http/php/mod_SelectKeyword.php	2010-02-20 13:18:16 UTC (rev 5555)
+++ trunk/mapbender/http/php/mod_SelectKeyword.php	2010-02-20 13:30:30 UTC (rev 5556)
@@ -21,7 +21,7 @@
 ?>
 <html>
 <head>
-<title>Select Keyword</title>
+<title><?php echo _mb("Select a keyword") ?></title>
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="expires" content="0">
@@ -45,7 +45,7 @@
 $sql = "Select keyword_id, ltrim(keyword) as keyword from keyword order by upper(ltrim(keyword));";
 $res = db_query($sql);
 
-echo "<select size='20' name='keywordlist' ondblClick='insertValue(this.value)' title='double click to select a keyword'>\n";
+echo "<select size='20' name='keywordlist' ondblClick='insertValue(this.value)' title='"._mb("Please double click to select a keyword.")."'>\n";
  
 $cnt = 0;
 while($row = db_fetch_array($res)){    



More information about the Mapbender_commits mailing list