1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Improve source for generation of .pot file.

"clang " is the name of a compiler and should not be translated.
Other changes here from seeing how translation was actually being done.
This commit is contained in:
James Crook
2017-07-20 18:21:55 +01:00
parent 416b897337
commit c4a1787bb9
3 changed files with 16 additions and 8 deletions

View File

@@ -690,14 +690,14 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
#ifdef __GNUC_PATCHLEVEL__
#ifdef __MINGW32__
AddBuildinfoRow(&informationStr, _("Compiler:"), _("MinGW ") + wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
AddBuildinfoRow(&informationStr, _("Compiler:"), wxT("MinGW ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
#else
AddBuildinfoRow(&informationStr, _("Compiler:"), _("GCC ") + wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
AddBuildinfoRow(&informationStr, _("Compiler:"), wxT("GCC ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
#endif
#endif
#ifdef __clang_version__
AddBuildinfoRow(&informationStr, _("Compiler:"), _("clang " __clang_version__));
AddBuildinfoRow(&informationStr, _("Compiler:"), wxT("clang ") __clang_version__);
#endif
// Install prefix