Bug 680812 - Excessive space between "280" and "KB" in download dialog; r=dolske

This commit is contained in:
Kailas 2011-09-12 10:24:02 -04:00
Родитель 5ab8028e6f
Коммит 1d6c8e0ad4
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -50,8 +50,8 @@ selectDownloadDir=Select Download Folder
unknownAccept.label=Save File
unknownCancel.label=Cancel
fileType=%S file
# LOCALIZATION NOTE (fileSizeWithType): first %S is type, second %S is size, and third %S is unit
fileSizeWithType=%1S (%2S %3S)
# LOCALIZATION NOTE (orderedFileSizeWithType): first %S is type, second %S is size, and third %S is unit
orderedFileSizeWithType=%1$S (%2$S %3$S)
# LOCALIZATION NOTE (wpsDefaultOS2): OS/2 only, WPS refers to the Workplace Shell and should probably not be translated
wpsDefaultOS2=WPS Default

Просмотреть файл

@ -616,7 +616,7 @@ nsUnknownContentTypeDialog.prototype = {
let [size, unit] = DownloadUtils.
convertByteUnits(this.mLauncher.contentLength);
type.value = this.dialogElement("strings")
.getFormattedString("fileSizeWithType",
.getFormattedString("orderedFileSizeWithType",
[typeString, size, unit]);
}
else {