]> git.p6c8.net - jirafeau.git/commitdiff
[FEATURE] change labels
authorFlorian Fricke <fricke@webit.de>
Thu, 14 Dec 2017 14:37:18 +0000 (15:37 +0100)
committerpixelbrackets <mail@pixelbrackets.de>
Tue, 19 Dec 2017 10:51:32 +0000 (11:51 +0100)
lib/functions.js.php

index d552cd88ff4fecca250c96c162e80f81e2484a61..7177b85cfdfc155317e0d54ab4b1530dfacf798e 100644 (file)
@@ -607,17 +607,17 @@ function upload_time_estimation_speed_string()
     if (s <= 1000)
     {
         res = s.toString();
-        scale = "o/s";
+        scale = "Bit/s";
     }
     else if (s < 1000000)
     {
         res = Math.floor(s/100) / 10;
-        scale = "Ko/s";
+        scale = "KBit/s";
     }
     else
     {
         res = Math.floor(s/100000) / 10;
-        scale = "Mo/s";
+        scale = "Mbit/s";
     }
     if (res == 0)
         return '';
@@ -627,7 +627,14 @@ function upload_time_estimation_speed_string()
 function milliseconds_to_time_string (milliseconds)
 {
     function numberEnding (number) {
+      var currentLanguage = '<?php echo $cfg['lang']; ?>';
+
+      if(currentLanguage == 'de') {
+        return (number > 1) ? 'n' : '';
+      }
+      else {
         return (number > 1) ? 's' : '';
+      }
     }
 
     var temp = Math.floor(milliseconds / 1000);

patrick-canterino.de