Skip to content

Commit

Permalink
I18n: Fix forgotten string markup for translation.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18364 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
cstim committed Oct 3, 2009
1 parent 43cb79c commit 52fdf3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gnome-utils/gnc-sx-list-tree-model-adapter.c
Expand Up @@ -32,6 +32,7 @@

#include "config.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <glib-object.h>
#include "gnc-sx-instance-model.h"
#include "gnc-sx-list-tree-model-adapter.h"
Expand Down Expand Up @@ -482,7 +483,7 @@ _format_conditional_date(GDate *date, char *date_buf, int buf_max_length)
{
if (date == NULL || !g_date_valid(date))
{
g_stpcpy(date_buf, "never");
g_stpcpy(date_buf, _("never"));
}
else
{
Expand Down

0 comments on commit 52fdf3e

Please sign in to comment.