From ce572328d7458af0492c4004b44bd9cca80cb180 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Mon, 29 Jul 2013 20:03:35 +0000 Subject: [PATCH] Remove langage specific word from code --- lib/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions.js b/lib/functions.js index 2aa3bd6..816ea6d 100755 --- a/lib/functions.js +++ b/lib/functions.js @@ -62,7 +62,7 @@ function upload_progress (e) */ var p = Math.round (e.loaded * 100 / e.total); if (p == 100) - show_upload_progression ('Finalizing ...'); + show_upload_progression (' '); else show_upload_progression (p.toString() + '%'); } @@ -180,7 +180,7 @@ function async_upload_progress (e) return; var p = Math.round ((e.loaded + async_global_transfered) * 100 / (async_global_file.size)); if (p == 100) - show_upload_progression ('Finalizing...'); + show_upload_progression (' '); else show_upload_progression (p.toString() + '%'); } -- 2.34.1