Next step towards working translations

This may seem like a really odd change - but with this change the Qt tools
can correctly parse the C files (and qt-gui.cpp) and get the context for
the translatable strings right.

It's not super-pretty (I'll admit that _("string literal") is much easier
on the eye than translate("gettextFromC", "string literal") ) but I think
this will be the price of success.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-10-09 22:48:35 -07:00
parent 2d69d4a5ef
commit 193d20c479
14 changed files with 184 additions and 182 deletions

View file

@ -158,11 +158,11 @@ struct tank_info_t tank_info[100] = {
* This is a bit odd as the weight system types don't usually encode weight
*/
struct ws_info_t ws_info[100] = {
{ QT_TR_NOOP("integrated"), 0 },
{ QT_TR_NOOP("belt"), 0 },
{ QT_TR_NOOP("ankle"), 0 },
{ QT_TR_NOOP("backplate weight"), 0 },
{ QT_TR_NOOP("clip-on"), 0 },
{ QT_TRANSLATE_NOOP("gettextFromC","integrated"), 0 },
{ QT_TRANSLATE_NOOP("gettextFromC","belt"), 0 },
{ QT_TRANSLATE_NOOP("gettextFromC","ankle"), 0 },
{ QT_TRANSLATE_NOOP("gettextFromC","backplate weight"), 0 },
{ QT_TRANSLATE_NOOP("gettextFromC","clip-on"), 0 },
};
void remove_cylinder(struct dive *dive, int idx)