mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix an error around translation of dive modes in the UI
This fixes an mistake introduced in
3d1072f886
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
4ccc4d7329
commit
0bc9edf855
8 changed files with 14 additions and 14 deletions
|
@ -36,7 +36,7 @@ const char *cylinderuse_text[] = {
|
|||
QT_TRANSLATE_NOOP("gettextFromC", "OC-gas"), QT_TRANSLATE_NOOP("gettextFromC", "diluent"), QT_TRANSLATE_NOOP("gettextFromC", "oxygen"), QT_TRANSLATE_NOOP("gettextFromC", "not used")
|
||||
};
|
||||
|
||||
// For user visible text
|
||||
// For user visible text but still not translated
|
||||
const char *divemode_text_ui[] = {
|
||||
QT_TRANSLATE_NOOP("gettextFromC", "Open circuit"),
|
||||
QT_TRANSLATE_NOOP("gettextFromC", "CCR"),
|
||||
|
|
|
@ -140,13 +140,13 @@ void process_all_dives(struct dive *dive, struct dive **prev_dive)
|
|||
* field in the statistics window */
|
||||
stats_by_type[0].location = strdup(translate("gettextFromC", "All (by type stats)"));
|
||||
stats_by_type[0].is_trip = true;
|
||||
stats_by_type[1].location = strdup(divemode_text_ui[OC]);
|
||||
stats_by_type[1].location = strdup(translate("gettextFromC", divemode_text_ui[OC]));
|
||||
stats_by_type[1].is_trip = true;
|
||||
stats_by_type[2].location = strdup(divemode_text_ui[CCR]);
|
||||
stats_by_type[2].location = strdup(translate("gettextFromC", divemode_text_ui[CCR]));
|
||||
stats_by_type[2].is_trip = true;
|
||||
stats_by_type[3].location = strdup(divemode_text_ui[PSCR]);
|
||||
stats_by_type[3].location = strdup(translate("gettextFromC", divemode_text_ui[PSCR]));
|
||||
stats_by_type[3].is_trip = true;
|
||||
stats_by_type[4].location = strdup(divemode_text_ui[FREEDIVE]);
|
||||
stats_by_type[4].location = strdup(translate("gettextFromC", divemode_text_ui[FREEDIVE]));
|
||||
stats_by_type[4].is_trip = true;
|
||||
|
||||
/* this relies on the fact that the dives in the dive_table
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue