From f8a13fc91a2b008dbe4da33d67e7dfbd1967b5e1 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 29 Nov 2012 22:47:52 +0000 Subject: [PATCH] Activate PreferExternal constant in gnugettext.pas, so translators may override assembled .mo files by a file in the locale subdirectory. See issue #557. --- source/gnugettext.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gnugettext.pas b/source/gnugettext.pas index b3157557..0e787362 100644 --- a/source/gnugettext.pas +++ b/source/gnugettext.pas @@ -209,7 +209,7 @@ var ExecutableFilename: FilenameString; // This is set to paramstr(0) or the name of the DLL you are creating. const - PreferExternal = False; // Set to true, to prefer external *.mo over embedded translation + PreferExternal = True; // Set to true, to prefer external *.mo over embedded translation UseMemoryMappedFiles = True; // Set to False, to use the mo-file as independent copy in memory (you can update the file while it is in use) ReReadMoFileOnSameLanguage = False; // Set to True, to reread mo-file if the current language is selected again