[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-i18n-doc
Subject:    patch to kteamtime for the branch
From:       Diego Iastrubni <elcuco () kdemail ! net>
Date:       2004-08-21 20:12:29
Message-ID: 200408211512.29816.elcuco () kdemail ! net
[Download RAW message or body]

People were complaining that the translators are not checking the sources...

anyway:
kdetoys/kteamtime.po does not compile for me. it complains about this line in 
the po file:

#: tealist.cpp:18
#, c-format
msgid "%1min"


I have patched the code to fix this in the branch, may I commit:
akademz@piv1-2:/usr/local/src/kdetoys> 
akademz@piv1-2:/usr/local/src/kdetoys/kteatime> cvs diff -u
Index: tealist.cpp
===================================================================
RCS file: /home/kde/kdetoys/kteatime/tealist.cpp,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 tealist.cpp
--- tealist.cpp 14 Mar 2003 13:21:29 -0000      1.1
+++ tealist.cpp 21 Aug 2004 20:01:46 -0000
@@ -15,11 +15,11 @@ QString int2time(int time)
 {
        QString str;
        if (time / 60) {
-               str.append(i18n("%1min").arg(time / 60));
+               str.append(i18n("%1 min").arg(time / 60));
                str.append(" ");
        }
        if (time % 60)
-               str.append(i18n("%1s").arg(time % 60));
+               str.append(i18n("%1 s").arg(time % 60));
        return str;
 }


However, it looks like this file has not changed since the KDE 3.2 betas... 
whats wrong?

--
diego, kde-il translation team
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic