diff options
author | Bruce Cowan <bugs@bcowan.fastmail.co.uk> | 2009-02-17 05:24:13 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-02-17 05:24:13 +0800 |
commit | 163f1b912f1ad65f4de24cf913a38e5c531fe9c0 (patch) | |
tree | ab01a040111a8450ce6b91bbdfcf46d9628db6e3 | |
parent | 07aa34eff0d73eb01feba12c91ed6b560fc79762 (diff) | |
download | gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar.gz gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar.bz2 gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar.lz gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar.xz gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.tar.zst gsoc2013-empathy-163f1b912f1ad65f4de24cf913a38e5c531fe9c0.zip |
Minor string fixes. Fixes bug #571635
From: Bruce Cowan <bugs@bcowan.fastmail.co.uk>
svn path=/trunk/; revision=2473
-rw-r--r-- | data/empathy.schemas.in | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-chat-text-view.c | 2 | ||||
-rw-r--r-- | src/empathy-call-window.glade | 2 | ||||
-rw-r--r-- | src/empathy-preferences.glade | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/data/empathy.schemas.in b/data/empathy.schemas.in index 43a2f81a5..62b462fb2 100644 --- a/data/empathy.schemas.in +++ b/data/empathy.schemas.in @@ -111,7 +111,7 @@ <locale name="C"> <short>Disable sounds when away</short> <long> - Whether or not to play a sound notifications when away or busy. + Whether or not to play sound notifications when away or busy. </long> </locale> </schema> diff --git a/libempathy-gtk/empathy-chat-text-view.c b/libempathy-gtk/empathy-chat-text-view.c index b87128cc3..7e6fb459e 100644 --- a/libempathy-gtk/empathy-chat-text-view.c +++ b/libempathy-gtk/empathy-chat-text-view.c @@ -436,7 +436,7 @@ chat_text_view_append_timestamp (EmpathyChatTextView *view, date = g_date_new (); g_date_set_time_t (date, timestamp); - g_date_strftime (buf, 256, _("%A %d %B %Y"), date); + g_date_strftime (buf, 256, _("%A %B %d %Y"), date); g_string_append (str, buf); g_string_append (str, ", "); g_date_free (date); diff --git a/src/empathy-call-window.glade b/src/empathy-call-window.glade index 77a68c7ca..a3405db1e 100644 --- a/src/empathy-call-window.glade +++ b/src/empathy-call-window.glade @@ -111,7 +111,7 @@ <child> <widget class="GtkToggleToolButton" id="camera"> <property name="visible">True</property> - <property name="label" translatable="yes">Send Video</property> + <property name="label" translatable="yes">Send video</property> <property name="icon_name">camera-web</property> </widget> <packing> diff --git a/src/empathy-preferences.glade b/src/empathy-preferences.glade index 5abdd1700..c7c5ace4b 100644 --- a/src/empathy-preferences.glade +++ b/src/empathy-preferences.glade @@ -153,7 +153,7 @@ <child> <widget class="GtkLabel" id="label612"> <property name="visible">True</property> - <property name="label" translatable="yes"><b>Behaviour</b></property> + <property name="label" translatable="yes"><b>Behavior</b></property> <property name="use_markup">True</property> </widget> <packing> |