mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-18 19:00:24 +00:00
Added binary prefix for kilobyte using i18n (#461)
This commit is contained in:
parent
c3a66e9b4d
commit
ae732f3931
14 changed files with 46 additions and 7 deletions
|
@ -24,3 +24,6 @@ other = "المزيد"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "...قم بتوسيع"
|
other = "...قم بتوسيع"
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
|
@ -24,3 +24,6 @@ other = "Mehr"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Erweitere mich..."
|
other = "Erweitere mich..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
|
@ -24,3 +24,6 @@ other = "More"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Expand me..."
|
other = "Expand me..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
|
@ -24,3 +24,6 @@ other = "Más"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Expandir..."
|
other = "Expandir..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "Aller plus loin"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Déroulez-moi..."
|
other = "Déroulez-moi..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "ko"
|
|
@ -24,3 +24,6 @@ other = "अधिक सामग्री दिखाएं"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "विस्तार करे..."
|
other = "विस्तार करे..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "Lainnya"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Bentangkan..."
|
other = "Bentangkan..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "更に"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "開く..."
|
other = "開く..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "Snelkoppelingen"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Lees meer..."
|
other = "Lees meer..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "Mais"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Expandir..."
|
other = "Expandir..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "Еще"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Развернуть..."
|
other = "Развернуть..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "килобайт"
|
|
@ -24,3 +24,6 @@ other = "Dahası Var"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "Genişlet..."
|
other = "Genişlet..."
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -24,3 +24,6 @@ other = "更多"
|
||||||
|
|
||||||
[Expand-title]
|
[Expand-title]
|
||||||
other = "展开"
|
other = "展开"
|
||||||
|
|
||||||
|
[BinaryPrefix-kilobyte]
|
||||||
|
other = "kb"
|
||||||
|
|
|
@ -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}}
|
||||||
|
|
Loading…
Reference in a new issue