home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / komunikace / nvu / nvu-1.0-cs-CZ.win32.installer.exe / chrome / toolkit.jar / content / global / strres.js < prev    next >
Text File  |  2003-08-16  |  637b  |  25 lines

  1. var strBundleService = null;
  2.  
  3. function srGetStrBundle(path)
  4. {
  5.   var strBundle = null;
  6.  
  7.   if (!strBundleService) {
  8.       try {
  9.           strBundleService =
  10.               Components.classes["@mozilla.org/intl/stringbundle;1"].getService(); 
  11.           strBundleService = 
  12.               strBundleService.QueryInterface(Components.interfaces.nsIStringBundleService);
  13.       } catch (ex) {
  14.           dump("\n--** strBundleService failed: " + ex + "\n");
  15.           return null;
  16.       }
  17.   }
  18.  
  19.   strBundle = strBundleService.createBundle(path); 
  20.   if (!strBundle) {
  21.     dump("\n--** strBundle createInstance failed **--\n");
  22.   }
  23.   return strBundle;
  24. }
  25.