]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/contrib/strutl.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 8 Jan 2009 12:48:06 +0000 (13:48 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 8 Jan 2009 12:48:06 +0000 (13:48 +0100)
  - fix TimeToStr i18n (LP: #289807)

apt-pkg/contrib/strutl.cc
debian/changelog

index 98d9c41e43b213deb5f8231d9938c97679d6a771..327381d035fcd7625ca24166ee15f654f0dc4489 100644 (file)
@@ -331,23 +331,27 @@ string TimeToStr(unsigned long Sec)
    {
       if (Sec > 60*60*24)
       {
-        sprintf(S,"%lid %lih%limin%lis",Sec/60/60/24,(Sec/60/60) % 24,(Sec/60) % 60,Sec % 60);
+        //d means days, h means hours, min means minutes, s means seconds
+        sprintf(S,_("%lid %lih %limin %lis"),Sec/60/60/24,(Sec/60/60) % 24,(Sec/60) % 60,Sec % 60);
         break;
       }
       
       if (Sec > 60*60)
       {
-        sprintf(S,"%lih%limin%lis",Sec/60/60,(Sec/60) % 60,Sec % 60);
+        //h means hours, min means minutes, s means seconds
+        sprintf(S,_("%lih %limin %lis"),Sec/60/60,(Sec/60) % 60,Sec % 60);
         break;
       }
       
       if (Sec > 60)
       {
-        sprintf(S,"%limin%lis",Sec/60,Sec % 60);
+        //min means minutes, s means seconds
+        sprintf(S,_("%limin %lis"),Sec/60,Sec % 60);
         break;
       }
-      
-      sprintf(S,"%lis",Sec);
+
+      //s means seconds
+      sprintf(S,_("%lis"),Sec);
       break;
    }
    
index 7600db69959a3d3056b079b50e466cf4f7316341..fea9133ee66ee420f692707b80a8f3cc092cfaed 100644 (file)
@@ -33,6 +33,8 @@ apt (0.7.21) UNRELEASED; urgency=low
       and show a message (LP: #202219)
   * apt-pkg/deb/debsystem.cc:
     - make strings i18n able 
+  * apt-pkg/contrib/strutl.cc:
+    - fix TimeToStr i18n (LP: #289807)
 
   [ Dereck Wonnacott ]
   * apt-ftparchive might write corrupt Release files (LP: #46439)