Added binary prefix for kilobyte using i18n (#461)

This commit is contained in:
Jian Liew 2020-11-12 17:48:55 +08:00 committed by GitHub
parent c3a66e9b4d
commit ae732f3931
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 46 additions and 7 deletions

View file

@ -23,4 +23,7 @@ other = "تعديل هذه الصفحة"
other = "المزيد" other = "المزيد"
[Expand-title] [Expand-title]
other = "...قم بتوسيع" other = "...قم بتوسيع"
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -23,4 +23,7 @@ other = "Bearbeite diese Seite"
other = "Mehr" other = "Mehr"
[Expand-title] [Expand-title]
other = "Erweitere mich..." other = "Erweitere mich..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -23,4 +23,7 @@ other = "Edit this page"
other = "More" other = "More"
[Expand-title] [Expand-title]
other = "Expand me..." other = "Expand me..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "Más"
[Expand-title] [Expand-title]
other = "Expandir..." other = "Expandir..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -23,4 +23,7 @@ other = "Modifier la page"
other = "Aller plus loin" other = "Aller plus loin"
[Expand-title] [Expand-title]
other = "Déroulez-moi..." other = "Déroulez-moi..."
[BinaryPrefix-kilobyte]
other = "ko"

View file

@ -24,3 +24,6 @@ other = "अधिक सामग्री दिखाएं"
[Expand-title] [Expand-title]
other = "विस्तार करे..." other = "विस्तार करे..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "Lainnya"
[Expand-title] [Expand-title]
other = "Bentangkan..." other = "Bentangkan..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "更に"
[Expand-title] [Expand-title]
other = "開く..." other = "開く..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "Snelkoppelingen"
[Expand-title] [Expand-title]
other = "Lees meer..." other = "Lees meer..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "Mais"
[Expand-title] [Expand-title]
other = "Expandir..." other = "Expandir..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -23,4 +23,7 @@ other = "Редактировать"
other = "Еще" other = "Еще"
[Expand-title] [Expand-title]
other = "Развернуть..." other = "Развернуть..."
[BinaryPrefix-kilobyte]
other = "килобайт"

View file

@ -24,3 +24,6 @@ other = "Dahası Var"
[Expand-title] [Expand-title]
other = "Genişlet..." other = "Genişlet..."
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -24,3 +24,6 @@ other = "更多"
[Expand-title] [Expand-title]
other = "展开" other = "展开"
[BinaryPrefix-kilobyte]
other = "kb"

View file

@ -18,7 +18,7 @@
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" > <a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
{{.Name}} {{.Name}}
</a> </a>
({{div .Size 1024 }} ko) ({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
</li> </li>
{{end}} {{end}}
{{else}} {{else}}
@ -26,7 +26,7 @@
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" > <a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
{{.Name}} {{.Name}}
</a> </a>
({{div .Size 1024 }} ko) ({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
</li> </li>
{{end}} {{end}}
{{end}} {{end}}