[Xfce4-commits] [apps/orage] 01/01: 4.11.1.1 Fixed bug 10648: missing window title translation from globaltime
noreply at xfce.org
noreply at xfce.org
Mon Sep 22 13:31:51 CEST 2014
This is an automated email from the git hooks/post-receive script.
juha pushed a commit to branch master
in repository apps/orage.
commit 914676c8a2cd311bf96251ed51b207814506d239
Author: Juha Kautto <juha at xfce.org>
Date: Mon Sep 22 14:28:56 2014 +0300
4.11.1.1 Fixed bug 10648: missing window title translation from globaltime
Made window title translatable string. Also removed version info as
it should not be there.
---
configure.in.in | 2 +-
globaltime/globaltime.c | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/configure.in.in b/configure.in.in
index cd2be1b..4bab27f 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto <juha at xfce.org>
dnl
dnl Version information
-m4_define([orage_version], [4.11.1-git])
+m4_define([orage_version], [4.11.1.1-git])
m4_define([gtk_minimum_version], [2.14.0])
m4_define([xfce_minimum_version], [4.8.0])
diff --git a/globaltime/globaltime.c b/globaltime/globaltime.c
index 6121837..0b1c8a2 100644
--- a/globaltime/globaltime.c
+++ b/globaltime/globaltime.c
@@ -545,11 +545,10 @@ static void initialize_clocks(void)
/* Standard window-creating stuff */
clocks.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
- gtk_window_set_title(GTK_WINDOW(clocks.window), NAME_VERSION);
+ gtk_window_set_title(GTK_WINDOW(clocks.window), _("Global Time"));
clocks.main_hbox = gtk_hbox_new(FALSE, 1);
- gtk_container_add(GTK_CONTAINER(clocks.window)
- , clocks.main_hbox);
+ gtk_container_add(GTK_CONTAINER(clocks.window), clocks.main_hbox);
gtk_widget_show(clocks.main_hbox);
init_hdr_button();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list