shell: Fix translation of the window title

The string was marked as translatable, but the translation
was not used.
This commit is contained in:
Frédéric Péters 2013-03-26 17:00:45 +01:00 committed by Bastien Nocera
parent f9c0732a6c
commit 7b3eb23bc4

View file

@ -1508,7 +1508,7 @@ cc_window_new (GtkApplication *application)
"application", application,
"hide-titlebar-when-maximized", TRUE,
"resizable", TRUE,
"title", DEFAULT_WINDOW_TITLE,
"title", _(DEFAULT_WINDOW_TITLE),
"icon-name", DEFAULT_WINDOW_ICON_NAME,
"window-position", GTK_WIN_POS_CENTER,
NULL);