[Gpredict-svn] SF.net SVN: gpredict:[962] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <cs...@us...> - 2011-12-06 21:41:52
|
Revision: 962
http://gpredict.svn.sourceforge.net/gpredict/?rev=962&view=rev
Author: csete
Date: 2011-12-06 21:41:46 +0000 (Tue, 06 Dec 2011)
Log Message:
-----------
Typos (bug 3451841).
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/src/about.c
trunk/src/gtk-sat-module.c
trunk/src/sat-info.c
trunk/src/sat-pass-dialogs.c
trunk/src/sat-pref-qth.c
trunk/src/sat-pref-rot-editor.c
trunk/src/sat-pref-rot.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/ChangeLog 2011-12-06 21:41:46 UTC (rev 962)
@@ -1,3 +1,16 @@
+2011-12-06 Alexandru Csete <oz9aec at gmail.com>
+
+ * src/about.c:
+ * src/gtk-sat-module.c:
+ * src/gtk-sat-module.c:
+ * src/sat-info.c:
+ * src/sat-pass-dialogs.c:
+ * src/sat-pref-qth.c:
+ * src/sat-pref-rot.c:
+ * src/sat-pref-rot-editor.c:
+ Fix typos (bug 3451841).
+
+
2011-11-23 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-event-list-popup.c
@@ -10,7 +23,8 @@
* src/gtk-single-sat.c
* src/sat-info.c
* src/sgpsdp/sgp4sdp4.h
- Escape satellite nicknames and use them when in markup. (Bug 3441490: Satellite Nickname Not escaped for PANGO.)
+ Escape satellite nicknames and use them when in markup.
+ (Bug 3441490: Satellite Nickname Not escaped for PANGO.)
2011-11-22 Charles Suprin <hamaa1vs at gmail.com>
@@ -22,13 +36,16 @@
2011-11-21 Charles Suprin <hamaa1vs at gmail.com>
* src/gtk-sat-map.c
- Apply consistent checking of pole to eliminate disagreements. (Bug 3437555: Graphical Glitch Plotting Footprints near pole)
+ Apply consistent checking of pole to eliminate disagreements.
+ (Bug 3437555: Graphical Glitch Plotting Footprints near pole)
* src/gtk-sat-list.c
* src/gtk-sat-list.h
* src/gtk-event-list.c
* src/gtk-event-list.c
- Bold entries for satellites above horizon. (Feature Request 3169710: Highlight satellites within range in the list view)
+ Bold entries for satellites above horizon.
+ (Feature Request 3169710: Highlight satellites within range in the list view)
+
* src/gtk-single-sat.c
Eliminate segfault.
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/NEWS 2011-12-06 21:41:46 UTC (rev 962)
@@ -23,7 +23,9 @@
- Fixed bug 3292729: Show next pass shows the current pass.
- Fixed bug 3437555: Graphical Glitch Plotting Footprints near pole.
- Fixed bug 3441490: Satellite Nickname Not escaped for PANGO.
+- Fixed bug 3451841: Typos.
+
Changes in version 1.3 (1 Mar 2011)
- Feature request 2873824: Flip Passes.
Modified: trunk/src/about.c
===================================================================
--- trunk/src/about.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/about.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -67,7 +67,7 @@
const gchar license[] = N_("Copyright (C) 2001-2011 Alexandru Csete OZ9AEC and contributors.\n"\
"Contact: oz9aec at gmail.com\n\n"\
"Gpredict is free software; you can redistribute it and "\
- "mofdify it under the terms of the GNU General Public License "\
+ "modify it under the terms of the GNU General Public License "\
"as published by the Free Software Foundation; either version 2 "\
"of the License, or (at your option) any later version.\n\n"\
"This program is distributed free of charge in the hope that it will "\
Modified: trunk/src/gtk-sat-module.c
===================================================================
--- trunk/src/gtk-sat-module.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/gtk-sat-module.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -1077,7 +1077,7 @@
name = g_strdup (module->name);
sat_log_log (SAT_LOG_LEVEL_DEBUG,
- _("%s: Module %s recevied CLOSE signal."),
+ _("%s: Module %s received CLOSE signal."),
__FUNCTION__, name);
switch (module->state) {
@@ -1212,7 +1212,7 @@
name = g_strdup (module->name);
sat_log_log (SAT_LOG_LEVEL_DEBUG,
- _("%s: Module %s recevied CONFIG signal."),
+ _("%s: Module %s received CONFIG signal."),
__FUNCTION__, name);
/* stop timeout */
Modified: trunk/src/sat-info.c
===================================================================
--- trunk/src/sat-info.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/sat-info.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -155,7 +155,7 @@
g_free (str);
/* international designator */
- label = gtk_label_new (_("Internation designator:"));
+ label = gtk_label_new (_("International designator:"));
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 3, 4);
Modified: trunk/src/sat-pass-dialogs.c
===================================================================
--- trunk/src/sat-pass-dialogs.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/sat-pass-dialogs.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -71,7 +71,7 @@
/** \brief Descriptive text for multi-pass list columns. */
const gchar *MULTI_PASS_COL_HINT[MULTI_PASS_COL_NUMBER] = {
- N_("Aquisition of signal (AOS)"),
+ N_("Acquisition of signal (AOS)"),
N_("Time of Closest Approach (TCA)"),
N_("Loss of signal (LOS)"),
N_("Duration of pass"),
Modified: trunk/src/sat-pref-qth.c
===================================================================
--- trunk/src/sat-pref-qth.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/sat-pref-qth.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -980,7 +980,7 @@
/* remove file */
if (g_remove (buff)) {
sat_log_log (SAT_LOG_LEVEL_ERROR,
- _("%s:%d: Failed top remove %s"),
+ _("%s:%d: Failed to remove %s"),
__FILE__, __LINE__, filename);
}
else {
Modified: trunk/src/sat-pref-rot-editor.c
===================================================================
--- trunk/src/sat-pref-rot-editor.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/sat-pref-rot-editor.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -176,7 +176,7 @@
gtk_entry_set_max_length (GTK_ENTRY (host), 50);
gtk_entry_set_text (GTK_ENTRY (host), "localhost");
gtk_widget_set_tooltip_text (host,
- _("Enter the host where rigctld is running. "\
+ _("Enter the host where rotctld is running. "\
"You can use both host name and IP address, "\
"e.g. 192.168.1.100\n\n"\
"If gpredict and rotctld are running on the "\
Modified: trunk/src/sat-pref-rot.c
===================================================================
--- trunk/src/sat-pref-rot.c 2011-11-23 19:57:19 UTC (rev 961)
+++ trunk/src/sat-pref-rot.c 2011-12-06 21:41:46 UTC (rev 962)
@@ -690,7 +690,7 @@
break;
default:
- text = g_strdup_printf (_("Uknown (%d)"), number);
+ text = g_strdup_printf (_("Unknown (%d)"), number);
break;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|