adityatelange / hugo-PaperMod

A fast, clean, responsive Hugo theme.
https://adityatelange.github.io/hugo-PaperMod/
MIT License
9.94k stars 2.7k forks source link

ShowReadingTime in Bahasa Indonesia is broken #172

Closed snydez closed 3 years ago

snydez commented 3 years ago

Hi there, When I set defaultContentLanguage: id and ShowReadingTime: true the display is broken. While if I didn't set defaultContentLanguage, things are ok.

image

muhammadhanif commented 3 years ago

Create id.yaml file and save it in themes/hugo-PaperMod/i18n/:

- id: prev_page
  translation: "Halaman Sebelumnya"

- id: next_page
  translation: "Halaman Selanjutnya"

- id: read_time
  translation:
    one : "1 menit"
    other: "{{ .Count }} menit"

- id: toc
  translation: "Daftar Isi"

- id: translations
  translation: "Terjemahan"
adityatelange commented 3 years ago

Hi there, When I set defaultContentLanguage: id and ShowReadingTime: true the display is broken. While if I didn't set defaultContentLanguage, things are ok.

image

Sorry but I cannot reproduce the issue, checkout the snap below image

with id in URL and defaultContentLanguage unset :thinking: Could you share source or website this is displayed on ?

snydez commented 3 years ago

Hi @adityatelange I try @muhammadhanif suggestion, and it's working now.

thank you all