From: Sergio Villar Senin Date: Wed, 14 Jan 2009 10:07:00 +0000 (+0000) Subject: * Fixes NB#97258, fixed a logical id in the number editor X-Git-Tag: git_migration_finished~805 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=13500f228c1f0fb62aed96baae7293851090554f * Fixes NB#97258, fixed a logical id in the number editor * Fixes NB#97261, fixed another logical id in the number editor pmo-trunk-r7141 --- diff --git a/src/hildon2/modest-number-editor.c b/src/hildon2/modest-number-editor.c index 8732a32..086b636 100644 --- a/src/hildon2/modest-number-editor.c +++ b/src/hildon2/modest-number-editor.c @@ -37,6 +37,7 @@ #include "modest-number-editor.h" #include "modest-marshal.h" #include +#include "modest-text-utils.h" #define _(String) dgettext("modest-libs", String) @@ -383,16 +384,16 @@ modest_number_editor_range_error (ModestNumberEditor *editor, switch (type) { case MODEST_NUMBER_EDITOR_ERROR_MAXIMUM_VALUE_EXCEED: - err_msg = g_strdup_printf (_("ckct_ib_maximum_value"), max, max); + err_msg = g_strdup_printf (_HL("ckct_ib_maximum_value"), max, max); break; case MODEST_NUMBER_EDITOR_ERROR_MINIMUM_VALUE_EXCEED: - err_msg = g_strdup_printf (_("ckct_ib_minimum_value"), min, min); + err_msg = g_strdup_printf (_HL("ckct_ib_minimum_value"), min, min); break; case MODEST_NUMBER_EDITOR_ERROR_ERRONEOUS_VALUE: err_msg = - g_strdup_printf (_("ckct_ib_set_a_value_within_range"), min, max); + g_strdup_printf (_HL("ckct_ib_set_a_value_within_range"), min, max); break; }