empathy r1915 - trunk/src
- From: xclaesse svn gnome org
- To: svn-commits-list gnome org
- Subject: empathy r1915 - trunk/src
- Date: Fri, 21 Nov 2008 16:25:19 +0000 (UTC)
Author: xclaesse
Date: Fri Nov 21 16:25:19 2008
New Revision: 1915
URL: http://svn.gnome.org/viewvc/empathy?rev=1915&view=rev
Log:
Replace Q_() with C_() for translation context.
Modified:
trunk/src/empathy-ft-manager.c
Modified: trunk/src/empathy-ft-manager.c
==============================================================================
--- trunk/src/empathy-ft-manager.c (original)
+++ trunk/src/empathy-ft-manager.c Fri Nov 21 16:25:19 2008
@@ -231,10 +231,7 @@
gchar *transferred_bytes_str;
if (total_size == EMPATHY_TP_FILE_UNKNOWN_SIZE)
- /* translators: the text before the "|" is context to
- * help you decide on the correct translation. You MUST
- * OMIT it in the translated string. */
- total_size_str = g_strdup (Q_("file size|Unknown"));
+ total_size_str = g_strdup (C_("file size", "Unknown"));
else
total_size_str = g_format_size_for_display (total_size);
@@ -301,10 +298,7 @@
{
if (state != EMP_FILE_TRANSFER_STATE_COMPLETED &&
state != EMP_FILE_TRANSFER_STATE_CANCELLED)
- /* translators: the text before the "|" is context to
- * help you decide on the correct translation. You
- * MUST OMIT it in the translated string. */
- remaining_str = g_strdup (Q_("remaining time|Unknown"));
+ remaining_str = g_strdup (C_("remaining time", "Unknown"));
}
else
remaining_str = ft_manager_format_interval (remaining);
@@ -364,10 +358,7 @@
if (percent < 0)
{
percent = 0;
- /* Translators: The text before the "|" is context to help you
- * decide on the correct translation. You MUST OMIT it in the
- * translated string. */
- text = Q_("file transfer percent|Unknown");
+ text = C_("file transfer percent", "Unknown");
}
g_object_set (renderer, "text", text, "value", percent, NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]