[Gpredict-svn] SF.net SVN: gpredict:[926] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <aa...@us...> - 2011-10-10 00:38:59
|
Revision: 926
http://gpredict.svn.sourceforge.net/gpredict/?rev=926&view=rev
Author: aa1vs
Date: 2011-10-10 00:38:52 +0000 (Mon, 10 Oct 2011)
Log Message:
-----------
Add internationalization to several strings.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gtk-sat-module-popup.c
trunk/src/menubar.c
trunk/src/mod-mgr.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-10-09 13:48:21 UTC (rev 925)
+++ trunk/ChangeLog 2011-10-10 00:38:52 UTC (rev 926)
@@ -1,3 +1,11 @@
+2011-10-10 Charles Suprin <hamaa1vs at gmail.com>
+
+ * ChangeLog
+ * src/gtk-sat-module-popup.c
+ * src/menubar.c
+ * src/mod-mgr.c
+ Add internationalization to several strings.
+
2011-10-09 Charles Suprin <hamaa1vs at gmail.com>
* src/tle-update.c
Modified: trunk/src/gtk-sat-module-popup.c
===================================================================
--- trunk/src/gtk-sat-module-popup.c 2011-10-09 13:48:21 UTC (rev 925)
+++ trunk/src/gtk-sat-module-popup.c 2011-10-10 00:38:52 UTC (rev 926)
@@ -425,7 +425,7 @@
newmod->win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_title (GTK_WINDOW (newmod->win),
newmod->name);
- title = g_strconcat ("GPREDICT: ",
+ title = g_strconcat (_("GPREDICT: "),
newmod->name,
" (", newmod->qth->name, ")",
NULL);
@@ -548,7 +548,7 @@
/* create window */
GTK_SAT_MODULE (module)->win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- title = g_strconcat ("GPREDICT: ",
+ title = g_strconcat (_("GPREDICT: "),
GTK_SAT_MODULE (module)->name,
" (", GTK_SAT_MODULE (module)->qth->name, ")",
NULL);
@@ -688,7 +688,7 @@
/* create window */
GTK_SAT_MODULE (module)->win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- title = g_strconcat ("GPREDICT: ",
+ title = g_strconcat (_("GPREDICT: "),
GTK_SAT_MODULE (module)->name,
" (", GTK_SAT_MODULE (module)->qth->name, ")",
NULL);
Modified: trunk/src/menubar.c
===================================================================
--- trunk/src/menubar.c 2011-10-09 13:48:21 UTC (rev 925)
+++ trunk/src/menubar.c 2011-10-10 00:38:52 UTC (rev 926)
@@ -1058,7 +1058,7 @@
/* create window */
GTK_SAT_MODULE (module)->win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- title = g_strconcat ("GPREDICT: ",
+ title = g_strconcat (_("GPREDICT: "),
GTK_SAT_MODULE (module)->name,
" (", GTK_SAT_MODULE (module)->qth->name, ")",
NULL);
Modified: trunk/src/mod-mgr.c
===================================================================
--- trunk/src/mod-mgr.c 2011-10-09 13:48:21 UTC (rev 925)
+++ trunk/src/mod-mgr.c 2011-10-10 00:38:52 UTC (rev 926)
@@ -681,7 +681,7 @@
/* create window */
GTK_SAT_MODULE (module)->win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- title = g_strconcat ("GPREDICT: ",
+ title = g_strconcat (_("GPREDICT: "),
GTK_SAT_MODULE (module)->name,
" (", GTK_SAT_MODULE (module)->qth->name, ")",
NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|