gginitializer.pas

unit gginitializer;

interface

implementation

uses
  gnugettext;
  
initialization
  // Use delphi.mo for runtime library translations, if it is there
  // by putting this line into this separate unit, we can execute it
  // before the initialization sections of the other units are executed.
  AddDomainForResourceString('delphi');

end.