Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 3 additions & 37 deletions apps/files/js/file-upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -606,43 +606,9 @@ OC.Upload = {
bufferIndex = (bufferIndex + 1) % bufferSize;
}
var smoothRemainingSeconds = (bufferTotal / bufferSize); //seconds
var date = new Date(smoothRemainingSeconds * 1000);
var timeStringDesktop = "";
var timeStringMobile = "";
if(date.getUTCHours() > 0){
timeStringDesktop = t('files', '{hours}:{minutes}:{seconds} hour{plural_s} left' , {
hours:date.getUTCHours(),
minutes: ('0' + date.getUTCMinutes()).slice(-2),
seconds: ('0' + date.getUTCSeconds()).slice(-2),
plural_s: ( smoothRemainingSeconds === 3600 ? "": "s") // 1 hour = 1*60m*60s = 3600s
});
timeStringMobile = t('files', '{hours}:{minutes}h' , {
hours:date.getUTCHours(),
minutes: ('0' + date.getUTCMinutes()).slice(-2),
seconds: ('0' + date.getUTCSeconds()).slice(-2)
});
} else if(date.getUTCMinutes() > 0){
timeStringDesktop = t('files', '{minutes}:{seconds} minute{plural_s} left' , {
minutes: date.getUTCMinutes(),
seconds: ('0' + date.getUTCSeconds()).slice(-2),
plural_s: (smoothRemainingSeconds === 60 ? "": "s") // 1 minute = 1*60s = 60s
});
timeStringMobile = t('files', '{minutes}:{seconds}m' , {
minutes: date.getUTCMinutes(),
seconds: ('0' + date.getUTCSeconds()).slice(-2)
});
} else if(date.getUTCSeconds() > 0){
timeStringDesktop = t('files', '{seconds} second{plural_s} left' , {
seconds: date.getUTCSeconds(),
plural_s: (smoothRemainingSeconds === 1 ? "": "s") // 1 second = 1s = 1s
});
timeStringMobile = t('files', '{seconds}s' , {seconds: date.getUTCSeconds()});
} else {
timeStringDesktop = t('files', 'Any moment now...');
timeStringMobile = t('files', 'Soon...');
}
$('#uploadprogressbar .label .mobile').text(timeStringMobile);
$('#uploadprogressbar .label .desktop').text(timeStringDesktop);
var h = moment.duration(smoothRemainingSeconds, "seconds").humanize();
$('#uploadprogressbar .label .mobile').text(h);
$('#uploadprogressbar .label .desktop').text(h);
$('#uploadprogressbar').attr('original-title',
t('files', '{loadedSize} of {totalSize} ({bitrate})' , {
loadedSize: humanFileSize(data.loaded),
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Nun pudo obtenese'l resultáu del sirvidor.",
"Uploading..." : "Xubiendo...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "Falten {hours}:{minutes}:{seconds} hour{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "Falten {minutes}:{seconds} minute{plural_s} ",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "Falten {seconds} second{plural_s}",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "En cualquier momentu...",
"Soon..." : "Pronto...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.",
"Actions" : "Aiciones",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Nun pudo obtenese'l resultáu del sirvidor.",
"Uploading..." : "Xubiendo...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "Falten {hours}:{minutes}:{seconds} hour{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "Falten {minutes}:{seconds} minute{plural_s} ",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "Falten {seconds} second{plural_s}",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "En cualquier momentu...",
"Soon..." : "Pronto...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.",
"Actions" : "Aiciones",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/cs_CZ.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Nepodařilo se získat výsledek ze serveru.",
"Uploading..." : "Odesílám...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "zbývá {hours}:{minutes}:{seconds} hour{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "zbývá {minutes}:{seconds} minute{plural_s}",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} sekund{plural_s} zbývá",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "Každou chvíli...",
"Soon..." : "Brzy...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} z {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.",
"Actions" : "Činnosti",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/cs_CZ.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Nepodařilo se získat výsledek ze serveru.",
"Uploading..." : "Odesílám...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "zbývá {hours}:{minutes}:{seconds} hour{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "zbývá {minutes}:{seconds} minute{plural_s}",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} sekund{plural_s} zbývá",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "Každou chvíli...",
"Soon..." : "Brzy...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} z {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.",
"Actions" : "Činnosti",
Expand Down
2 changes: 0 additions & 2 deletions apps/files/l10n/da.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ OC.L10N.register(
"Could not get result from server." : "Kunne ikke hente resultat fra server.",
"Uploading..." : "Uploader...",
"..." : "...",
"Any moment now..." : "Når som helst...",
"Soon..." : "Snart...",
"File upload is in progress. Leaving the page now will cancel the upload." : "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
"Actions" : "Handlinger",
"Download" : "Download",
Expand Down
2 changes: 0 additions & 2 deletions apps/files/l10n/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
"Could not get result from server." : "Kunne ikke hente resultat fra server.",
"Uploading..." : "Uploader...",
"..." : "...",
"Any moment now..." : "Når som helst...",
"Soon..." : "Snart...",
"File upload is in progress. Leaving the page now will cancel the upload." : "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
"Actions" : "Handlinger",
"Download" : "Download",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Ergebnis konnte nicht vom Server abgerufen werden.",
"Uploading..." : "Hochladen…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} Stunde{plural_s} übrig",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} Minute{plural_s} übrig",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} Sekund{plural_s} übrig",
"{seconds}s" : "{seconds}n",
"Any moment now..." : "Jeden Augenblick...",
"Soon..." : "Bald...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} von {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.",
"Actions" : "Aktionen",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Ergebnis konnte nicht vom Server abgerufen werden.",
"Uploading..." : "Hochladen…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} Stunde{plural_s} übrig",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} Minute{plural_s} übrig",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} Sekund{plural_s} übrig",
"{seconds}s" : "{seconds}n",
"Any moment now..." : "Jeden Augenblick...",
"Soon..." : "Bald...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} von {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.",
"Actions" : "Aktionen",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/de_DE.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Ergebnis konnte nicht vom Server abgerufen werden.",
"Uploading..." : "Hochladen…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} Stunde{plural_s} übrig",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} Minute{plural_s} übrig",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} Sekund{plural_s} übrig",
"{seconds}s" : "{seconds}n",
"Any moment now..." : "Jeden Augenblick...",
"Soon..." : "Bald...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} von {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.",
"Actions" : "Aktionen",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Ergebnis konnte nicht vom Server abgerufen werden.",
"Uploading..." : "Hochladen…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} Stunde{plural_s} übrig",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} Minute{plural_s} übrig",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} Sekund{plural_s} übrig",
"{seconds}s" : "{seconds}n",
"Any moment now..." : "Jeden Augenblick...",
"Soon..." : "Bald...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} von {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.",
"Actions" : "Aktionen",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/en_GB.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Could not get result from server.",
"Uploading..." : "Uploading...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minute{plural_s} left",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} second{plural_s} left",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "Any moment now...",
"Soon..." : "Soon...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} of {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "File upload is in progress. Leaving the page now will cancel the upload.",
"Actions" : "Actions",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Could not get result from server.",
"Uploading..." : "Uploading...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minute{plural_s} left",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} second{plural_s} left",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "Any moment now...",
"Soon..." : "Soon...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} of {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "File upload is in progress. Leaving the page now will cancel the upload.",
"Actions" : "Actions",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "No se pudo obtener respuesta del servidor.",
"Uploading..." : "Subiendo...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hora{plural_s} pendiente",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minuto{plural_s} pendiente",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} segundo{plural_s} pendiente",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "En cualquier momento...",
"Soon..." : "Dentro de poco...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.",
"Actions" : "Acciones",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "No se pudo obtener respuesta del servidor.",
"Uploading..." : "Subiendo...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hora{plural_s} pendiente",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minuto{plural_s} pendiente",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} segundo{plural_s} pendiente",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "En cualquier momento...",
"Soon..." : "Dentro de poco...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.",
"Actions" : "Acciones",
Expand Down
3 changes: 0 additions & 3 deletions apps/files/l10n/fi_FI.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Tuloksien saaminen palvelimelta ei onnistunut.",
"Uploading..." : "Lähetetään...",
"..." : "...",
"{seconds}s" : "{seconds} s",
"Any moment now..." : "Minä tahansa hetkenä...",
"Soon..." : "Pian...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.",
"Actions" : "Toiminnot",
Expand Down
3 changes: 0 additions & 3 deletions apps/files/l10n/fi_FI.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
"Could not get result from server." : "Tuloksien saaminen palvelimelta ei onnistunut.",
"Uploading..." : "Lähetetään...",
"..." : "...",
"{seconds}s" : "{seconds} s",
"Any moment now..." : "Minä tahansa hetkenä...",
"Soon..." : "Pian...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.",
"Actions" : "Toiminnot",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "Ne peut recevoir les résultats du serveur.",
"Uploading..." : "Téléversement en cours…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} heure{plural_s} restante{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minute{plural_s} restante{plural_s}",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} seconde{plural_s} restante{plural_s}",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "D'un instant à l'autre...",
"Soon..." : "Bientôt...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} sur {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.",
"Actions" : "Actions",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "Ne peut recevoir les résultats du serveur.",
"Uploading..." : "Téléversement en cours…",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} heure{plural_s} restante{plural_s}",
"{hours}:{minutes}h" : "{hours}:{minutes}h",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} minute{plural_s} restante{plural_s}",
"{minutes}:{seconds}m" : "{minutes}:{seconds}m",
"{seconds} second{plural_s} left" : "{seconds} seconde{plural_s} restante{plural_s}",
"{seconds}s" : "{seconds}s",
"Any moment now..." : "D'un instant à l'autre...",
"Soon..." : "Bientôt...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} sur {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.",
"Actions" : "Actions",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/he.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ OC.L10N.register(
"Could not get result from server." : "לא ניתן לגשת לתוצאות מהשרת.",
"Uploading..." : "העלאה...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left",
"{hours}:{minutes}h" : "{hours}:{minutes}שעות",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} דקות{plural_s} נשארו",
"{minutes}:{seconds}m" : "{minutes}:{seconds}דקות",
"{seconds} second{plural_s} left" : "{seconds} שניות{plural_s} נשארו",
"{seconds}s" : "{seconds}שניות",
"Any moment now..." : "עכשיו בכל רגע...",
"Soon..." : "בקרוב...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} מתוך {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.",
"Actions" : "פעולות",
Expand Down
8 changes: 0 additions & 8 deletions apps/files/l10n/he.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
"Could not get result from server." : "לא ניתן לגשת לתוצאות מהשרת.",
"Uploading..." : "העלאה...",
"..." : "...",
"{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left",
"{hours}:{minutes}h" : "{hours}:{minutes}שעות",
"{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} דקות{plural_s} נשארו",
"{minutes}:{seconds}m" : "{minutes}:{seconds}דקות",
"{seconds} second{plural_s} left" : "{seconds} שניות{plural_s} נשארו",
"{seconds}s" : "{seconds}שניות",
"Any moment now..." : "עכשיו בכל רגע...",
"Soon..." : "בקרוב...",
"{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} מתוך {totalSize} ({bitrate})",
"File upload is in progress. Leaving the page now will cancel the upload." : "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.",
"Actions" : "פעולות",
Expand Down
Loading