Show
Ignore:
Timestamp:
03/05/10 22:00:00 (3 years ago)
Author:
saturday06
Message:

a

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/objective-cplusplus/i3/trunk/windows/installer/Program.cs

    r36945 r36946  
    1414            static void Main(string[] args) 
    1515            { 
     16                String path = Application.StartupPath 
     17                            + Path.DirectorySeparatorChar 
     18                            + "locale" 
     19                            + Path.DirectorySeparatorChar 
     20                            + "LocaleDirectory.dll"; 
     21                 
    1622                GettextResourceManager catalog = 
    17                     new GettextResourceManager("i3", Assembly.GetAssembly(typeof(LocaleDirectory))); 
     23                    new GettextResourceManager("i3", Assembly.LoadFile(path)); 
     24 
    1825                MessageBox.Show(catalog.GetString("Hello, world!")); 
    1926            }