summaryrefslogtreecommitdiffstats
path: root/pyload/web/app/scripts
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-08-13 22:51:49 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-08-13 22:51:49 +0200
commitde65db1af9badf960e0e5c67dedf02813b05d092 (patch)
tree279793eb933256c20318d600f6cc16a4d78d3176 /pyload/web/app/scripts
parentFreakshareCom: fixed #210 (diff)
downloadpyload-de65db1af9badf960e0e5c67dedf02813b05d092.tar.xz
Fixed typo error
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
+});