commit e58ef5a90cd34b88fff36644e49f6e87645d225f
Author: Daniele Forsi <[email protected]>
Date: Thu Dec 30 19:09:23 2010 +0100
String fixes
* data/glade/gtkpod.glade
* plugins/core_preferences/core_prefs.xml
* Do not mark empty properties as translatable (they will be set with
prefs value at runtime or with user input).
* libgtkpod/file_convert.c
* Make "programming error" messages more similar to the majority of
such messages and do not translate them.
* src/anjuta-app.c
* Fix typo.
* plugins/sorttab_display/sorttab_display.glade
* Do no make filler label translatable (it should probably be replaced
with a GtkAlignment widget).
* plugins/filetype_ogg/filetype_ogg.plugin
* plugins/filetype_ogg/oggfile.c
* Replace "ogg" with "Ogg" as per http://en.wikipedia.org/wiki/Ogg
data/glade/gtkpod.glade | 2 +-
libgtkpod/file_convert.c | 4 ++--
plugins/core_preferences/core_prefs.xml | 2 +-
plugins/filetype_ogg/filetype_ogg.plugin | 2 +-
plugins/filetype_ogg/oggfile.c | 2 +-
plugins/sorttab_display/sorttab_display.glade | 4 ++--
src/anjuta-app.c | 2 +-
7 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/data/glade/gtkpod.glade b/data/glade/gtkpod.glade
index 4553ddf..18a2ef9 100644
--- a/data/glade/gtkpod.glade
+++ b/data/glade/gtkpod.glade
@@ -583,7 +583,7 @@ Ignore rules</property>
<widget class="GtkDialog" id="input_box">
<property name="events">GDK_POINTER_MOTION_MASK |
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK |
GDK_BUTTON_RELEASE_MASK</property>
<property name="border_width">5</property>
- <property name="title" translatable="yes"> </property>
+ <property name="title"></property>
<property name="resizable">False</property>
<property name="modal">True</property>
<property name="window_position">center-on-parent</property>
diff --git a/libgtkpod/file_convert.c b/libgtkpod/file_convert.c
index 3cb2d63..5f81ddb 100644
--- a/libgtkpod/file_convert.c
+++ b/libgtkpod/file_convert.c
@@ -1367,7 +1367,7 @@ static gboolean conversion_scheduler_unlocked(Conversion
*conv) {
break;
case FILE_CONVERT_KILLED:
case FILE_CONVERT_SCHEDULED:
- fprintf(stderr, _("Programming error, conversion type %d
not expected in conversion_scheduler()\n"), etr->conversion_status);
+ fprintf(stderr, "Programming error: conversion type %d not
expected in conversion_scheduler()\n", etr->conversion_status);
conversion_convtrack_free(ctr);
break;
}
@@ -2203,7 +2203,7 @@ static gpointer conversion_thread(gpointer data) {
gl->data = NULL;
}
else {
- fprintf(stderr, _("***** programming error -- g_thread_self not found
in threads list\n"));
+ fprintf(stderr, "***** Programming error: g_thread_self not found in
threads list\n");
}
/* reset force flag if we weren't cancelled because of too many
diff --git a/plugins/core_preferences/core_prefs.xml
b/plugins/core_preferences/core_prefs.xml
index ef341be..99bd458 100644
--- a/plugins/core_preferences/core_prefs.xml
+++ b/plugins/core_preferences/core_prefs.xml
@@ -251,7 +251,7 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="events">GDK_POINTER_MOTION_MASK |
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK |
GDK_BUTTON_RELEASE_MASK</property>
- <property name="text" translatable="yes">n</property>
+ <property name="text"></property>
<signal name="changed" handler="on_filename_pattern_changed"/>
</object>
<packing>
diff --git a/plugins/filetype_ogg/filetype_ogg.plugin
b/plugins/filetype_ogg/filetype_ogg.plugin
index a3eef6a..02594e8 100644
--- a/plugins/filetype_ogg/filetype_ogg.plugin
+++ b/plugins/filetype_ogg/filetype_ogg.plugin
@@ -1,4 +1,4 @@
[Anjuta Plugin]
Location=filetype_ogg:OGGFileTypePlugin
Name=OGG File Type Plugin
-Description=Support for the ogg file type
+Description=Support for the Ogg file type
diff --git a/plugins/filetype_ogg/oggfile.c b/plugins/filetype_ogg/oggfile.c
index be7e4c8..19ced24 100644
--- a/plugins/filetype_ogg/oggfile.c
+++ b/plugins/filetype_ogg/oggfile.c
@@ -71,7 +71,7 @@ Track *ogg_get_file_info(const gchar *oggFileName) {
if (ov_open(file, &oggFile, NULL, 0) != 0) {
gchar *filename = NULL;
filename = charset_to_utf8(oggFileName);
- gtkpod_warning(_("'%s' does not appear to be an ogg audio
file.\n"), filename);
+ gtkpod_warning(_("'%s' does not appear to be an Ogg audio
file.\n"), filename);
g_free(filename);
fclose(file);
}
diff --git a/plugins/sorttab_display/sorttab_display.glade
b/plugins/sorttab_display/sorttab_display.glade
index b4bd57f..df67852 100644
--- a/plugins/sorttab_display/sorttab_display.glade
+++ b/plugins/sorttab_display/sorttab_display.glade
@@ -1060,7 +1060,7 @@ Added
<child>
<widget class="GtkLabel" id="label284">
<property name="visible">True</property>
- <property name="label" translatable="yes">
</property>
+ <property name="label"> </property>
</widget>
<packing>
<property name="expand">False</property>
@@ -1900,7 +1900,7 @@ Added
<child>
<widget class="GtkLabel" id="label298">
<property name="visible">True</property>
- <property name="label" translatable="yes">
</property>
+ <property name="label"> </property>
</widget>
<packing>
<property name="expand">False</property>
diff --git a/src/anjuta-app.c b/src/anjuta-app.c
index 91c389f..07edf9f 100644
--- a/src/anjuta-app.c
+++ b/src/anjuta-app.c
@@ -1181,7 +1181,7 @@ static void on_response(GtkWidget *w, gint response,
gpointer id) {
on_apply_clicked(w, id);
break;
default:
- g_warning ("Programming error: resonse '%d' received in
on_response()\n", response);
+ g_warning ("Programming error: response '%d' received in
on_response()\n", response);
on_cancel_clicked(w, id);
break;
}
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2