mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-18 21:28:10 +01:00
Remove langage specific word from code
This commit is contained in:
parent
c011d5def4
commit
ce572328d7
@ -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() + '%');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user