From 2dc7abd2a759dbb1230547aa032f65a95aa767ec Mon Sep 17 00:00:00 2001 From: Michel Boaventura Date: Wed, 5 May 2010 09:48:03 -0700 Subject: [PATCH] psppire: Translate all format type categories, not just some of them. --- src/ui/gui/psppire-var-store.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/gui/psppire-var-store.c b/src/ui/gui/psppire-var-store.c index ece72812..403eba84 100644 --- a/src/ui/gui/psppire-var-store.c +++ b/src/ui/gui/psppire-var-store.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2006, 2009 Free Software Foundation + Copyright (C) 2006, 2009, 2010 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -667,10 +667,10 @@ text_for_column (PsppireVarStore *vs, case FMT_DTIME: case FMT_WKDAY: case FMT_MONTH: - return g_locale_to_utf8 (type_label[VT_DATE], -1, 0, 0, err); + return g_locale_to_utf8 (gettext (type_label[VT_DATE]), -1, 0, 0, err); break; case FMT_DOLLAR: - return g_locale_to_utf8 (type_label[VT_DOLLAR], -1, 0, 0, err); + return g_locale_to_utf8 (gettext (type_label[VT_DOLLAR]), -1, 0, 0, err); break; case FMT_CCA: case FMT_CCB: -- 2.30.2