Skip to content

Commit

Permalink
Mark forgotten string for translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Aug 24, 2008
1 parent 4669108 commit eca8464
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/image.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,9 @@ static void image_update_title(ImageWindow *imd)

if (imd->collection && collection_to_number(imd->collection) >= 0)
{
const gchar *name;
name = imd->collection->name;
const gchar *name = imd->collection->name;
if (!name) name = _("Untitled");
collection = g_strdup_printf(" (Collection %s)", name);
collection = g_strdup_printf(_(" (Collection %s)"), name);
}

if (imd->title_show_zoom)
Expand Down

0 comments on commit eca8464

Please sign in to comment.