summaryrefslogtreecommitdiffstats
path: root/core/planner.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/planner.c')
-rw-r--r--core/planner.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/planner.c b/core/planner.c
index b8a8b63b5..a3ae39a1e 100644
--- a/core/planner.c
+++ b/core/planner.c
@@ -41,7 +41,7 @@ extern void reset_regression();
pressure_t first_ceiling_pressure, max_bottom_ceiling_pressure = {};
-const char *disclaimer;
+char *disclaimer;
int plot_depth = 0;
#if DEBUG_PLAN
void dump_plan(struct diveplan *diveplan)
@@ -555,9 +555,9 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool
plan_display_transitions = prefs.display_transitions;
if (decoMode() == VPMB) {
- deco = "VPM-B";
+ deco = translate("gettextFromC", "VPM-B");
} else {
- deco = "BUHLMANN";
+ deco = translate("gettextFromC", "BUHLMANN");
}
snprintf(buf, sizeof(buf), translate("gettextFromC", "DISCLAIMER / WARNING: THIS IS A NEW IMPLEMENTATION OF THE %s "