News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Code::Blocks IDE translation to German language

Started by rechtsanwaltsteyer, July 24, 2022, 04:40:38 PM

Previous topic - Next topic

gd_on

Neverthess, something like :

local intro_msg = _("Welcome to the wxWidgets project wizard!\n\n") +
                            _("This wizard will guide you to create a new project using\n") +
                            _("the wxWidgets cross-platform GUI library.\n\n") +
                            _("When you 're ready to proceed, please click \"Next\"...");

with _(...) on each line, is correctly detected but as you have partial sentences it may be difficult to translate without the context. A better approach is

local intro_msg = _("Welcome to the wxWidgets project wizard!\n\n") +
                            _("This wizard will guide you to create a new project using\nthe wxWidgets cross-platform GUI library.\n\n") +
                            _("When you 're ready to proceed, please click \"Next\"...");
Windows 11 64 bits (25H2), svn C::B (last version or almost!), wxWidgets 3.3.2, Msys2 Compilers 16.1.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Miguel Gimenez


Miguel Gimenez

#17
Most strings are fixed in [r13010].

There are still about three strings using concatenated fragments, but I do not know how to fix them in Squirrel.

Miguel Gimenez

Fixed in [r13011] using macro-style replacements:

local msg = _("$1 was not found on drive $2, try again...");
msg.Replace(_T("$1"), filename);
msg.Replace(_T("$2"), drivename);


Karschti

Hello,

which is  the latest german file?
Which is the right folder to put it in?

Hope for some help.

thx

Miguel Gimenez


rechtsanwaltsteyer

Hello Karschti, here I attach a mo-file, in which ca 75% are translated to german language. Put the filte into /usr/share/codeblocks/locale/de_DE/ (under Linux).
regards Michael
Greatings
Georg Michael Steyer, Rechtsanwalt