]> git.p6c8.net - jirafeau_project.git/blobdiff - lib/functions.js.php
[TASK] Add translation item for plural
[jirafeau_project.git] / lib / functions.js.php
index 5455d78c975451960cd5483776756f75537093d9..983736f12a9eb14665ab7c1b92bf02161071bc7f 100644 (file)
@@ -641,14 +641,7 @@ 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' : '';
-      }
+        return (number > 1) ? translate ('PLURAL_ENDING') : '';
     }
 
     var temp = Math.floor(milliseconds / 1000);

patrick-canterino.de