aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-ft-manager.c
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@src.gnome.org>2009-02-24 17:43:59 +0800
committerFrederic Peters <fpeters@src.gnome.org>2009-02-24 17:43:59 +0800
commit60a16fe558068be8c43f3b553c1c38a57f63fe43 (patch)
treef0099ffbcb2991d08135a0206f6df3ec9684db83 /src/empathy-ft-manager.c
parent4b7e46c895e3681e9739f6f48f77699481a7848a (diff)
downloadgsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar.gz
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar.bz2
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar.lz
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar.xz
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.tar.zst
gsoc2013-empathy-60a16fe558068be8c43f3b553c1c38a57f63fe43.zip
Some string comments requested by translators (#572875)
svn path=/trunk/; revision=2532
Diffstat (limited to 'src/empathy-ft-manager.c')
-rw-r--r--src/empathy-ft-manager.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-ft-manager.c b/src/empathy-ft-manager.c
index ed2228d16..67ecb32e2 100644
--- a/src/empathy-ft-manager.c
+++ b/src/empathy-ft-manager.c
@@ -110,8 +110,10 @@ ft_manager_format_interval (gint interval)
secs = interval;
if (hours > 0)
+ /* Translators: time left, when it is more than one hour */
return g_strdup_printf (_("%u:%02u.%02u"), hours, mins, secs);
else
+ /* Translators: time left, when is is less than one hour */
return g_strdup_printf (_("%02u.%02u"), mins, secs);
}