Fixed one problem with English (which doesn't have a .po file)
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 15 Nov 2001 14:20:27 +0000 (14:20 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 15 Nov 2001 14:20:27 +0000 (14:20 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1760 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/gettext.php

index 851f7ad488bede9ad20c2a667294990536f9b544..ba0c4624025fd07ceac8b6bb28ce234ad3fb91a8 100644 (file)
@@ -15,7 +15,8 @@
    define('gettext_php', true);
    
    global $gettext_php_domain, $gettext_php_dir, $gettext_php_loaded,
-      $gettext_php_translateStrings, $gettext_php_loaded_language;
+      $gettext_php_translateStrings, $gettext_php_loaded_language,
+      $gettext_php_short_circuit;
    
    if (! isset($gettext_php_loaded)) {
       $gettext_php_loaded = false;
    function gettext_php_load_strings() {
       global $squirrelmail_language, $gettext_php_translateStrings,
          $gettext_php_domain, $gettext_php_dir, $gettext_php_loaded,
-         $gettext_php_loaded_language;
+         $gettext_php_loaded_language, $gettext_php_short_circuit;
       
       // $squirrelmail_language gives 'en' for English, 'de' for German,
       // etc.  I didn't wanna use getenv or similar, but you easily could
       // change my code to do that.
       
       $gettext_php_translateStrings = array();
+      
+      $gettext_php_short_circuit = false;  // initialization
 
       $filename = $gettext_php_dir;
       if (substr($filename, -1) != '/')
@@ -61,6 +64,8 @@
         // This is also for English, which doesn't use translations
          $gettext_php_loaded = true;
          $gettext_php_loaded_language = $squirrelmail_language;
+        $gettext_php_short_circuit = true;  // Avoid fuzzy matching when we
+                                            // didn't load strings
          return;
       }
          
 
    function _($str) {
       global $gettext_php_loaded, $gettext_php_translateStrings, 
-         $squirrelmail_language, $gettext_php_loaded_language;
+         $squirrelmail_language, $gettext_php_loaded_language,
+        $gettext_php_short_circuit;
         
       if (! $gettext_php_loaded || 
           $gettext_php_loaded_language != $squirrelmail_language)
       // Try finding the exact string      
       if (isset($gettext_php_translateStrings[$str]))
          return $gettext_php_translateStrings[$str];
-
+        
+      // See if we should short-circuit
+      if ($gettext_php_short_circuit) {
+         $gettext_php_translateStrings[$str] = $str;
+        return $str;
+      }
+      
       // Look for a string that is very close to the one we want
       // Very computationally expensive
       $oldPercent = 0;