progress translation

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
_indexJS.inc.php for "Progress:", "Speed", & "Remaining".

Line 134:
Code:
textContent += 'Progress: '+progress+'%';
Line 141:
Code:
rightTextContent += 'Speed: '+bytesToSize(bytesPerSec, 2)+'ps. ';
Line 142:
Code:
rightTextContent += 'Remaining: '+humanReadableTime((totalBytes/bytesPerSec)-(uploadedBytes/bytesPerSec));
/js/global.js for "hour", "minute", & "second"

Line 106:
Code:
rs += numhours + " hour";
Line 115:
Code:
rs += numminutes + " minute";
Line 122:
Code:
rs += numseconds + " second";
 

legitti

New Member
YetiShare User
Nov 9, 2012
31
0
0
Thanks. Where can i translate /account_home.php dropdowns and "Next, previous" etc buttons?
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
The First/Previous/Next/Last is in

/js/jquery.dataTables.min.js

Find:
Code:
oPaginate:{sFirst:"First",sPrevious:"Previous",sNext:"Next",sLast:"Last"}
Dropdowns are in the database in the file status table
 

legitti

New Member
YetiShare User
Nov 9, 2012
31
0
0
Thanks, where can i translate 100% uploaded on the title when im done uploading a file
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
I think the same _indexJS.inc.php

Line 170:
Code:
$(document).attr("title", progress+"% Uploaded - <?php echo PAGE_NAME; ?> - <?php echo SITE_CONFIG_SITE_NAME; ?>");
 

legitti

New Member
YetiShare User
Nov 9, 2012
31
0
0
Thanks again. What about "Copied text to clipboard" on alertbox, after upload is done and i click the link to copy links
 

legitti

New Member
YetiShare User
Nov 9, 2012
31
0
0
Thanks a ton! Your really helpful. Ill post here if i need something else. ;)