summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-04 18:04:50 +1100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-04 18:04:50 +1100
commit46a9a2b4d78d88cde629ee263c17221077033bcd (patch)
treee14a57b4c324bd2bdb6796e4ea4594cdeda1cbbd
parent618fcc8cbc64984b55e19b761788970d9fb4546e (diff)
downloadsubsurface-46a9a2b4d78d88cde629ee263c17221077033bcd.tar.gz
Mark missing strings for translation
Linus and Jan forgot to do so... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--profile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/profile.c b/profile.c
index f81d4aba3..22a74986e 100644
--- a/profile.c
+++ b/profile.c
@@ -407,11 +407,11 @@ static void plot_one_event(struct graphics_context *gc, struct plot_info *pi, st
snprintf(buffer, sizeof(buffer), "%s:%d", _(event->name), event->value);
}
} else if (event->name && !strcmp(event->name, "SP change")) {
- snprintf(buffer, sizeof(buffer), "Bailing out to OC");
+ snprintf(buffer, sizeof(buffer), _("Bailing out to OC"));
} else {
snprintf(buffer, sizeof(buffer), "%s%s", _(event->name),
- event->flags == SAMPLE_FLAGS_BEGIN ? " begin" :
- event->flags == SAMPLE_FLAGS_END ? " end" : "");
+ event->flags == SAMPLE_FLAGS_BEGIN ? C_("Starts with space!"," begin") :
+ event->flags == SAMPLE_FLAGS_END ? C_("Starts with space!", " end") : "");
}
attach_tooltip(x-15, y-6, 12, 12, buffer);
}