summaryrefslogtreecommitdiffstats
path: root/pyload/web/app/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/web/app/scripts')
-rw-r--r--pyload/web/app/scripts/helpers/formatTime.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/web/app/scripts/helpers/formatTime.js b/pyload/web/app/scripts/helpers/formatTime.js
index 0fb0f6058..750ce58fe 100644
--- a/pyload/web/app/scripts/helpers/formatTime.js
+++ b/pyload/web/app/scripts/helpers/formatTime.js
@@ -5,7 +5,7 @@ define('helpers/formatTime', ['underscore','handlebars', 'moment', 'utils/i18n']
function formatTime(time, format) {
if (time === -1)
- return i18n.gettext('unkown');
+ return i18n.gettext('unknown');
else if (time === -2)
return i18n.gettext('unlimited');
@@ -17,4 +17,4 @@ define('helpers/formatTime', ['underscore','handlebars', 'moment', 'utils/i18n']
Handlebars.registerHelper('formatTime', formatTime);
return formatTime;
-}); \ No newline at end of file
+});