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
|
@ -23,4 +23,7 @@ other = "تعديل هذه الصفحة"
|
|||
other = "المزيد"
|
||||
|
||||
[Expand-title]
|
||||
other = "...قم بتوسيع"
|
||||
other = "...قم بتوسيع"
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
|
@ -23,4 +23,7 @@ other = "Bearbeite diese Seite"
|
|||
other = "Mehr"
|
||||
|
||||
[Expand-title]
|
||||
other = "Erweitere mich..."
|
||||
other = "Erweitere mich..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
|
@ -23,4 +23,7 @@ other = "Edit this page"
|
|||
other = "More"
|
||||
|
||||
[Expand-title]
|
||||
other = "Expand me..."
|
||||
other = "Expand me..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
|
@ -24,3 +24,6 @@ other = "Más"
|
|||
|
||||
[Expand-title]
|
||||
other = "Expandir..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -23,4 +23,7 @@ other = "Modifier la page"
|
|||
other = "Aller plus loin"
|
||||
|
||||
[Expand-title]
|
||||
other = "Déroulez-moi..."
|
||||
other = "Déroulez-moi..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "ko"
|
|
@ -24,3 +24,6 @@ other = "अधिक सामग्री दिखाएं"
|
|||
|
||||
[Expand-title]
|
||||
other = "विस्तार करे..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -24,3 +24,6 @@ other = "Lainnya"
|
|||
|
||||
[Expand-title]
|
||||
other = "Bentangkan..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -24,3 +24,6 @@ other = "更に"
|
|||
|
||||
[Expand-title]
|
||||
other = "開く..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -24,3 +24,6 @@ other = "Snelkoppelingen"
|
|||
|
||||
[Expand-title]
|
||||
other = "Lees meer..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -24,3 +24,6 @@ other = "Mais"
|
|||
|
||||
[Expand-title]
|
||||
other = "Expandir..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -23,4 +23,7 @@ other = "Редактировать"
|
|||
other = "Еще"
|
||||
|
||||
[Expand-title]
|
||||
other = "Развернуть..."
|
||||
other = "Развернуть..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "килобайт"
|
|
@ -24,3 +24,6 @@ other = "Dahası Var"
|
|||
|
||||
[Expand-title]
|
||||
other = "Genişlet..."
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -24,3 +24,6 @@ other = "更多"
|
|||
|
||||
[Expand-title]
|
||||
other = "展开"
|
||||
|
||||
[BinaryPrefix-kilobyte]
|
||||
other = "kb"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
|
||||
{{.Name}}
|
||||
</a>
|
||||
({{div .Size 1024 }} ko)
|
||||
({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
|
||||
</li>
|
||||
{{end}}
|
||||
{{else}}
|
||||
|
@ -26,7 +26,7 @@
|
|||
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
|
||||
{{.Name}}
|
||||
</a>
|
||||
({{div .Size 1024 }} ko)
|
||||
({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
|
||||
</li>
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
|
Loading…
Reference in a new issue