From a8362beb5fc46afc82494bba38950ce2cfe25df2 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 28 May 2020 21:36:05 +0200 Subject: [PATCH 01/38] allow usage of ltr since v0.67.1 it is possible to define language direction see https://github.com/gohugoio/hugo/issues/6550 --- layouts/partials/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index bd5a9c4e..e802e224 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,5 +1,5 @@ - + {{- partial "head/head" . -}} From 93b1b132fddfef849363ebc3aefb0b856de74a36 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Date: Thu, 28 May 2020 22:16:05 +0200 Subject: [PATCH 02/38] default html direction: use auto instead of ltr Co-authored-by: Munif Tanjim --- layouts/partials/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index e802e224..1f43eb90 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,5 +1,5 @@ - + {{- partial "head/head" . -}} From 9fd0dcd0e4ea192db58189b8e04177b48824fdef Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 28 May 2020 22:26:53 +0200 Subject: [PATCH 03/38] replace rtl support by LanguageDirection since v0.67.1 it is possible to define language direction see gohugoio/hugo#6550 --- exampleSite/config.toml | 1 - layouts/partials/head/includes.html | 2 +- netlify.toml | 2 +- theme.toml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 43ab4351..d5f67c2f 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -49,7 +49,6 @@ showLastmod = true taxonomyCloudShuffle = true accentColor = "#ffcd00" hideMainMenu = false -rtl = false [params.sidebar] enable = true diff --git a/layouts/partials/head/includes.html b/layouts/partials/head/includes.html index 8264e8c7..5e28a114 100644 --- a/layouts/partials/head/includes.html +++ b/layouts/partials/head/includes.html @@ -1,7 +1,7 @@ -{{- if .Site.Params.settings.rtl -}} +{{- if eq .Site.Language.LanguageDirection "rtl" -}} {{- end -}} diff --git a/netlify.toml b/netlify.toml index 1a0ccd40..c05fe97e 100644 --- a/netlify.toml +++ b/netlify.toml @@ -12,4 +12,4 @@ command = "ln -s ${PWD} ../minimo && hugo --source=exampleSite --baseURL=${DEPLO [build.environment] HUGO_THEMESDIR = "../.." -HUGO_VERSION = "0.66.0" +HUGO_VERSION = "0.67.1" diff --git a/theme.toml b/theme.toml index 6bd644ca..9db64097 100644 --- a/theme.toml +++ b/theme.toml @@ -39,7 +39,7 @@ features = [ "utterances", "widgets" ] -min_version = 0.65 +min_version = 0.67 [author] name = "Munif Tanjim" From 0e421aaf8a71665601dbc08ab770c9e1af76c375 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Date: Thu, 28 May 2020 22:44:31 +0200 Subject: [PATCH 04/38] add backward compatibility with rtl Co-authored-by: Munif Tanjim --- layouts/partials/head/includes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head/includes.html b/layouts/partials/head/includes.html index 5e28a114..d3533f87 100644 --- a/layouts/partials/head/includes.html +++ b/layouts/partials/head/includes.html @@ -1,7 +1,7 @@ -{{- if eq .Site.Language.LanguageDirection "rtl" -}} +{{- if or ( .Site.Params.settings.rtl ) ( eq .Site.Language.LanguageDirection "rtl" ) -}} {{- end -}} From a644756033f4d40460b073f031be29e86ebb3265 Mon Sep 17 00:00:00 2001 From: ButterflyOfFire <42316180+BoFFire@users.noreply.github.com> Date: Thu, 28 May 2020 21:41:22 +0100 Subject: [PATCH 05/38] add [i18n]: ar (Arabic) translation --- i18n/ar.toml | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 i18n/ar.toml diff --git a/i18n/ar.toml b/i18n/ar.toml new file mode 100644 index 00000000..c44f7e2b --- /dev/null +++ b/i18n/ar.toml @@ -0,0 +1,155 @@ +[author] +one = "مؤلف" +other = "مؤلفين" + +[authorsAvatar] +other = "الصورة الرمزية لِـ{{ .Author }}" + +[by] +other = "مِن قِبَل" + +[cancel] +other = "إلغاء" + +[cancelComment] +other = "إلغاء التعليق" + +[category] +one = "فئة" +other = "فئات" + +[comment] +other = "تعليق" + +[commentSubmissionErrorMessage] +other = "حدث خطأ. تعذر إرسال تعليقك. أعد المحاولة مجددًا. شكرًا لك!" + +[commentSubmissionErrorTitle] +other = "عذرًا!" + +[commentSubmissionSuccessMessage] +other = "تم إرسال تعليقك. سيظهر هنا بعد حين!" + +[commentSubmissionSuccessTitle] +other = "شكرًا لك!" + +[commentsOnEntry] +one = "إلّا {{ .Count }} تعليق على {{ .Title }}" +other = "{{ .Count }} تعليقات على {{ .Title }}" + +[contactViaEmail] +other = "الإتصال عبر البريد الإلكتروني" + +[currentPage] +other = "الصفحة الحالية" + +[email] +other = "البريد الإلكتروني" + +[gopher] +other = "Gopher" + +[goHome] +other = "انتقل إلى الرئيسية..." + +[lastUpdated] +other = "آخر تعديل" + +[leaveAComment] +other = "اترك تعليقًا" + +[mainMenu] +other = "القئمة الرئيسية" + +[name] +other = "الإسم" + +[next] +other = "التالي" + +[nextPage] +other = "الصفحة التالية" + +[nextPost] +other = "المنشور التالي" + +[noTerm] +other = "ليس هناك أية {{ .Term }}!" + +[ok] +other = "حسنًا" + +[openAccountInNewTab] +other = "افتح حساب {{ .Platform }} في لسان جديد" + +[page] +other = "صفحة" + +[previous] +other = "السابقة" + +[previousPage] +other = "الصفحة السابقة" + +[previousPost] +other = "المنشور السابق" + +[postedOn] +other = "نُشِر في" + +[readingTime] +one = "قراءة تستغرق دقيقة" +other = "قراءة تستغرق {{ .Count }} دقائق" + +[recentPosts] +other = "أحدث المنشورات" + +[reply] +other = "رد" + +[replyToAuthor] +other = "رد على {{ .Author }}" + +[says] +other = "قال" + +[search] +other = "البحث" + +[searchResultEmpty] +other = "لا شيء موجود!" + +[searching] +other = "البحث جارٍ" + +[series] +one = "سلاسل" +other = "سلاسل" + +[sidebarMenu] +other = "القائمة الجانبية" + +[skipToContent] +other = "تجاهل إلى المحتوى" + +[skipToMainMenu] +other = "تجاهل إلى القائمة الرئيسية" + +[socialMenu] +other = "القائمة الإجتماعية" + +[submitComment] +other = "علّق!" + +[tableOfContents] +other = "فهرس المحتويات" + +[tag] +one = "وسم" +other = "وسوم" + +[toggleSidebar] +other = "إخفاء أو إظهار القائمة الجانبية" + +[website] +other = "موقع الويب" From b1b81e4c6182e736f30d92f3012427565bc8a4b6 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Sat, 30 May 2020 16:01:22 +0200 Subject: [PATCH 06/38] add language widget when we have a multi-linguage website, we want to allow the user to switch language --- i18n/en.toml | 3 +++ i18n/fr.toml | 3 +++ layouts/partials/widgets/languages.html | 12 ++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 layouts/partials/widgets/languages.html diff --git a/i18n/en.toml b/i18n/en.toml index b9cb7125..b790c5d7 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -55,6 +55,9 @@ other = "Go Home..." [lastUpdated] other = "Last updated" +[languages] +other = "Languages" + [leaveAComment] other = "Leave a comment" diff --git a/i18n/fr.toml b/i18n/fr.toml index ec22e0b9..99ff658b 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -52,6 +52,9 @@ other = "Gopher" [goHome] other = "Retourner à l'accueil..." +[languages] +other = "Langues" + [leaveAComment] other = "Laisser un commentaire" diff --git a/layouts/partials/widgets/languages.html b/layouts/partials/widgets/languages.html new file mode 100644 index 00000000..2636ab55 --- /dev/null +++ b/layouts/partials/widgets/languages.html @@ -0,0 +1,12 @@ +
+
+

+ {{ i18n "languages" }} +

+
+ +{{ range $.Site.Home.AllTranslations }} +{{ .Language.LanguageName }} +{{ end }} + +
From c848b15d319daac5bb1c7ce9c1c8b3ce4de4e7e5 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Sun, 31 May 2020 14:43:01 +0200 Subject: [PATCH 07/38] display content translation if a traduction exists for the current page, display an icon, the language code and an URL --- i18n/en.toml | 3 +++ i18n/fr.toml | 3 +++ layouts/partials/entry/meta.html | 1 + layouts/partials/entry/meta/translations.html | 7 +++++++ layouts/partials/svg/icons.html | 2 ++ 5 files changed, 16 insertions(+) create mode 100644 layouts/partials/entry/meta/translations.html diff --git a/i18n/en.toml b/i18n/en.toml index b790c5d7..dac18038 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -154,5 +154,8 @@ other = "Tags" [toggleSidebar] other = "Toggle Sidebar" +[translations] +other = "Translations" + [website] other = "Website" diff --git a/i18n/fr.toml b/i18n/fr.toml index 99ff658b..c81af916 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -151,5 +151,8 @@ other = "Étiquettes" [toggleSidebar] other = "Déplier la barre latérale" +[translations] +other = "Traductions" + [website] other = "Site web" diff --git a/layouts/partials/entry/meta.html b/layouts/partials/entry/meta.html index 8f6aa2ec..4d7fff76 100644 --- a/layouts/partials/entry/meta.html +++ b/layouts/partials/entry/meta.html @@ -13,5 +13,6 @@ {{ partial "entry/meta/posted-on" . }} {{ partial "entry/meta/author" . }} {{ partial "entry/meta/reading-time" . }} + {{ partial "entry/meta/translations" . }} {{ end }} diff --git a/layouts/partials/entry/meta/translations.html b/layouts/partials/entry/meta/translations.html new file mode 100644 index 00000000..6a51967a --- /dev/null +++ b/layouts/partials/entry/meta/translations.html @@ -0,0 +1,7 @@ +{{- partial "svg/icons" "translations" -}} +{{ if .IsTranslated }} + {{ i18n "translations" }} + {{ range .Translations }} + {{ .Lang }} + {{ end }} +{{ end }} diff --git a/layouts/partials/svg/icons.html b/layouts/partials/svg/icons.html index 8bc9d418..afa1b5c4 100644 --- a/layouts/partials/svg/icons.html +++ b/layouts/partials/svg/icons.html @@ -73,5 +73,7 @@ {{ else if eq "search" . }} + {{ else if eq "translations" . }} + {{ end }} From 7e91e2ea9305842b181e24d8d2f61fad01c8073f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Mon, 1 Jun 2020 00:30:17 +0200 Subject: [PATCH 08/38] add mastodon in social menu mastodon can take any url mastodon uses a mecanism to prove you are owner of something: that's the reason of the rel=me usage --- data/config/default/widgets.toml | 2 +- data/theme.toml | 1 + layouts/partials/svg/icons.html | 3 +++ layouts/partials/widgets/social_menu.html | 4 ++++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/data/config/default/widgets.toml b/data/config/default/widgets.toml index d69766c1..fa0ec230 100644 --- a/data/config/default/widgets.toml +++ b/data/config/default/widgets.toml @@ -21,7 +21,7 @@ mirror = "" [social_menu] title = "" -platforms = ["github","facebook","twitter","instagram","email","codepen","gitlab","linkedin","telegram","google_scholar","youtube"] +platforms = ["github","facebook","twitter","instagram","email","codepen","gitlab","linkedin","telegram","google_scholar","youtube","mastodon"] [taxonomy_cloud] title = "" diff --git a/data/theme.toml b/data/theme.toml index a9610b76..6620bec7 100644 --- a/data/theme.toml +++ b/data/theme.toml @@ -10,3 +10,4 @@ twitter = "https://twitter.com/" telegram = "https://t.me/" google_scholar = "https://scholar.google.com/citations?user=" youtube = "https://www.youtube.com/channel/" +mastodon = "" diff --git a/layouts/partials/svg/icons.html b/layouts/partials/svg/icons.html index afa1b5c4..b23dfce0 100644 --- a/layouts/partials/svg/icons.html +++ b/layouts/partials/svg/icons.html @@ -75,5 +75,8 @@ {{ else if eq "translations" . }} + {{ else if eq "mastodon" . }} + + {{ end }} diff --git a/layouts/partials/widgets/social_menu.html b/layouts/partials/widgets/social_menu.html index 1fd065fe..18320f46 100644 --- a/layouts/partials/widgets/social_menu.html +++ b/layouts/partials/widgets/social_menu.html @@ -21,7 +21,11 @@

{{- range $platform := $config.platforms -}} {{- with $username := ( index $social $platform ) -}}
  • + {{- if eq $platform "mastodon" -}} + + {{- else -}} + {{- end -}} {{- if eq $platform "email" -}} {{- i18n "contactViaEmail" -}} From bf276406201eaf8f75556e81777222c4c710a8a9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 28 May 2020 21:36:05 +0200 Subject: [PATCH 09/38] allow usage of ltr since v0.67.1 it is possible to define language direction see https://github.com/gohugoio/hugo/issues/6550 --- layouts/partials/widgets/languages.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 layouts/partials/widgets/languages.html diff --git a/layouts/partials/widgets/languages.html b/layouts/partials/widgets/languages.html new file mode 100644 index 00000000..2636ab55 --- /dev/null +++ b/layouts/partials/widgets/languages.html @@ -0,0 +1,12 @@ +
    +
    +

    + {{ i18n "languages" }} +

    +
    + +{{ range $.Site.Home.AllTranslations }} +
    {{ .Language.LanguageName }} +{{ end }} + +
    From c956915ac852e7833ee9935ff7d07286661a1ad8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Sat, 30 May 2020 16:01:22 +0200 Subject: [PATCH 10/38] add language widget when we have a multi-linguage website, we want to allow the user to switch language --- i18n/en.toml | 3 +++ i18n/fr.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/i18n/en.toml b/i18n/en.toml index b9cb7125..b790c5d7 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -55,6 +55,9 @@ other = "Go Home..." [lastUpdated] other = "Last updated" +[languages] +other = "Languages" + [leaveAComment] other = "Leave a comment" diff --git a/i18n/fr.toml b/i18n/fr.toml index ec22e0b9..99ff658b 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -52,6 +52,9 @@ other = "Gopher" [goHome] other = "Retourner à l'accueil..." +[languages] +other = "Langues" + [leaveAComment] other = "Laisser un commentaire" From c42d3d031f8efd356bbc88a7484e22d03df23e87 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Sun, 31 May 2020 14:43:01 +0200 Subject: [PATCH 11/38] display content translation if a traduction exists for the current page, display an icon, the language code and an URL --- i18n/en.toml | 3 +++ i18n/fr.toml | 3 +++ layouts/partials/entry/meta.html | 1 + layouts/partials/entry/meta/translations.html | 7 +++++++ layouts/partials/svg/icons.html | 2 ++ 5 files changed, 16 insertions(+) create mode 100644 layouts/partials/entry/meta/translations.html diff --git a/i18n/en.toml b/i18n/en.toml index b790c5d7..dac18038 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -154,5 +154,8 @@ other = "Tags" [toggleSidebar] other = "Toggle Sidebar" +[translations] +other = "Translations" + [website] other = "Website" diff --git a/i18n/fr.toml b/i18n/fr.toml index 99ff658b..c81af916 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -151,5 +151,8 @@ other = "Étiquettes" [toggleSidebar] other = "Déplier la barre latérale" +[translations] +other = "Traductions" + [website] other = "Site web" diff --git a/layouts/partials/entry/meta.html b/layouts/partials/entry/meta.html index 8f6aa2ec..4d7fff76 100644 --- a/layouts/partials/entry/meta.html +++ b/layouts/partials/entry/meta.html @@ -13,5 +13,6 @@ {{ partial "entry/meta/posted-on" . }} {{ partial "entry/meta/author" . }} {{ partial "entry/meta/reading-time" . }} + {{ partial "entry/meta/translations" . }} {{ end }} diff --git a/layouts/partials/entry/meta/translations.html b/layouts/partials/entry/meta/translations.html new file mode 100644 index 00000000..6a51967a --- /dev/null +++ b/layouts/partials/entry/meta/translations.html @@ -0,0 +1,7 @@ +{{- partial "svg/icons" "translations" -}} +{{ if .IsTranslated }} + {{ i18n "translations" }} + {{ range .Translations }} + {{ .Lang }} + {{ end }} +{{ end }} diff --git a/layouts/partials/svg/icons.html b/layouts/partials/svg/icons.html index 8bc9d418..afa1b5c4 100644 --- a/layouts/partials/svg/icons.html +++ b/layouts/partials/svg/icons.html @@ -73,5 +73,7 @@ {{ else if eq "search" . }} + {{ else if eq "translations" . }} + {{ end }} From 27199123e82e68bae1051cc3df16a3a108ba35d7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 4 Jun 2020 23:30:10 +0200 Subject: [PATCH 12/38] allow header/extra --- layouts/partials/header.html | 1 + layouts/partials/header/extra.html | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 layouts/partials/header/extra.html diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 1f43eb90..b18e30ae 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -31,6 +31,7 @@

    {{ .Site.Title }}

    {{ .Site.Params.info.description }}

    + {{- partial "header/extra" . -}}
    diff --git a/layouts/partials/header/extra.html b/layouts/partials/header/extra.html new file mode 100644 index 00000000..ad7d2896 --- /dev/null +++ b/layouts/partials/header/extra.html @@ -0,0 +1,5 @@ +{{/* + If you need to add content to your page header, override this template in your + blog by creating a file named `/layout/partials/header/extra.html`. This way you + don't have to edit the theme itself. +*/}} From 76956895ecb8599d5804f5eedddea2c8b378fb26 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 18 Jun 2020 19:54:49 +0200 Subject: [PATCH 13/38] don't display language icons if no translations --- layouts/partials/entry/meta/translations.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/entry/meta/translations.html b/layouts/partials/entry/meta/translations.html index 6a51967a..743b4b27 100644 --- a/layouts/partials/entry/meta/translations.html +++ b/layouts/partials/entry/meta/translations.html @@ -1,5 +1,5 @@ -{{- partial "svg/icons" "translations" -}} {{ if .IsTranslated }} +{{- partial "svg/icons" "translations" -}} {{ i18n "translations" }} {{ range .Translations }} {{ .Lang }} From 0d0811edef81ae00ba2501dfbc51b79c6635aac3 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Thu, 18 Jun 2020 19:55:21 +0200 Subject: [PATCH 14/38] add license parameter it's better to have an explicit mention to license in each page so people are not confused --- i18n/fr.toml | 3 +++ layouts/partials/entry/meta.html | 1 + layouts/partials/entry/meta/license.html | 1 + 3 files changed, 5 insertions(+) create mode 100644 layouts/partials/entry/meta/license.html diff --git a/i18n/fr.toml b/i18n/fr.toml index c81af916..ee73eaee 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -58,6 +58,9 @@ other = "Langues" [leaveAComment] other = "Laisser un commentaire" +[license] +other = "Licence :" + [mainMenu] other = "Menu principal" diff --git a/layouts/partials/entry/meta.html b/layouts/partials/entry/meta.html index 4d7fff76..53f99d4e 100644 --- a/layouts/partials/entry/meta.html +++ b/layouts/partials/entry/meta.html @@ -14,5 +14,6 @@ {{ partial "entry/meta/author" . }} {{ partial "entry/meta/reading-time" . }} {{ partial "entry/meta/translations" . }} + {{ partial "entry/meta/license" . }} {{ end }} diff --git a/layouts/partials/entry/meta/license.html b/layouts/partials/entry/meta/license.html new file mode 100644 index 00000000..65dbed5b --- /dev/null +++ b/layouts/partials/entry/meta/license.html @@ -0,0 +1 @@ +{{ i18n "license" }} {{ .Params.License }} From 288c091dd81d57163b46603c660bb580803df13d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Fri, 3 Jul 2020 21:27:10 +0200 Subject: [PATCH 15/38] Remove colon from template --- i18n/fr.toml | 12 ++++++------ layouts/partials/header/header.html | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/i18n/fr.toml b/i18n/fr.toml index ee73eaee..cdb514ed 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -1,6 +1,6 @@ [author] -one = "Auteur" -other = "Auteurs" +one = "Auteur :" +other = "Auteurs :" [authorsAvatar] other = "Avatar de {{ .Author }}" @@ -15,8 +15,8 @@ other = "Annuler" other = "Annuler le commentaire" [category] -one = "Catégorie" -other = "Catégories" +one = "Catégorie :" +other = "Catégories :" [comment] other = "Commentaire" @@ -148,8 +148,8 @@ other = "Commenter !" other = "Table des matières" [tag] -one = "Étiquette" -other = "Étiquettes" +one = "Étiquette :" +other = "Étiquettes :" [toggleSidebar] other = "Déplier la barre latérale" diff --git a/layouts/partials/header/header.html b/layouts/partials/header/header.html index 13605093..94392d46 100644 --- a/layouts/partials/header/header.html +++ b/layouts/partials/header/header.html @@ -5,7 +5,6 @@

    {{- if eq .Kind "taxonomy" -}} {{- ( ( i18n .Data.Singular 1 ) | default .Data.Singular ) -}} - {{- print ": " -}} {{- end -}} From becede98e1d800ec1146ba2f54ae1fd7a95afb6b Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Fri, 3 Jul 2020 21:56:29 +0200 Subject: [PATCH 16/38] convert i18n files into json Weblate does support json files: https://docs.weblate.org/en/latest/formats.html#go-i18n-json-files --- i18n/ar.json | 210 ++++++++++++++++++++++++++++++++++++++++++++++ i18n/ar.toml | 155 ---------------------------------- i18n/bn.json | 192 ++++++++++++++++++++++++++++++++++++++++++ i18n/bn.toml | 143 -------------------------------- i18n/ca.json | 110 ++++++++++++++++++++++++ i18n/ca.toml | 81 ------------------ i18n/de.json | 159 +++++++++++++++++++++++++++++++++++ i18n/de.toml | 118 -------------------------- i18n/en.json | 216 ++++++++++++++++++++++++++++++++++++++++++++++++ i18n/en.toml | 161 ------------------------------------ i18n/es.json | 204 +++++++++++++++++++++++++++++++++++++++++++++ i18n/es.toml | 152 ---------------------------------- i18n/fa.json | 102 +++++++++++++++++++++++ i18n/fa.toml | 75 ----------------- i18n/fr.json | 216 ++++++++++++++++++++++++++++++++++++++++++++++++ i18n/fr.toml | 161 ------------------------------------ i18n/hr.json | 102 +++++++++++++++++++++++ i18n/hr.toml | 75 ----------------- i18n/id.json | 208 ++++++++++++++++++++++++++++++++++++++++++++++ i18n/id.toml | 155 ---------------------------------- i18n/it.json | 204 +++++++++++++++++++++++++++++++++++++++++++++ i18n/it.toml | 152 ---------------------------------- i18n/pl.json | 110 ++++++++++++++++++++++++ i18n/pl.toml | 83 ------------------- i18n/pt-BR.json | 102 +++++++++++++++++++++++ i18n/pt-BR.toml | 75 ----------------- i18n/sl.json | 110 ++++++++++++++++++++++++ i18n/sl.toml | 83 ------------------- i18n/uk.json | 208 ++++++++++++++++++++++++++++++++++++++++++++++ i18n/uk.toml | 155 ---------------------------------- i18n/vi.json | 208 ++++++++++++++++++++++++++++++++++++++++++++++ i18n/vi.toml | 155 ---------------------------------- i18n/zh.json | 192 ++++++++++++++++++++++++++++++++++++++++++ i18n/zh.toml | 143 -------------------------------- 34 files changed, 2853 insertions(+), 2122 deletions(-) create mode 100644 i18n/ar.json delete mode 100644 i18n/ar.toml create mode 100644 i18n/bn.json delete mode 100644 i18n/bn.toml create mode 100644 i18n/ca.json delete mode 100644 i18n/ca.toml create mode 100644 i18n/de.json delete mode 100644 i18n/de.toml create mode 100644 i18n/en.json delete mode 100644 i18n/en.toml create mode 100644 i18n/es.json delete mode 100644 i18n/es.toml create mode 100644 i18n/fa.json delete mode 100644 i18n/fa.toml create mode 100644 i18n/fr.json delete mode 100644 i18n/fr.toml create mode 100644 i18n/hr.json delete mode 100644 i18n/hr.toml create mode 100644 i18n/id.json delete mode 100644 i18n/id.toml create mode 100644 i18n/it.json delete mode 100644 i18n/it.toml create mode 100644 i18n/pl.json delete mode 100644 i18n/pl.toml create mode 100644 i18n/pt-BR.json delete mode 100644 i18n/pt-BR.toml create mode 100644 i18n/sl.json delete mode 100644 i18n/sl.toml create mode 100644 i18n/uk.json delete mode 100644 i18n/uk.toml create mode 100644 i18n/vi.json delete mode 100644 i18n/vi.toml create mode 100644 i18n/zh.json delete mode 100644 i18n/zh.toml diff --git a/i18n/ar.json b/i18n/ar.json new file mode 100644 index 00000000..d1b0a4a8 --- /dev/null +++ b/i18n/ar.json @@ -0,0 +1,210 @@ +[ + { + "id":"author", + "translation": { + "one":"مؤلف", + "other":"مؤلفين" + }, + "id":"authorsAvatar", + "translation": { + "other":"الصورة الرمزية لِـ{{ .Author }}" + }, + "id":"by", + "translation": { + "other":"مِن قِبَل" + }, + "id":"cancel", + "translation": { + "other":"إلغاء" + }, + "id":"cancelComment", + "translation": { + "other":"إلغاء التعليق" + }, + "id":"category", + "translation": { + "one":"فئة", + "other":"فئات" + }, + "id":"comment", + "translation": { + "other":"تعليق" + }, + "id":"commentSubmissionErrorMessage", + "translation": { + "other":"حدث خطأ. تعذر إرسال تعليقك. أعد المحاولة مجددًا. شكرًا لك!" + }, + "id":"commentSubmissionErrorTitle", + "translation": { + "other":"عذرًا!" + }, + "id":"commentSubmissionSuccessMessage", + "translation": { + "other":"تم إرسال تعليقك. سيظهر هنا بعد حين!" + }, + "id":"commentSubmissionSuccessTitle", + "translation": { + "other":"شكرًا لك!" + }, + "id":"commentsOnEntry", + "translation": { + "one":"إلّا {{ .Count }} تعليق على {{ .Title }}", + "other":"{{ .Count }} تعليقات على {{ .Title }}" + }, + "id":"contactViaEmail", + "translation": { + "other":"الإتصال عبر البريد الإلكتروني" + }, + "id":"currentPage", + "translation": { + "other":"الصفحة الحالية" + }, + "id":"email", + "translation": { + "other":"البريد الإلكتروني" + }, + "id":"gopher", + "translation": { + "other":"Gopher" + }, + "id":"goHome", + "translation": { + "other":"انتقل إلى الرئيسية..." + }, + "id":"lastUpdated", + "translation": { + "other":"آخر تعديل" + }, + "id":"leaveAComment", + "translation": { + "other":"اترك تعليقًا" + }, + "id":"mainMenu", + "translation": { + "other":"القئمة الرئيسية" + }, + "id":"name", + "translation": { + "other":"الإسم" + }, + "id":"next", + "translation": { + "other":"التالي" + }, + "id":"nextPage", + "translation": { + "other":"الصفحة التالية" + }, + "id":"nextPost", + "translation": { + "other":"المنشور التالي" + }, + "id":"noTerm", + "translation": { + "other":"ليس هناك أية {{ .Term }}!" + }, + "id":"ok", + "translation": { + "other":"حسنًا" + }, + "id":"openAccountInNewTab", + "translation": { + "other":"افتح حساب {{ .Platform }} في لسان جديد" + }, + "id":"page", + "translation": { + "other":"صفحة" + }, + "id":"previous", + "translation": { + "other":"السابقة" + }, + "id":"previousPage", + "translation": { + "other":"الصفحة السابقة" + }, + "id":"previousPost", + "translation": { + "other":"المنشور السابق" + }, + "id":"postedOn", + "translation": { + "other":"نُشِر في" + }, + "id":"readingTime", + "translation": { + "one":"قراءة تستغرق دقيقة", + "other":"قراءة تستغرق {{ .Count }} دقائق" + }, + "id":"recentPosts", + "translation": { + "other":"أحدث المنشورات" + }, + "id":"reply", + "translation": { + "other":"رد" + }, + "id":"replyToAuthor", + "translation": { + "other":"رد على {{ .Author }}" + }, + "id":"says", + "translation": { + "other":"قال" + }, + "id":"search", + "translation": { + "other":"البحث" + }, + "id":"searchResultEmpty", + "translation": { + "other":"لا شيء موجود!" + }, + "id":"searching", + "translation": { + "other":"البحث جارٍ" + }, + "id":"series", + "translation": { + "one":"سلاسل", + "other":"سلاسل" + }, + "id":"sidebarMenu", + "translation": { + "other":"القائمة الجانبية" + }, + "id":"skipToContent", + "translation": { + "other":"تجاهل إلى المحتوى" + }, + "id":"skipToMainMenu", + "translation": { + "other":"تجاهل إلى القائمة الرئيسية" + }, + "id":"socialMenu", + "translation": { + "other":"القائمة الإجتماعية" + }, + "id":"submitComment", + "translation": { + "other":"علّق!" + }, + "id":"tableOfContents", + "translation": { + "other":"فهرس المحتويات" + }, + "id":"tag", + "translation": { + "one":"وسم", + "other":"وسوم" + }, + "id":"toggleSidebar", + "translation": { + "other":"إخفاء أو إظهار القائمة الجانبية" + }, + "id":"website", + "translation": { + "other":"موقع الويب" + } + } +] diff --git a/i18n/ar.toml b/i18n/ar.toml deleted file mode 100644 index c44f7e2b..00000000 --- a/i18n/ar.toml +++ /dev/null @@ -1,155 +0,0 @@ -[author] -one = "مؤلف" -other = "مؤلفين" - -[authorsAvatar] -other = "الصورة الرمزية لِـ{{ .Author }}" - -[by] -other = "مِن قِبَل" - -[cancel] -other = "إلغاء" - -[cancelComment] -other = "إلغاء التعليق" - -[category] -one = "فئة" -other = "فئات" - -[comment] -other = "تعليق" - -[commentSubmissionErrorMessage] -other = "حدث خطأ. تعذر إرسال تعليقك. أعد المحاولة مجددًا. شكرًا لك!" - -[commentSubmissionErrorTitle] -other = "عذرًا!" - -[commentSubmissionSuccessMessage] -other = "تم إرسال تعليقك. سيظهر هنا بعد حين!" - -[commentSubmissionSuccessTitle] -other = "شكرًا لك!" - -[commentsOnEntry] -one = "إلّا {{ .Count }} تعليق على {{ .Title }}" -other = "{{ .Count }} تعليقات على {{ .Title }}" - -[contactViaEmail] -other = "الإتصال عبر البريد الإلكتروني" - -[currentPage] -other = "الصفحة الحالية" - -[email] -other = "البريد الإلكتروني" - -[gopher] -other = "Gopher" - -[goHome] -other = "انتقل إلى الرئيسية..." - -[lastUpdated] -other = "آخر تعديل" - -[leaveAComment] -other = "اترك تعليقًا" - -[mainMenu] -other = "القئمة الرئيسية" - -[name] -other = "الإسم" - -[next] -other = "التالي" - -[nextPage] -other = "الصفحة التالية" - -[nextPost] -other = "المنشور التالي" - -[noTerm] -other = "ليس هناك أية {{ .Term }}!" - -[ok] -other = "حسنًا" - -[openAccountInNewTab] -other = "افتح حساب {{ .Platform }} في لسان جديد" - -[page] -other = "صفحة" - -[previous] -other = "السابقة" - -[previousPage] -other = "الصفحة السابقة" - -[previousPost] -other = "المنشور السابق" - -[postedOn] -other = "نُشِر في" - -[readingTime] -one = "قراءة تستغرق دقيقة" -other = "قراءة تستغرق {{ .Count }} دقائق" - -[recentPosts] -other = "أحدث المنشورات" - -[reply] -other = "رد" - -[replyToAuthor] -other = "رد على {{ .Author }}" - -[says] -other = "قال" - -[search] -other = "البحث" - -[searchResultEmpty] -other = "لا شيء موجود!" - -[searching] -other = "البحث جارٍ" - -[series] -one = "سلاسل" -other = "سلاسل" - -[sidebarMenu] -other = "القائمة الجانبية" - -[skipToContent] -other = "تجاهل إلى المحتوى" - -[skipToMainMenu] -other = "تجاهل إلى القائمة الرئيسية" - -[socialMenu] -other = "القائمة الإجتماعية" - -[submitComment] -other = "علّق!" - -[tableOfContents] -other = "فهرس المحتويات" - -[tag] -one = "وسم" -other = "وسوم" - -[toggleSidebar] -other = "إخفاء أو إظهار القائمة الجانبية" - -[website] -other = "موقع الويب" diff --git a/i18n/bn.json b/i18n/bn.json new file mode 100644 index 00000000..396b4e11 --- /dev/null +++ b/i18n/bn.json @@ -0,0 +1,192 @@ +[{ + "id": "author", + "translation": { + "one": "লেখক", + "other": "লেখকেরা" + }, + "id": "authorsAvatar", + "translation": { + "other": "{{ .Author }}-এর ছবি" + }, + "id": "by", + "translation": { + "other": "লিখেছে" + }, + "id": "cancel", + "translation": { + "other": "বাদ দাও" + }, + "id": "cancelComment", + "translation": { + "other": "কমেন্ট করা বাদ দাও" + }, + "id": "category", + "translation": { + "one": "ক্যাটেগরি", + "other": "ক্যাটেগরিসমূহ" + }, + "id": "comment", + "translation": { + "other": "কমেন্ট" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "সমস্যা দেখা দিয়েছে। কমেন্ট সাবমিট করা যায় নি। অনুগ্রহ করে আবার চেষ্টা করো। ধন্যবাদ!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "এহহে, স্যরি!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "কমেন্ট সাবমিট করা হয়েছে। কিছুক্ষণের মধ্যেই সেটা এই পেজে দেখা যাবে!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "ধন্যবাদ!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "{{ .Title }}-এ কমেন্ট শুধুমাত্র {{ .Count }}টা", + "other": "{{ .Title }}-এ কমেন্ট {{ .Count }}টা" + }, + "id": "contactViaEmail", + "translation": { + "other": "ইমেইলে যোগাযোগ করো" + }, + "id": "currentPage", + "translation": { + "other": "এই পৃষ্ঠা" + }, + "id": "email", + "translation": { + "other": "ইমেইল" + }, + "id": "gopher", + "translation": { + "other": "গোফার" + }, + "id": "goHome", + "translation": { + "other": "গোড়ায় ফিরে চলো..." + }, + "id": "leaveAComment", + "translation": { + "other": "কমেন্ট দিয়ে যাও..." + }, + "id": "mainMenu", + "translation": { + "other": "মেইন মেনু" + }, + "id": "name", + "translation": { + "other": "নাম" + }, + "id": "next", + "translation": { + "other": "পরেরটা" + }, + "id": "nextPage", + "translation": { + "other": "পরের পৃষ্ঠা" + }, + "id": "nextPost", + "translation": { + "other": "পরের পোস্ট" + }, + "id": "noTerm", + "translation": { + "other": "কোন {{ .Term }} নেই!" + }, + "id": "ok", + "translation": { + "other": "ঠিক আছে" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "{{ .Platform }} একাউন্ট নতুন ট্যাবে খোল" + }, + "id": "page", + "translation": { + "other": "পৃষ্ঠা" + }, + "id": "previous", + "translation": { + "other": "আগেরটা" + }, + "id": "previousPage", + "translation": { + "other": "আগের পৃষ্ঠা" + }, + "id": "previousPost", + "translation": { + "other": "আগের পোস্ট" + }, + "id": "postedOn", + "translation": { + "other": "তারিখ" + }, + "id": "readingTime", + "translation": { + "one": "এক মিনিট লম্বা", + "other": "{{ .Count }} মিনিট লম্বা" + }, + "id": "recentPosts", + "translation": { + "other": "সাম্প্রতিক পোষ্টগুলো" + }, + "id": "reply", + "translation": { + "other": "উত্তর দাও" + }, + "id": "replyToAuthor", + "translation": { + "other": "{{ .Author }}-কে উত্তর দাও" + }, + "id": "says", + "translation": { + "other": "বলেছে" + }, + "id": "series", + "translation": { + "one": "সিরিজ", + "other": "সিরিজসমূহ" + }, + "id": "sidebarMenu", + "translation": { + "other": "সাইডবার মেনু" + }, + "id": "skipToContent", + "translation": { + "other": "কন্টেন্টে যাও" + }, + "id": "skipToMainMenu", + "translation": { + "other": "মেইন মেনুতে যাও" + }, + "id": "socialMenu", + "translation": { + "other": "সোশ্যাল মেনু" + }, + "id": "submitComment", + "translation": { + "other": "কমেন্ট!" + }, + "id": "tableOfContents", + "translation": { + "other": "এক নজরে" + }, + "id": "tag", + "translation": { + "one": "ট্যাগ", + "other": "ট্যাগসমূহ" + }, + "id": "toggleSidebar", + "translation": { + "other": "সাইডবার ট্যুগল কর" + }, + "id": "website", + "translation": { + "other": "ওয়েবসাইট" + } +}] diff --git a/i18n/bn.toml b/i18n/bn.toml deleted file mode 100644 index 58fb9920..00000000 --- a/i18n/bn.toml +++ /dev/null @@ -1,143 +0,0 @@ -[author] -one = "লেখক" -other = "লেখকেরা" - -[authorsAvatar] -other = "{{ .Author }}-এর ছবি" - -[by] -other = "লিখেছে" - -[cancel] -other = "বাদ দাও" - -[cancelComment] -other = "কমেন্ট করা বাদ দাও" - -[category] -one = "ক্যাটেগরি" -other = "ক্যাটেগরিসমূহ" - -[comment] -other = "কমেন্ট" - -[commentSubmissionErrorMessage] -other = "সমস্যা দেখা দিয়েছে। কমেন্ট সাবমিট করা যায় নি। অনুগ্রহ করে আবার চেষ্টা করো। ধন্যবাদ!" - -[commentSubmissionErrorTitle] -other = "এহহে, স্যরি!" - -[commentSubmissionSuccessMessage] -other = "কমেন্ট সাবমিট করা হয়েছে। কিছুক্ষণের মধ্যেই সেটা এই পেজে দেখা যাবে!" - -[commentSubmissionSuccessTitle] -other = "ধন্যবাদ!" - -[commentsOnEntry] -one = "{{ .Title }}-এ কমেন্ট শুধুমাত্র {{ .Count }}টা" -other = "{{ .Title }}-এ কমেন্ট {{ .Count }}টা" - -[contactViaEmail] -other = "ইমেইলে যোগাযোগ করো" - -[currentPage] -other = "এই পৃষ্ঠা" - -[email] -other = "ইমেইল" - -[gopher] -other = "গোফার" - -[goHome] -other = "গোড়ায় ফিরে চলো..." - -[leaveAComment] -other = "কমেন্ট দিয়ে যাও..." - -[mainMenu] -other = "মেইন মেনু" - -[name] -other = "নাম" - -[next] -other = "পরেরটা" - -[nextPage] -other = "পরের পৃষ্ঠা" - -[nextPost] -other = "পরের পোস্ট" - -[noTerm] -other = "কোন {{ .Term }} নেই!" - -[ok] -other = "ঠিক আছে" - -[openAccountInNewTab] -other = "{{ .Platform }} একাউন্ট নতুন ট্যাবে খোল" - -[page] -other = "পৃষ্ঠা" - -[previous] -other = "আগেরটা" - -[previousPage] -other = "আগের পৃষ্ঠা" - -[previousPost] -other = "আগের পোস্ট" - -[postedOn] -other = "তারিখ" - -[readingTime] -one = "এক মিনিট লম্বা" -other = "{{ .Count }} মিনিট লম্বা" - -[recentPosts] -other = "সাম্প্রতিক পোষ্টগুলো" - -[reply] -other = "উত্তর দাও" - -[replyToAuthor] -other = "{{ .Author }}-কে উত্তর দাও" - -[says] -other = "বলেছে" - -[series] -one = "সিরিজ" -other = "সিরিজসমূহ" - -[sidebarMenu] -other = "সাইডবার মেনু" - -[skipToContent] -other = "কন্টেন্টে যাও" - -[skipToMainMenu] -other = "মেইন মেনুতে যাও" - -[socialMenu] -other = "সোশ্যাল মেনু" - -[submitComment] -other = "কমেন্ট!" - -[tableOfContents] -other = "এক নজরে" - -[tag] -one = "ট্যাগ" -other = "ট্যাগসমূহ" - -[toggleSidebar] -other = "সাইডবার ট্যুগল কর" - -[website] -other = "ওয়েবসাইট" diff --git a/i18n/ca.json b/i18n/ca.json new file mode 100644 index 00000000..a9ba492b --- /dev/null +++ b/i18n/ca.json @@ -0,0 +1,110 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "other": "Autors" + }, + "id": "by", + "translation": { + "other": "per" + }, + "id": "category", + "translation": { + "one": "Categoria", + "other": "Categories" + }, + "id": "contactViaEmail", + "translation": { + "other": "Contacte per correu" + }, + "id": "currentPage", + "translation": { + "other": "Pàgina actual" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Anar a l'inici..." + }, + "id": "mainMenu", + "translation": { + "other": "Menú principal" + }, + "id": "next", + "translation": { + "other": "Següent" + }, + "id": "nextPage", + "translation": { + "other": "Següent pàgina" + }, + "id": "nextPost", + "translation": { + "other": "Següent entrada" + }, + "id": "noTerm", + "translation": { + "other": "Ni un sol {{ .Term }}!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Obrir compte de {{ .Platform }} en una nova pestanya" + }, + "id": "page", + "translation": { + "other": "Pàgina" + }, + "id": "previous", + "translation": { + "other": "Anterior" + }, + "id": "previousPage", + "translation": { + "other": "Anterior pàgina" + }, + "id": "previousPost", + "translation": { + "other": "Anterior article" + }, + "id": "postedOn", + "translation": { + "other": "Publicat a" + }, + "id": "readingTime", + "translation": { + "one": "Lectura d'un minut", + "other": "{{ .Count }} minuts de lectura" + }, + "id": "recentPosts", + "translation": { + "other": "Entrades recents" + }, + "id": "skipToContent", + "translation": { + "other": "Anar al contingut" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Anar al menú principal" + }, + "id": "socialMenu", + "translation": { + "other": "Menú social" + }, + "id": "tableOfContents", + "translation": { + "other": "Sumari" + }, + "id": "tag", + "translation": { + "one": "Etiqueta", + "other": "Etiquetes" + }, + "id": "toggleSidebar", + "translation": { + "other": "Alternar barra lateral" + } +}] diff --git a/i18n/ca.toml b/i18n/ca.toml deleted file mode 100644 index 46daffd2..00000000 --- a/i18n/ca.toml +++ /dev/null @@ -1,81 +0,0 @@ -[author] -one = "Autor" -other = "Autors" - -[by] -other = "per" - -[category] -one = "Categoria" -other = "Categories" - -[contactViaEmail] -other = "Contacte per correu" - -[currentPage] -other = "Pàgina actual" - -[gopher] -other = "Gopher" - -[goHome] -other = "Anar a l'inici..." - -[mainMenu] -other = "Menú principal" - -[next] -other = "Següent" - -[nextPage] -other = "Següent pàgina" - -[nextPost] -other = "Següent entrada" - -[noTerm] -other = "Ni un sol {{ .Term }}!" - -[openAccountInNewTab] -other = "Obrir compte de {{ .Platform }} en una nova pestanya" - -[page] -other = "Pàgina" - -[previous] -other = "Anterior" - -[previousPage] -other = "Anterior pàgina" - -[previousPost] -other = "Anterior article" - -[postedOn] -other = "Publicat a" - -[readingTime] -one = "Lectura d'un minut" -other = "{{ .Count }} minuts de lectura" - -[recentPosts] -other = "Entrades recents" - -[skipToContent] -other = "Anar al contingut" - -[skipToMainMenu] -other = "Anar al menú principal" - -[socialMenu] -other = "Menú social" - -[tableOfContents] -other = "Sumari" - -[tag] -one = "Etiqueta" -other = "Etiquetes" - -[toggleSidebar] -other = "Alternar barra lateral" diff --git a/i18n/de.json b/i18n/de.json new file mode 100644 index 00000000..84ee619e --- /dev/null +++ b/i18n/de.json @@ -0,0 +1,159 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "other": "Autoren" + }, + "id": "by", + "translation": { + "other": "von" + }, + "id": "cancel", + "translation": { + "other": "Abbrechen" + }, + "id": "cancelComment", + "translation": { + "other": "Kommentar abbrechen" + }, + "id": "category", + "translation": { + "one": "Kategorie", + "other": "Kategorien" + }, + "id": "comment", + "translation": { + "other": "Kommentar" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Fehler aufgetreten. Ihe Kommentar konnte nicht übermittelt werden. Bitte versuchen Sie es später erneut. Danke!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Fehler" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Ihr Kommentar wurde übermittelt. Er wird in Kürze auf dieser Seite erscheinen!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Vielen Dank." + }, + "id": "commentsOnEntry", + "translation": { + "one": "Nur {{ .Count }} Kommentar bei {{ .Title }}", + "other": "{{ .Count }} Kommentare bei {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Per E-Mail kontaktieren" + }, + "id": "currentPage", + "translation": { + "other": "Aktuelle Seite" + }, + "id": "email", + "translation": { + "other": "E-Mail" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Zur Startseite …" + }, + "id": "leaveAComment", + "translation": { + "other": "Einen Kommentar hinterlassen" + }, + "id": "mainMenu", + "translation": { + "other": "Hauptmenü" + }, + "id": "name", + "translation": { + "other": "Name" + }, + "id": "next", + "translation": { + "other": "Weiter" + }, + "id": "nextPage", + "translation": { + "other": "Nächste Seite" + }, + "id": "nextPost", + "translation": { + "other": "Nächster Beitrag" + }, + "id": "noTerm", + "translation": { + "other": "Kein einziges {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "{{ .Platform }} in neuem Tab öffnen" + }, + "id": "page", + "translation": { + "other": "Seite" + }, + "id": "previous", + "translation": { + "other": "Vorherige" + }, + "id": "previousPage", + "translation": { + "other": "Vorherige Seite" + }, + "id": "previousPost", + "translation": { + "other": "Vorheriger Beitrag" + }, + "id": "postedOn", + "translation": { + "other": "Veröffentlicht am" + }, + "id": "readingTime", + "translation": { + "one": "Eine Minute Lesezeit", + "other": "{{ .Count }} Minuten Lesezeit" + }, + "id": "recentPosts", + "translation": { + "other": "Vorherige Beiträge" + }, + "id": "skipToContent", + "translation": { + "other": "Zum Inhalt springen" + }, + "id": "socialMenu", + "translation": { + "other": "Social-Menü" + }, + "id": "submitComment", + "translation": { + "other": "Kommentieren" + }, + "id": "tableOfContents", + "translation": { + "other": "Inhaltsverzeichnis" + }, + "id": "tag", + "translation": { + "one": "Schlagwort", + "other": "Schlagwörter" + }, + "id": "website", + "translation": { + "other": "Webseite" + } +}] diff --git a/i18n/de.toml b/i18n/de.toml deleted file mode 100644 index b1b813ab..00000000 --- a/i18n/de.toml +++ /dev/null @@ -1,118 +0,0 @@ -[author] -one = "Autor" -other = "Autoren" - -[by] -other = "von" - -[cancel] -other = "Abbrechen" - -[cancelComment] -other = "Kommentar abbrechen" - -[category] -one = "Kategorie" -other = "Kategorien" - -[comment] -other = "Kommentar" - -[commentSubmissionErrorMessage] -other = "Fehler aufgetreten. Ihe Kommentar konnte nicht übermittelt werden. Bitte versuchen Sie es später erneut. Danke!" - -[commentSubmissionErrorTitle] -other = "Fehler" - -[commentSubmissionSuccessMessage] -other = "Ihr Kommentar wurde übermittelt. Er wird in Kürze auf dieser Seite erscheinen!" - -[commentSubmissionSuccessTitle] -other = "Vielen Dank." - -[commentsOnEntry] -one = "Nur {{ .Count }} Kommentar bei {{ .Title }}" -other = "{{ .Count }} Kommentare bei {{ .Title }}" - -[contactViaEmail] -other = "Per E-Mail kontaktieren" - -[currentPage] -other = "Aktuelle Seite" - -[email] -other = "E-Mail" - -[gopher] -other = "Gopher" - -[goHome] -other = "Zur Startseite …" - -[leaveAComment] -other = "Einen Kommentar hinterlassen" - -[mainMenu] -other = "Hauptmenü" - -[name] -other = "Name" - -[next] -other = "Weiter" - -[nextPage] -other = "Nächste Seite" - -[nextPost] -other = "Nächster Beitrag" - -[noTerm] -other = "Kein einziges {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "{{ .Platform }} in neuem Tab öffnen" - -[page] -other = "Seite" - -[previous] -other = "Vorherige" - -[previousPage] -other = "Vorherige Seite" - -[previousPost] -other = "Vorheriger Beitrag" - -[postedOn] -other = "Veröffentlicht am" - -[readingTime] -one = "Eine Minute Lesezeit" -other = "{{ .Count }} Minuten Lesezeit" - -[recentPosts] -other = "Vorherige Beiträge" - -[skipToContent] -other = "Zum Inhalt springen" - -[socialMenu] -other = "Social-Menü" - -[submitComment] -other = "Kommentieren" - -[tableOfContents] -other = "Inhaltsverzeichnis" - -[tag] -one = "Schlagwort" -other = "Schlagwörter" - -[website] -other = "Webseite" diff --git a/i18n/en.json b/i18n/en.json new file mode 100644 index 00000000..83706c7b --- /dev/null +++ b/i18n/en.json @@ -0,0 +1,216 @@ +[{ + "id": "author", + "translation": { + "one": "Author", + "other": "Authors" + }, + "id": "authorsAvatar", + "translation": { + "other": "{{ .Author }}'s avatar" + }, + "id": "by", + "translation": { + "other": "by" + }, + "id": "cancel", + "translation": { + "other": "Cancel" + }, + "id": "cancelComment", + "translation": { + "other": "Cancel comment" + }, + "id": "category", + "translation": { + "one": "Category", + "other": "Categories" + }, + "id": "comment", + "translation": { + "other": "Comment" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Error occured. Couldn't submit your comment. Please try again. Thank You!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Yikes, Sorry!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Your comment has been submitted. It will appear on this page shortly!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Thank You!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "Only {{ .Count }} comment on {{ .Title }}", + "other": "{{ .Count }} comments on {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Contact via Email" + }, + "id": "currentPage", + "translation": { + "other": "Current page" + }, + "id": "email", + "translation": { + "other": "Email" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Go Home..." + }, + "id": "lastUpdated", + "translation": { + "other": "Last updated" + }, + "id": "languages", + "translation": { + "other": "Languages" + }, + "id": "leaveAComment", + "translation": { + "other": "Leave a comment" + }, + "id": "mainMenu", + "translation": { + "other": "Main Menu" + }, + "id": "name", + "translation": { + "other": "Name" + }, + "id": "next", + "translation": { + "other": "Next" + }, + "id": "nextPage", + "translation": { + "other": "Next page" + }, + "id": "nextPost", + "translation": { + "other": "Next post" + }, + "id": "noTerm", + "translation": { + "other": "Not a single {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Open {{ .Platform }} account in new tab" + }, + "id": "page", + "translation": { + "other": "Page" + }, + "id": "previous", + "translation": { + "other": "Previous" + }, + "id": "previousPage", + "translation": { + "other": "Previous page" + }, + "id": "previousPost", + "translation": { + "other": "Previous post" + }, + "id": "postedOn", + "translation": { + "other": "Posted on" + }, + "id": "readingTime", + "translation": { + "one": "One min read", + "other": "{{ .Count }} mins read" + }, + "id": "recentPosts", + "translation": { + "other": "Recent Posts" + }, + "id": "reply", + "translation": { + "other": "Reply" + }, + "id": "replyToAuthor", + "translation": { + "other": "Reply to {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "says" + }, + "id": "search", + "translation": { + "other": "Search" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Nothing found!" + }, + "id": "searching", + "translation": { + "other": "Searching" + }, + "id": "series", + "translation": { + "one": "Series", + "other": "Series" + }, + "id": "sidebarMenu", + "translation": { + "other": "Sidebar Menu" + }, + "id": "skipToContent", + "translation": { + "other": "Skip to Content" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Skip to Main Menu" + }, + "id": "socialMenu", + "translation": { + "other": "Social Menu" + }, + "id": "submitComment", + "translation": { + "other": "Comment!" + }, + "id": "tableOfContents", + "translation": { + "other": "Table of Contents" + }, + "id": "tag", + "translation": { + "one": "Tag", + "other": "Tags" + }, + "id": "toggleSidebar", + "translation": { + "other": "Toggle Sidebar" + }, + "id": "translations", + "translation": { + "other": "Translations" + }, + "id": "website", + "translation": { + "other": "Website" + } +}] diff --git a/i18n/en.toml b/i18n/en.toml deleted file mode 100644 index dac18038..00000000 --- a/i18n/en.toml +++ /dev/null @@ -1,161 +0,0 @@ -[author] -one = "Author" -other = "Authors" - -[authorsAvatar] -other = "{{ .Author }}'s avatar" - -[by] -other = "by" - -[cancel] -other = "Cancel" - -[cancelComment] -other = "Cancel comment" - -[category] -one = "Category" -other = "Categories" - -[comment] -other = "Comment" - -[commentSubmissionErrorMessage] -other = "Error occured. Couldn't submit your comment. Please try again. Thank You!" - -[commentSubmissionErrorTitle] -other = "Yikes, Sorry!" - -[commentSubmissionSuccessMessage] -other = "Your comment has been submitted. It will appear on this page shortly!" - -[commentSubmissionSuccessTitle] -other = "Thank You!" - -[commentsOnEntry] -one = "Only {{ .Count }} comment on {{ .Title }}" -other = "{{ .Count }} comments on {{ .Title }}" - -[contactViaEmail] -other = "Contact via Email" - -[currentPage] -other = "Current page" - -[email] -other = "Email" - -[gopher] -other = "Gopher" - -[goHome] -other = "Go Home..." - -[lastUpdated] -other = "Last updated" - -[languages] -other = "Languages" - -[leaveAComment] -other = "Leave a comment" - -[mainMenu] -other = "Main Menu" - -[name] -other = "Name" - -[next] -other = "Next" - -[nextPage] -other = "Next page" - -[nextPost] -other = "Next post" - -[noTerm] -other = "Not a single {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "Open {{ .Platform }} account in new tab" - -[page] -other = "Page" - -[previous] -other = "Previous" - -[previousPage] -other = "Previous page" - -[previousPost] -other = "Previous post" - -[postedOn] -other = "Posted on" - -[readingTime] -one = "One min read" -other = "{{ .Count }} mins read" - -[recentPosts] -other = "Recent Posts" - -[reply] -other = "Reply" - -[replyToAuthor] -other = "Reply to {{ .Author }}" - -[says] -other = "says" - -[search] -other = "Search" - -[searchResultEmpty] -other = "Nothing found!" - -[searching] -other = "Searching" - -[series] -one = "Series" -other = "Series" - -[sidebarMenu] -other = "Sidebar Menu" - -[skipToContent] -other = "Skip to Content" - -[skipToMainMenu] -other = "Skip to Main Menu" - -[socialMenu] -other = "Social Menu" - -[submitComment] -other = "Comment!" - -[tableOfContents] -other = "Table of Contents" - -[tag] -one = "Tag" -other = "Tags" - -[toggleSidebar] -other = "Toggle Sidebar" - -[translations] -other = "Translations" - -[website] -other = "Website" diff --git a/i18n/es.json b/i18n/es.json new file mode 100644 index 00000000..458080d7 --- /dev/null +++ b/i18n/es.json @@ -0,0 +1,204 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "other": "Autores" + }, + "id": "authorsAvatar", + "translation": { + "other": "Avatar del {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "por" + }, + "id": "cancel", + "translation": { + "other": "Cancelar" + }, + "id": "cancelComment", + "translation": { + "other": "Cancelar el comentario" + }, + "id": "category", + "translation": { + "one": "Categoría", + "other": "Categorías" + }, + "id": "comment", + "translation": { + "other": "Comentario" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Un error se produjo. Su comentario no se pudo enviar. Por favor volver a intentar. ¡Gracias!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "¿Ups, perdón!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Su comentario fue enviado. ¡Pronto aparecerá en esta página!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "¡Gracias!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "{{ .Count }} solo comentario para {{ .Title }}", + "other": "{{ .Count }} comentarios para {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Contacto vía correo" + }, + "id": "currentPage", + "translation": { + "other": "Página actual" + }, + "id": "email", + "translation": { + "other": "Correo electrónico" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Ir al inicio..." + }, + "id": "leaveAComment", + "translation": { + "other": "Dejar un comentario" + }, + "id": "mainMenu", + "translation": { + "other": "Menú principal" + }, + "id": "name", + "translation": { + "other": "Nombre" + }, + "id": "next", + "translation": { + "other": "Siguiente" + }, + "id": "nextPage", + "translation": { + "other": "Siguiente página" + }, + "id": "nextPost", + "translation": { + "other": "Siguiente entrada" + }, + "id": "noTerm", + "translation": { + "other": "¡Ni un sólo {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Abrir cuenta de {{ .Platform }} en una nueva pestaña" + }, + "id": "page", + "translation": { + "other": "Página" + }, + "id": "previous", + "translation": { + "other": "Anterior" + }, + "id": "previousPage", + "translation": { + "other": "Anterior página" + }, + "id": "previousPost", + "translation": { + "other": "Anterior entrada" + }, + "id": "postedOn", + "translation": { + "other": "Posteado en" + }, + "id": "readingTime", + "translation": { + "one": "Lectura de un minuto", + "other": "{{ .Count }} minutos de lectura" + }, + "id": "recentPosts", + "translation": { + "other": "Entradas recientes" + }, + "id": "reply", + "translation": { + "other": "Responder" + }, + "id": "replyToAuthor", + "translation": { + "other": "Responder a {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "dice" + }, + "id": "search", + "translation": { + "other": "Buscar" + }, + "id": "searchResultEmpty", + "translation": { + "other": "¡No se encontraron resultados!" + }, + "id": "searching", + "translation": { + "other": "Buscando" + }, + "id": "series", + "translation": { + "one": "Serie", + "other": "Series" + }, + "id": "sidebarMenu", + "translation": { + "other": "Menú lateral" + }, + "id": "skipToContent", + "translation": { + "other": "Saltar al contenido" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Saltar al menú principal" + }, + "id": "socialMenu", + "translation": { + "other": "Menú social" + }, + "id": "submitComment", + "translation": { + "other": "¡Comentar!" + }, + "id": "tableOfContents", + "translation": { + "other": "Índice" + }, + "id": "tag", + "translation": { + "one": "Etiqueta", + "other": "Etiquetas" + }, + "id": "toggleSidebar", + "translation": { + "other": "Alternar barra lateral" + }, + "id": "website", + "translation": { + "other": "Sitio web" + } +}] diff --git a/i18n/es.toml b/i18n/es.toml deleted file mode 100644 index 356fa8d8..00000000 --- a/i18n/es.toml +++ /dev/null @@ -1,152 +0,0 @@ -[author] -one = "Autor" -other = "Autores" - -[authorsAvatar] -other = "Avatar del {{ .Author }}" - -[by] -other = "por" - -[cancel] -other = "Cancelar" - -[cancelComment] -other = "Cancelar el comentario" - -[category] -one = "Categoría" -other = "Categorías" - -[comment] -other = "Comentario" - -[commentSubmissionErrorMessage] -other = "Un error se produjo. Su comentario no se pudo enviar. Por favor volver a intentar. ¡Gracias!" - -[commentSubmissionErrorTitle] -other = "¿Ups, perdón!" - -[commentSubmissionSuccessMessage] -other = "Su comentario fue enviado. ¡Pronto aparecerá en esta página!" - -[commentSubmissionSuccessTitle] -other = "¡Gracias!" - -[commentsOnEntry] -one = "{{ .Count }} solo comentario para {{ .Title }}" -other = "{{ .Count }} comentarios para {{ .Title }}" - -[contactViaEmail] -other = "Contacto vía correo" - -[currentPage] -other = "Página actual" - -[email] -other = "Correo electrónico" - -[gopher] -other = "Gopher" - -[goHome] -other = "Ir al inicio..." - -[leaveAComment] -other = "Dejar un comentario" - -[mainMenu] -other = "Menú principal" - -[name] -other = "Nombre" - -[next] -other = "Siguiente" - -[nextPage] -other = "Siguiente página" - -[nextPost] -other = "Siguiente entrada" - -[noTerm] -other = "¡Ni un sólo {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "Abrir cuenta de {{ .Platform }} en una nueva pestaña" - -[page] -other = "Página" - -[previous] -other = "Anterior" - -[previousPage] -other = "Anterior página" - -[previousPost] -other = "Anterior entrada" - -[postedOn] -other = "Posteado en" - -[readingTime] -one = "Lectura de un minuto" -other = "{{ .Count }} minutos de lectura" - -[recentPosts] -other = "Entradas recientes" - -[reply] -other = "Responder" - -[replyToAuthor] -other = "Responder a {{ .Author }}" - -[says] -other = "dice" - -[search] -other = "Buscar" - -[searchResultEmpty] -other = "¡No se encontraron resultados!" - -[searching] -other = "Buscando" - -[series] -one = "Serie" -other = "Series" - -[sidebarMenu] -other = "Menú lateral" - -[skipToContent] -other = "Saltar al contenido" - -[skipToMainMenu] -other = "Saltar al menú principal" - -[socialMenu] -other = "Menú social" - -[submitComment] -other = "¡Comentar!" - -[tableOfContents] -other = "Índice" - -[tag] -one = "Etiqueta" -other = "Etiquetas" - -[toggleSidebar] -other = "Alternar barra lateral" - -[website] -other = "Sitio web" diff --git a/i18n/fa.json b/i18n/fa.json new file mode 100644 index 00000000..5b3dad75 --- /dev/null +++ b/i18n/fa.json @@ -0,0 +1,102 @@ +[{ + "id": "author", + "translation": { + "one": "نویسنده", + "other": "نویسندگان" + }, + "id": "by", + "translation": { + "other": "از" + }, + "id": "category", + "translation": { + "one": "دسته", + "other": "دسته‌ها" + }, + "id": "contactViaEmail", + "translation": { + "other": "تماس با ایمیل" + }, + "id": "currentPage", + "translation": { + "other": "صفحه کنونی" + }, + "id": "gopher", + "translation": { + "other": "گوفر" + }, + "id": "goHome", + "translation": { + "other": "برگشت به خانه" + }, + "id": "mainMenu", + "translation": { + "other": "منو اصلی" + }, + "id": "next", + "translation": { + "other": "بعدی" + }, + "id": "nextPage", + "translation": { + "other": "صفحه بعدی" + }, + "id": "nextPost", + "translation": { + "other": "نوشته بعدی" + }, + "id": "noTerm", + "translation": { + "other": "بدون یک {{ .Term }}!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "بازکردن حساب {{ .Platform }} در تب جدید" + }, + "id": "page", + "translation": { + "other": "صفحه" + }, + "id": "previous", + "translation": { + "other": "قبلی" + }, + "id": "previousPage", + "translation": { + "other": "صفحه قبلی" + }, + "id": "previousPost", + "translation": { + "other": "نوشته قبلی" + }, + "id": "postedOn", + "translation": { + "other": "ارسال شده در" + }, + "id": "readingTime", + "translation": { + "one": "یک دقیقه مطالعه", + "other": "{{ .Count }} دقیقه مطالعه" + }, + "id": "recentPosts", + "translation": { + "other": "آخرین نوشته ها" + }, + "id": "skipToContent", + "translation": { + "other": "رفتن به محتوا" + }, + "id": "socialMenu", + "translation": { + "other": "منوی شبکه‌های اجتماعی" + }, + "id": "tableOfContents", + "translation": { + "other": "فهرست مطالب" + }, + "id": "tag", + "translation": { + "one": "تگ", + "other": "تگ‌ها" + } +}] diff --git a/i18n/fa.toml b/i18n/fa.toml deleted file mode 100644 index cc321075..00000000 --- a/i18n/fa.toml +++ /dev/null @@ -1,75 +0,0 @@ -[author] -one = "نویسنده" -other = "نویسندگان" - -[by] -other = "از" - -[category] -one = "دسته" -other = "دسته‌ها" - -[contactViaEmail] -other = "تماس با ایمیل" - -[currentPage] -other = "صفحه کنونی" - -[gopher] -other = "گوفر" - -[goHome] -other = "برگشت به خانه" - -[mainMenu] -other = "منو اصلی" - -[next] -other = "بعدی" - -[nextPage] -other = "صفحه بعدی" - -[nextPost] -other = "نوشته بعدی" - -[noTerm] -other = "بدون یک {{ .Term }}!" - -[openAccountInNewTab] -other = "بازکردن حساب {{ .Platform }} در تب جدید" - -[page] -other = "صفحه" - -[previous] -other = "قبلی" - -[previousPage] -other = "صفحه قبلی" - -[previousPost] -other = "نوشته قبلی" - -[postedOn] -other = "ارسال شده در" - -[readingTime] -one = "یک دقیقه مطالعه" -other = "{{ .Count }} دقیقه مطالعه" - -[recentPosts] -other = "آخرین نوشته ها" - -[skipToContent] -other = "رفتن به محتوا" - -[socialMenu] -other = "منوی شبکه‌های اجتماعی" - -[tableOfContents] -other = "فهرست مطالب" - -[tag] -one = "تگ" -other = "تگ‌ها" diff --git a/i18n/fr.json b/i18n/fr.json new file mode 100644 index 00000000..7d19a592 --- /dev/null +++ b/i18n/fr.json @@ -0,0 +1,216 @@ +[{ + "id": "author", + "translation": { + "one": "Auteur :", + "other": "Auteurs :" + }, + "id": "authorsAvatar", + "translation": { + "other": "Avatar de {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "par" + }, + "id": "cancel", + "translation": { + "other": "Annuler" + }, + "id": "cancelComment", + "translation": { + "other": "Annuler le commentaire" + }, + "id": "category", + "translation": { + "one": "Catégorie :", + "other": "Catégories :" + }, + "id": "comment", + "translation": { + "other": "Commentaire" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Une erreur s'est produite. Le commentaire n'a pas pu être envoyé. Veuillez réessayer. Merci !" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Houlà, désolé !" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Votre commentaire a été envoyé. Il s'affichera bientôt sur cette page !" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Merci !" + }, + "id": "commentsOnEntry", + "translation": { + "one": "Seulement {{ .Count }} commentaire sur {{ .Title }}", + "other": "{{ .Count }} commentaires sur {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Contacter par mail" + }, + "id": "currentPage", + "translation": { + "other": "Page actuelle" + }, + "id": "email", + "translation": { + "other": "Mail" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Retourner à l'accueil..." + }, + "id": "languages", + "translation": { + "other": "Langues" + }, + "id": "leaveAComment", + "translation": { + "other": "Laisser un commentaire" + }, + "id": "license", + "translation": { + "other": "Licence :" + }, + "id": "mainMenu", + "translation": { + "other": "Menu principal" + }, + "id": "name", + "translation": { + "other": "Nom" + }, + "id": "next", + "translation": { + "other": "Suivant" + }, + "id": "nextPage", + "translation": { + "other": "Page suivante" + }, + "id": "nextPost", + "translation": { + "other": "Billet suivant" + }, + "id": "noTerm", + "translation": { + "other": "Aucun(e) {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Ouvrir {{ .Platform }} dans un nouvel onglet" + }, + "id": "page", + "translation": { + "other": "Page" + }, + "id": "previous", + "translation": { + "other": "Précédent" + }, + "id": "previousPage", + "translation": { + "other": "Page précédente" + }, + "id": "previousPost", + "translation": { + "other": "Billet précédent" + }, + "id": "postedOn", + "translation": { + "other": "Publié le" + }, + "id": "readingTime", + "translation": { + "one": "Une minute de lecture", + "other": "{{ .Count }} minutes de lecture" + }, + "id": "recentPosts", + "translation": { + "other": "Billets récents" + }, + "id": "reply", + "translation": { + "other": "Répondre" + }, + "id": "replyToAuthor", + "translation": { + "other": "Répondre à {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "a dit" + }, + "id": "search", + "translation": { + "other": "Recherche" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Aucun résultat !" + }, + "id": "searching", + "translation": { + "other": "Recherche en cours" + }, + "id": "series", + "translation": { + "one": "Série", + "other": "Séries" + }, + "id": "sidebarMenu", + "translation": { + "other": "Menu de la barre latérale" + }, + "id": "skipToContent", + "translation": { + "other": "Aller au contenu" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Aller au menu principal" + }, + "id": "socialMenu", + "translation": { + "other": "Social Menu" + }, + "id": "submitComment", + "translation": { + "other": "Commenter !" + }, + "id": "tableOfContents", + "translation": { + "other": "Table des matières" + }, + "id": "tag", + "translation": { + "one": "Étiquette :", + "other": "Étiquettes :" + }, + "id": "toggleSidebar", + "translation": { + "other": "Déplier la barre latérale" + }, + "id": "translations", + "translation": { + "other": "Traductions" + }, + "id": "website", + "translation": { + "other": "Site web" + } +}] diff --git a/i18n/fr.toml b/i18n/fr.toml deleted file mode 100644 index cdb514ed..00000000 --- a/i18n/fr.toml +++ /dev/null @@ -1,161 +0,0 @@ -[author] -one = "Auteur :" -other = "Auteurs :" - -[authorsAvatar] -other = "Avatar de {{ .Author }}" - -[by] -other = "par" - -[cancel] -other = "Annuler" - -[cancelComment] -other = "Annuler le commentaire" - -[category] -one = "Catégorie :" -other = "Catégories :" - -[comment] -other = "Commentaire" - -[commentSubmissionErrorMessage] -other = "Une erreur s'est produite. Le commentaire n'a pas pu être envoyé. Veuillez réessayer. Merci !" - -[commentSubmissionErrorTitle] -other = "Houlà, désolé !" - -[commentSubmissionSuccessMessage] -other = "Votre commentaire a été envoyé. Il s'affichera bientôt sur cette page !" - -[commentSubmissionSuccessTitle] -other = "Merci !" - -[commentsOnEntry] -one = "Seulement {{ .Count }} commentaire sur {{ .Title }}" -other = "{{ .Count }} commentaires sur {{ .Title }}" - -[contactViaEmail] -other = "Contacter par mail" - -[currentPage] -other = "Page actuelle" - -[email] -other = "Mail" - -[gopher] -other = "Gopher" - -[goHome] -other = "Retourner à l'accueil..." - -[languages] -other = "Langues" - -[leaveAComment] -other = "Laisser un commentaire" - -[license] -other = "Licence :" - -[mainMenu] -other = "Menu principal" - -[name] -other = "Nom" - -[next] -other = "Suivant" - -[nextPage] -other = "Page suivante" - -[nextPost] -other = "Billet suivant" - -[noTerm] -other = "Aucun(e) {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "Ouvrir {{ .Platform }} dans un nouvel onglet" - -[page] -other = "Page" - -[previous] -other = "Précédent" - -[previousPage] -other = "Page précédente" - -[previousPost] -other = "Billet précédent" - -[postedOn] -other = "Publié le" - -[readingTime] -one = "Une minute de lecture" -other = "{{ .Count }} minutes de lecture" - -[recentPosts] -other = "Billets récents" - -[reply] -other = "Répondre" - -[replyToAuthor] -other = "Répondre à {{ .Author }}" - -[says] -other = "a dit" - -[search] -other = "Recherche" - -[searchResultEmpty] -other = "Aucun résultat !" - -[searching] -other = "Recherche en cours" - -[series] -one = "Série" -other = "Séries" - -[sidebarMenu] -other = "Menu de la barre latérale" - -[skipToContent] -other = "Aller au contenu" - -[skipToMainMenu] -other = "Aller au menu principal" - -[socialMenu] -other = "Social Menu" - -[submitComment] -other = "Commenter !" - -[tableOfContents] -other = "Table des matières" - -[tag] -one = "Étiquette :" -other = "Étiquettes :" - -[toggleSidebar] -other = "Déplier la barre latérale" - -[translations] -other = "Traductions" - -[website] -other = "Site web" diff --git a/i18n/hr.json b/i18n/hr.json new file mode 100644 index 00000000..4d01b25f --- /dev/null +++ b/i18n/hr.json @@ -0,0 +1,102 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "other": "Autori" + }, + "id": "by", + "translation": { + "other": "od" + }, + "id": "category", + "translation": { + "one": "Kategorija", + "other": "Kategorije" + }, + "id": "contactViaEmail", + "translation": { + "other": "Kontakt putem emaila" + }, + "id": "currentPage", + "translation": { + "other": "Trenutačna stranica" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Na početnu" + }, + "id": "mainMenu", + "translation": { + "other": "Glavni izbornik" + }, + "id": "next", + "translation": { + "other": "Iduće" + }, + "id": "nextPage", + "translation": { + "other": "Iduća stranica" + }, + "id": "nextPost", + "translation": { + "other": "Iduća objava" + }, + "id": "noTerm", + "translation": { + "other": "Ne postoji niti jedan {{ .Term }}!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Otvori {{ .Platform }} u novoj kartici" + }, + "id": "page", + "translation": { + "other": "Stranica" + }, + "id": "previous", + "translation": { + "other": "Prethodno" + }, + "id": "previousPage", + "translation": { + "other": "Prethodna stranica" + }, + "id": "previousPost", + "translation": { + "other": "Prethodna objava" + }, + "id": "postedOn", + "translation": { + "other": "Objavljeno" + }, + "id": "readingTime", + "translation": { + "one": "Vrijeme čitanja: 1 min", + "other": "Vrijeme čitanja: {{ .Count }} min" + }, + "id": "recentPosts", + "translation": { + "other": "Nedavne objave" + }, + "id": "skipToContent", + "translation": { + "other": "Idi na sadržaj" + }, + "id": "socialMenu", + "translation": { + "other": "Izbornik socijalnih mreža" + }, + "id": "tableOfContents", + "translation": { + "other": "Sadržaj" + }, + "id": "tag", + "translation": { + "one": "Oznaka", + "other": "Oznake" + } +}] diff --git a/i18n/hr.toml b/i18n/hr.toml deleted file mode 100644 index cf203ca6..00000000 --- a/i18n/hr.toml +++ /dev/null @@ -1,75 +0,0 @@ -[author] -one = "Autor" -other = "Autori" - -[by] -other = "od" - -[category] -one = "Kategorija" -other = "Kategorije" - -[contactViaEmail] -other = "Kontakt putem emaila" - -[currentPage] -other = "Trenutačna stranica" - -[gopher] -other = "Gopher" - -[goHome] -other = "Na početnu" - -[mainMenu] -other = "Glavni izbornik" - -[next] -other = "Iduće" - -[nextPage] -other = "Iduća stranica" - -[nextPost] -other = "Iduća objava" - -[noTerm] -other = "Ne postoji niti jedan {{ .Term }}!" - -[openAccountInNewTab] -other = "Otvori {{ .Platform }} u novoj kartici" - -[page] -other = "Stranica" - -[previous] -other = "Prethodno" - -[previousPage] -other = "Prethodna stranica" - -[previousPost] -other = "Prethodna objava" - -[postedOn] -other = "Objavljeno" - -[readingTime] -one = "Vrijeme čitanja: 1 min" -other = "Vrijeme čitanja: {{ .Count }} min" - -[recentPosts] -other = "Nedavne objave" - -[skipToContent] -other = "Idi na sadržaj" - -[socialMenu] -other = "Izbornik socijalnih mreža" - -[tableOfContents] -other = "Sadržaj" - -[tag] -one = "Oznaka" -other = "Oznake" diff --git a/i18n/id.json b/i18n/id.json new file mode 100644 index 00000000..7ac7f7c3 --- /dev/null +++ b/i18n/id.json @@ -0,0 +1,208 @@ +[{ + "id": "author", + "translation": { + "one": "Pengarang", + "other": "Pengarang" + }, + "id": "authorsAvatar", + "translation": { + "other": "Avatar {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "oleh" + }, + "id": "cancel", + "translation": { + "other": "Batal" + }, + "id": "cancelComment", + "translation": { + "other": "Batal menanggapi" + }, + "id": "category", + "translation": { + "one": "Kategori", + "other": "Kategori" + }, + "id": "comment", + "translation": { + "other": "Tanggapan" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Terdapat galat. Tidak dapat mengirim tanggapanmu. Silakan coba lagi. Terima kasih." + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Oops, maaf." + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Tanggapanmu telah dikirim dan akan segera muncul di laman ini." + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Terima kasih." + }, + "id": "commentsOnEntry", + "translation": { + "one": "Hanya terdapat {{ .Count }} tanggapan di {{ .Title }}", + "other": "Terdapat {{ .Count }} tanggapan di {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Hubungi melalui Surel" + }, + "id": "currentPage", + "translation": { + "other": "Laman saat ini" + }, + "id": "email", + "translation": { + "other": "Surel" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Ke Beranda..." + }, + "id": "lastUpdated", + "translation": { + "other": "Pembaruan terakhir" + }, + "id": "leaveAComment", + "translation": { + "other": "Tinggalkan tanggapan" + }, + "id": "mainMenu", + "translation": { + "other": "Menu Utama" + }, + "id": "name", + "translation": { + "other": "Nama" + }, + "id": "next", + "translation": { + "other": "Selanjutnya" + }, + "id": "nextPage", + "translation": { + "other": "Laman selanjutnya" + }, + "id": "nextPost", + "translation": { + "other": "Pos Selanjutnya" + }, + "id": "noTerm", + "translation": { + "other": "Tidak ada satu pun {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "Oke" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Buka akun {{ .Platform }} di tab baru" + }, + "id": "page", + "translation": { + "other": "Laman" + }, + "id": "previous", + "translation": { + "other": "Sebelumnya" + }, + "id": "previousPage", + "translation": { + "other": "Laman sebelumnya" + }, + "id": "previousPost", + "translation": { + "other": "Pos sebelumnya" + }, + "id": "postedOn", + "translation": { + "other": "Diposkan pada" + }, + "id": "readingTime", + "translation": { + "one": "1 menit membaca", + "other": "{{ .Count }} menit membaca" + }, + "id": "recentPosts", + "translation": { + "other": "Pos Terakhir" + }, + "id": "reply", + "translation": { + "other": "Balas" + }, + "id": "replyToAuthor", + "translation": { + "other": "Balas kepada {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "mengatakan" + }, + "id": "search", + "translation": { + "other": "Cari" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Tidak ditemukan" + }, + "id": "searching", + "translation": { + "other": "Mencari" + }, + "id": "series", + "translation": { + "one": "Seri", + "other": "Seri" + }, + "id": "sidebarMenu", + "translation": { + "other": "Menu Sisi" + }, + "id": "skipToContent", + "translation": { + "other": "Lompat ke konten" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Lompat ke Menu Utama" + }, + "id": "socialMenu", + "translation": { + "other": "Menu Sosial" + }, + "id": "submitComment", + "translation": { + "other": "Taggapi" + }, + "id": "tableOfContents", + "translation": { + "other": "Daftar Isi" + }, + "id": "tag", + "translation": { + "one": "Label", + "other": "Label" + }, + "id": "toggleSidebar", + "translation": { + "other": "Buka/Tutup Bilah Sisi" + }, + "id": "website", + "translation": { + "other": "Situs web" + } +}] diff --git a/i18n/id.toml b/i18n/id.toml deleted file mode 100644 index 50cab55d..00000000 --- a/i18n/id.toml +++ /dev/null @@ -1,155 +0,0 @@ -[author] -one = "Pengarang" -other = "Pengarang" - -[authorsAvatar] -other = "Avatar {{ .Author }}" - -[by] -other = "oleh" - -[cancel] -other = "Batal" - -[cancelComment] -other = "Batal menanggapi" - -[category] -one = "Kategori" -other = "Kategori" - -[comment] -other = "Tanggapan" - -[commentSubmissionErrorMessage] -other = "Terdapat galat. Tidak dapat mengirim tanggapanmu. Silakan coba lagi. Terima kasih." - -[commentSubmissionErrorTitle] -other = "Oops, maaf." - -[commentSubmissionSuccessMessage] -other = "Tanggapanmu telah dikirim dan akan segera muncul di laman ini." - -[commentSubmissionSuccessTitle] -other = "Terima kasih." - -[commentsOnEntry] -one = "Hanya terdapat {{ .Count }} tanggapan di {{ .Title }}" -other = "Terdapat {{ .Count }} tanggapan di {{ .Title }}" - -[contactViaEmail] -other = "Hubungi melalui Surel" - -[currentPage] -other = "Laman saat ini" - -[email] -other = "Surel" - -[gopher] -other = "Gopher" - -[goHome] -other = "Ke Beranda..." - -[lastUpdated] -other = "Pembaruan terakhir" - -[leaveAComment] -other = "Tinggalkan tanggapan" - -[mainMenu] -other = "Menu Utama" - -[name] -other = "Nama" - -[next] -other = "Selanjutnya" - -[nextPage] -other = "Laman selanjutnya" - -[nextPost] -other = "Pos Selanjutnya" - -[noTerm] -other = "Tidak ada satu pun {{ .Term }}!" - -[ok] -other = "Oke" - -[openAccountInNewTab] -other = "Buka akun {{ .Platform }} di tab baru" - -[page] -other = "Laman" - -[previous] -other = "Sebelumnya" - -[previousPage] -other = "Laman sebelumnya" - -[previousPost] -other = "Pos sebelumnya" - -[postedOn] -other = "Diposkan pada" - -[readingTime] -one = "1 menit membaca" -other = "{{ .Count }} menit membaca" - -[recentPosts] -other = "Pos Terakhir" - -[reply] -other = "Balas" - -[replyToAuthor] -other = "Balas kepada {{ .Author }}" - -[says] -other = "mengatakan" - -[search] -other = "Cari" - -[searchResultEmpty] -other = "Tidak ditemukan" - -[searching] -other = "Mencari" - -[series] -one = "Seri" -other = "Seri" - -[sidebarMenu] -other = "Menu Sisi" - -[skipToContent] -other = "Lompat ke konten" - -[skipToMainMenu] -other = "Lompat ke Menu Utama" - -[socialMenu] -other = "Menu Sosial" - -[submitComment] -other = "Taggapi" - -[tableOfContents] -other = "Daftar Isi" - -[tag] -one = "Label" -other = "Label" - -[toggleSidebar] -other = "Buka/Tutup Bilah Sisi" - -[website] -other = "Situs web" diff --git a/i18n/it.json b/i18n/it.json new file mode 100644 index 00000000..a0c1437c --- /dev/null +++ b/i18n/it.json @@ -0,0 +1,204 @@ +[{ + "id": "author", + "translation": { + "one": "Autore", + "other": "Autori" + }, + "id": "authorsAvatar", + "translation": { + "other": "Avatar di {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "di" + }, + "id": "cancel", + "translation": { + "other": "Cancella" + }, + "id": "cancelComment", + "translation": { + "other": "Cancella il commento" + }, + "id": "category", + "translation": { + "one": "Categoria", + "other": "Categorie" + }, + "id": "comment", + "translation": { + "other": "Commento" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Si è verificato un errore. Impossibile inviare il commento. Perfavore riprova più tardi" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Oh perbacco!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Il tuo commmento è stato inviato con successo. Comparirà nella pagina a breve!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Grazie!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "Solo {{ .Count }} commento su {{ .Title }}", + "other": "{{ .Count }} commenti su {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Contatta via Email" + }, + "id": "currentPage", + "translation": { + "other": "Pagina corrente" + }, + "id": "email", + "translation": { + "other": "Email" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Vai alla Home..." + }, + "id": "leaveAComment", + "translation": { + "other": "Lascia un commento" + }, + "id": "mainMenu", + "translation": { + "other": "Menu Principale" + }, + "id": "name", + "translation": { + "other": "Nome" + }, + "id": "next", + "translation": { + "other": "Successivo" + }, + "id": "nextPage", + "translation": { + "other": "Pagina successiva" + }, + "id": "nextPost", + "translation": { + "other": "Post successivo" + }, + "id": "noTerm", + "translation": { + "other": "Nessun {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Apri l'account {{ .Platform }} in una nuova tab" + }, + "id": "page", + "translation": { + "other": "Pagina" + }, + "id": "previous", + "translation": { + "other": "Precedente" + }, + "id": "previousPage", + "translation": { + "other": "Pagina precedente" + }, + "id": "previousPost", + "translation": { + "other": "Post prececente" + }, + "id": "postedOn", + "translation": { + "other": "Pubblicato il" + }, + "id": "readingTime", + "translation": { + "one": "Un minuto di lettura", + "other": "{{ .Count }} minuti di lettura" + }, + "id": "recentPosts", + "translation": { + "other": "Post recenti" + }, + "id": "reply", + "translation": { + "other": "Rispondi" + }, + "id": "replyToAuthor", + "translation": { + "other": "Respondi a {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "dice" + }, + "id": "search", + "translation": { + "other": "Cerca" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Nessun risultato" + }, + "id": "searching", + "translation": { + "other": "Ricerca in corso" + }, + "id": "series", + "translation": { + "one": "Serie", + "other": "Serie" + }, + "id": "sidebarMenu", + "translation": { + "other": "Menu Laterale" + }, + "id": "skipToContent", + "translation": { + "other": "Vai al contenuto" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Vai al menu principale" + }, + "id": "socialMenu", + "translation": { + "other": "Menu social" + }, + "id": "submitComment", + "translation": { + "other": "Commenta!" + }, + "id": "tableOfContents", + "translation": { + "other": "Sommario" + }, + "id": "tag", + "translation": { + "one": "Tag", + "other": "Tag" + }, + "id": "toggleSidebar", + "translation": { + "other": "Mostra o nascondi barra laterale" + }, + "id": "website", + "translation": { + "other": "Sito" + } +}] diff --git a/i18n/it.toml b/i18n/it.toml deleted file mode 100644 index d6584c83..00000000 --- a/i18n/it.toml +++ /dev/null @@ -1,152 +0,0 @@ -[author] -one = "Autore" -other = "Autori" - -[authorsAvatar] -other = "Avatar di {{ .Author }}" - -[by] -other = "di" - -[cancel] -other = "Cancella" - -[cancelComment] -other = "Cancella il commento" - -[category] -one = "Categoria" -other = "Categorie" - -[comment] -other = "Commento" - -[commentSubmissionErrorMessage] -other = "Si è verificato un errore. Impossibile inviare il commento. Perfavore riprova più tardi" - -[commentSubmissionErrorTitle] -other = "Oh perbacco!" - -[commentSubmissionSuccessMessage] -other = "Il tuo commmento è stato inviato con successo. Comparirà nella pagina a breve!" - -[commentSubmissionSuccessTitle] -other = "Grazie!" - -[commentsOnEntry] -one = "Solo {{ .Count }} commento su {{ .Title }}" -other = "{{ .Count }} commenti su {{ .Title }}" - -[contactViaEmail] -other = "Contatta via Email" - -[currentPage] -other = "Pagina corrente" - -[email] -other = "Email" - -[gopher] -other = "Gopher" - -[goHome] -other = "Vai alla Home..." - -[leaveAComment] -other = "Lascia un commento" - -[mainMenu] -other = "Menu Principale" - -[name] -other = "Nome" - -[next] -other = "Successivo" - -[nextPage] -other = "Pagina successiva" - -[nextPost] -other = "Post successivo" - -[noTerm] -other = "Nessun {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "Apri l'account {{ .Platform }} in una nuova tab" - -[page] -other = "Pagina" - -[previous] -other = "Precedente" - -[previousPage] -other = "Pagina precedente" - -[previousPost] -other = "Post prececente" - -[postedOn] -other = "Pubblicato il" - -[readingTime] -one = "Un minuto di lettura" -other = "{{ .Count }} minuti di lettura" - -[recentPosts] -other = "Post recenti" - -[reply] -other = "Rispondi" - -[replyToAuthor] -other = "Respondi a {{ .Author }}" - -[says] -other = "dice" - -[search] -other = "Cerca" - -[searchResultEmpty] -other = "Nessun risultato" - -[searching] -other = "Ricerca in corso" - -[series] -one = "Serie" -other = "Serie" - -[sidebarMenu] -other = "Menu Laterale" - -[skipToContent] -other = "Vai al contenuto" - -[skipToMainMenu] -other = "Vai al menu principale" - -[socialMenu] -other = "Menu social" - -[submitComment] -other = "Commenta!" - -[tableOfContents] -other = "Sommario" - -[tag] -one = "Tag" -other = "Tag" - -[toggleSidebar] -other = "Mostra o nascondi barra laterale" - -[website] -other = "Sito" diff --git a/i18n/pl.json b/i18n/pl.json new file mode 100644 index 00000000..c930a6a9 --- /dev/null +++ b/i18n/pl.json @@ -0,0 +1,110 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "few": "Autorów", + "many": "Autorów", + "other": "Autora" + }, + "id": "by", + "translation": { + "other": "przez" + }, + "id": "category", + "translation": { + "one": "Kategoria", + "few": "Kategorie", + "many": "Kategorii", + "other": "Kategorii" + }, + "id": "contactViaEmail", + "translation": { + "other": "Kontakt przez e-mail" + }, + "id": "currentPage", + "translation": { + "other": "Aktualna strona" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Idź na start..." + }, + "id": "mainMenu", + "translation": { + "other": "Menu Główne" + }, + "id": "next", + "translation": { + "other": "Następny" + }, + "id": "nextPage", + "translation": { + "other": "Następna strona" + }, + "id": "nextPost", + "translation": { + "other": "Następny post" + }, + "id": "noTerm", + "translation": { + "other": "Brakuje: {{ .Term }}!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Otwórz {{ .Platform }} w nowej karcie" + }, + "id": "page", + "translation": { + "other": "Strona" + }, + "id": "previous", + "translation": { + "other": "Poprzedni" + }, + "id": "previousPage", + "translation": { + "other": "Poprzednia strona" + }, + "id": "previousPost", + "translation": { + "other": "Poprzedni post" + }, + "id": "postedOn", + "translation": { + "other": "Wysłane dnia" + }, + "id": "readingTime", + "translation": { + "one": "Jedna minuta czytania", + "few": "{{ .Count }} minuty czytania", + "many": "{{ .Count }} minut czytania", + "other": "{{ .Count }} minut czytania" + }, + "id": "recentPosts", + "translation": { + "other": "Ostatnie Posty" + }, + "id": "skipToContent", + "translation": { + "other": "Przejdź do Treści" + }, + "id": "socialMenu", + "translation": { + "other": "Menu Społecznościowe" + }, + "id": "tableOfContents", + "translation": { + "other": "Spis Treści" + }, + "id": "tag", + "translation": { + "one": "Tag", + "few": "Tagi", + "many": "Tagów", + "other": "Taga" + } +}] diff --git a/i18n/pl.toml b/i18n/pl.toml deleted file mode 100644 index 203655d4..00000000 --- a/i18n/pl.toml +++ /dev/null @@ -1,83 +0,0 @@ -[author] -one = "Autor" -few = "Autorów" -many = "Autorów" -other = "Autora" - -[by] -other = "przez" - -[category] -one = "Kategoria" -few = "Kategorie" -many = "Kategorii" -other = "Kategorii" - -[contactViaEmail] -other = "Kontakt przez e-mail" - -[currentPage] -other = "Aktualna strona" - -[gopher] -other = "Gopher" - -[goHome] -other = "Idź na start..." - -[mainMenu] -other = "Menu Główne" - -[next] -other = "Następny" - -[nextPage] -other = "Następna strona" - -[nextPost] -other = "Następny post" - -[noTerm] -other = "Brakuje: {{ .Term }}!" - -[openAccountInNewTab] -other = "Otwórz {{ .Platform }} w nowej karcie" - -[page] -other = "Strona" - -[previous] -other = "Poprzedni" - -[previousPage] -other = "Poprzednia strona" - -[previousPost] -other = "Poprzedni post" - -[postedOn] -other = "Wysłane dnia" - -[readingTime] -one = "Jedna minuta czytania" -few = "{{ .Count }} minuty czytania" -many = "{{ .Count }} minut czytania" -other = "{{ .Count }} minut czytania" - -[recentPosts] -other = "Ostatnie Posty" - -[skipToContent] -other = "Przejdź do Treści" - -[socialMenu] -other = "Menu Społecznościowe" - -[tableOfContents] -other = "Spis Treści" - -[tag] -one = "Tag" -few = "Tagi" -many = "Tagów" -other = "Taga" diff --git a/i18n/pt-BR.json b/i18n/pt-BR.json new file mode 100644 index 00000000..7de5431b --- /dev/null +++ b/i18n/pt-BR.json @@ -0,0 +1,102 @@ +[{ + "id": "author", + "translation": { + "one": "Autor", + "other": "Autores" + }, + "id": "by", + "translation": { + "other": "por" + }, + "id": "category", + "translation": { + "one": "Categoria", + "other": "Categorias" + }, + "id": "contactViaEmail", + "translation": { + "other": "Entre em contato por email" + }, + "id": "currentPage", + "translation": { + "other": "Página atual" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Página principal..." + }, + "id": "mainMenu", + "translation": { + "other": "Página principal" + }, + "id": "next", + "translation": { + "other": "Próximo" + }, + "id": "nextPage", + "translation": { + "other": "Próxima página" + }, + "id": "nextPost", + "translation": { + "other": "Próximo post" + }, + "id": "noTerm", + "translation": { + "other": "{{ .Term }} não foi encontrado!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Abra a {{ .Platform }} em uma nova aba" + }, + "id": "page", + "translation": { + "other": "Página" + }, + "id": "previous", + "translation": { + "other": "Anterior" + }, + "id": "previousPage", + "translation": { + "other": "Página anterior" + }, + "id": "previousPost", + "translation": { + "other": "Post anterior" + }, + "id": "postedOn", + "translation": { + "other": "Postado em" + }, + "id": "readingTime", + "translation": { + "one": "Um minuto de leitura", + "other": "{{ .Count }} minutos de leitura" + }, + "id": "recentPosts", + "translation": { + "other": "Posts recentes" + }, + "id": "skipToContent", + "translation": { + "other": "Pular para o conteúdo" + }, + "id": "socialMenu", + "translation": { + "other": "Menu Social" + }, + "id": "tableOfContents", + "translation": { + "other": "Índice" + }, + "id": "tag", + "translation": { + "one": "Tag", + "other": "Tags" + } +}] diff --git a/i18n/pt-BR.toml b/i18n/pt-BR.toml deleted file mode 100644 index 56415550..00000000 --- a/i18n/pt-BR.toml +++ /dev/null @@ -1,75 +0,0 @@ -[author] -one = "Autor" -other = "Autores" - -[by] -other = "por" - -[category] -one = "Categoria" -other = "Categorias" - -[contactViaEmail] -other = "Entre em contato por email" - -[currentPage] -other = "Página atual" - -[gopher] -other = "Gopher" - -[goHome] -other = "Página principal..." - -[mainMenu] -other = "Página principal" - -[next] -other = "Próximo" - -[nextPage] -other = "Próxima página" - -[nextPost] -other = "Próximo post" - -[noTerm] -other = "{{ .Term }} não foi encontrado!" - -[openAccountInNewTab] -other = "Abra a {{ .Platform }} em uma nova aba" - -[page] -other = "Página" - -[previous] -other = "Anterior" - -[previousPage] -other = "Página anterior" - -[previousPost] -other = "Post anterior" - -[postedOn] -other = "Postado em" - -[readingTime] -one = "Um minuto de leitura" -other = "{{ .Count }} minutos de leitura" - -[recentPosts] -other = "Posts recentes" - -[skipToContent] -other = "Pular para o conteúdo" - -[socialMenu] -other = "Menu Social" - -[tableOfContents] -other = "Índice" - -[tag] -one = "Tag" -other = "Tags" diff --git a/i18n/sl.json b/i18n/sl.json new file mode 100644 index 00000000..c1425a52 --- /dev/null +++ b/i18n/sl.json @@ -0,0 +1,110 @@ +[{ + "id": "author", + "translation": { + "one": "Avtor", + "two": "Avtorja", + "few": "Avtorji", + "other": "Avtorji" + }, + "id": "by", + "translation": { + "other": "napisal" + }, + "id": "category", + "translation": { + "one": "Kategorija", + "two": "Kategoriji", + "few": "Kategorije", + "other": "Kategorije" + }, + "id": "contactViaEmail", + "translation": { + "other": "Stik po elektronski pošti" + }, + "id": "currentPage", + "translation": { + "other": "Trenutna stran" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Na začetek..." + }, + "id": "mainMenu", + "translation": { + "other": "Glavni meni" + }, + "id": "next", + "translation": { + "other": "Naslednji" + }, + "id": "nextPage", + "translation": { + "other": "Naslednja stran" + }, + "id": "nextPost", + "translation": { + "other": "Naslednja objava" + }, + "id": "noTerm", + "translation": { + "other": "Niti enega {{ .Term }}!" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Odpri {{ .Platform }} v novem zavihku" + }, + "id": "page", + "translation": { + "other": "Stran" + }, + "id": "previous", + "translation": { + "other": "Prejšnji" + }, + "id": "previousPage", + "translation": { + "other": "Prejšnja stran" + }, + "id": "previousPost", + "translation": { + "other": "Prejšnja objava" + }, + "id": "postedOn", + "translation": { + "other": "Objavljeno" + }, + "id": "readingTime", + "translation": { + "one": "ena minuta branja", + "two": "dve minuti branja", + "few": "{{ .Count }} minute branja", + "other": "{{ .Count }} minut branja" + }, + "id": "recentPosts", + "translation": { + "other": "Zadnji zapisi" + }, + "id": "skipToContent", + "translation": { + "other": "Skoči na vsebino" + }, + "id": "socialMenu", + "translation": { + "other": "Povezave na družabna omrežja" + }, + "id": "tableOfContents", + "translation": { + "other": "Kazalo" + }, + "id": "tag", + "translation": { + "one": "Značka", + "two": "Znački", + "few": "Značke", + "other": "Značke" + } +}] diff --git a/i18n/sl.toml b/i18n/sl.toml deleted file mode 100644 index 9ec5a2e0..00000000 --- a/i18n/sl.toml +++ /dev/null @@ -1,83 +0,0 @@ -[author] -one = "Avtor" -two = "Avtorja" -few = "Avtorji" -other = "Avtorji" - -[by] -other = "napisal" - -[category] -one = "Kategorija" -two = "Kategoriji" -few = "Kategorije" -other = "Kategorije" - -[contactViaEmail] -other = "Stik po elektronski pošti" - -[currentPage] -other = "Trenutna stran" - -[gopher] -other = "Gopher" - -[goHome] -other = "Na začetek..." - -[mainMenu] -other = "Glavni meni" - -[next] -other = "Naslednji" - -[nextPage] -other = "Naslednja stran" - -[nextPost] -other = "Naslednja objava" - -[noTerm] -other = "Niti enega {{ .Term }}!" - -[openAccountInNewTab] -other = "Odpri {{ .Platform }} v novem zavihku" - -[page] -other = "Stran" - -[previous] -other = "Prejšnji" - -[previousPage] -other = "Prejšnja stran" - -[previousPost] -other = "Prejšnja objava" - -[postedOn] -other = "Objavljeno" - -[readingTime] -one = "ena minuta branja" -two = "dve minuti branja" -few = "{{ .Count }} minute branja" -other = "{{ .Count }} minut branja" - -[recentPosts] -other = "Zadnji zapisi" - -[skipToContent] -other = "Skoči na vsebino" - -[socialMenu] -other = "Povezave na družabna omrežja" - -[tableOfContents] -other = "Kazalo" - -[tag] -one = "Značka" -two = "Znački" -few = "Značke" -other = "Značke" diff --git a/i18n/uk.json b/i18n/uk.json new file mode 100644 index 00000000..b2231fba --- /dev/null +++ b/i18n/uk.json @@ -0,0 +1,208 @@ +[{ + "id": "author", + "translation": { + "one": "Автор", + "other": "Автори" + }, + "id": "authorsAvatar", + "translation": { + "other": "Аватар {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "" + }, + "id": "cancel", + "translation": { + "other": "Відміна" + }, + "id": "cancelComment", + "translation": { + "other": "Відмінити коментар" + }, + "id": "category", + "translation": { + "one": "Категорія", + "other": "Категорії" + }, + "id": "comment", + "translation": { + "other": "Коментар" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Виникла помилка. Не можу надіслати коментар. Будь ласка, спробуйте ще раз. Дякую!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Упс, перепрошую!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Ваш коментар надіслано. Скоро він з'явиться на сторінці!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Дякую!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "Лише {{ .Count }} коментар на {{ .Title }}", + "other": "{{ .Count }} коментарів на {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Написати на пошту" + }, + "id": "currentPage", + "translation": { + "other": "Поточна сторінка" + }, + "id": "email", + "translation": { + "other": "Ел.пошта" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Додому..." + }, + "id": "lastUpdated", + "translation": { + "other": "Востаннє оновлено..." + }, + "id": "leaveAComment", + "translation": { + "other": "Залишити коментар" + }, + "id": "mainMenu", + "translation": { + "other": "Головне меню" + }, + "id": "name", + "translation": { + "other": "Ім'я" + }, + "id": "next", + "translation": { + "other": "Наступний" + }, + "id": "nextPage", + "translation": { + "other": "Наступна сторінка" + }, + "id": "nextPost", + "translation": { + "other": "Наступний пост" + }, + "id": "noTerm", + "translation": { + "other": "Немає жодного {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Відкрити {{ .Platform }} акаунт у новій вкладці" + }, + "id": "page", + "translation": { + "other": "Сторінка" + }, + "id": "previous", + "translation": { + "other": "Попередня" + }, + "id": "previousPage", + "translation": { + "other": "Попередня сторінка" + }, + "id": "previousPost", + "translation": { + "other": "Попередній пост" + }, + "id": "postedOn", + "translation": { + "other": "Опубліковано" + }, + "id": "readingTime", + "translation": { + "one": "Одна хвилина читання", + "other": "{{ .Count }} хвилин читатання" + }, + "id": "recentPosts", + "translation": { + "other": "Останні пости" + }, + "id": "reply", + "translation": { + "other": "Відповісти" + }, + "id": "replyToAuthor", + "translation": { + "other": "Відповісти {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "каже" + }, + "id": "search", + "translation": { + "other": "Пошук" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Нічого не знайдено!" + }, + "id": "searching", + "translation": { + "other": "Пошук" + }, + "id": "series", + "translation": { + "one": "Ряд", + "other": "Ряд" + }, + "id": "sidebarMenu", + "translation": { + "other": "Бічне меню" + }, + "id": "skipToContent", + "translation": { + "other": "Перескочити до змісту" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Перескочити до головного меню" + }, + "id": "socialMenu", + "translation": { + "other": "Меню соц.мереж" + }, + "id": "submitComment", + "translation": { + "other": "Коментувати!" + }, + "id": "tableOfContents", + "translation": { + "other": "Зміст" + }, + "id": "tag", + "translation": { + "one": "Tag", + "other": "Теги" + }, + "id": "toggleSidebar", + "translation": { + "other": "Вкл/Викл бічне меню" + }, + "id": "website", + "translation": { + "other": "Вебсайт" + } +}] diff --git a/i18n/uk.toml b/i18n/uk.toml deleted file mode 100644 index 6762bb7f..00000000 --- a/i18n/uk.toml +++ /dev/null @@ -1,155 +0,0 @@ -[author] -one = "Автор" -other = "Автори" - -[authorsAvatar] -other = "Аватар {{ .Author }}" - -[by] -other = "" - -[cancel] -other = "Відміна" - -[cancelComment] -other = "Відмінити коментар" - -[category] -one = "Категорія" -other = "Категорії" - -[comment] -other = "Коментар" - -[commentSubmissionErrorMessage] -other = "Виникла помилка. Не можу надіслати коментар. Будь ласка, спробуйте ще раз. Дякую!" - -[commentSubmissionErrorTitle] -other = "Упс, перепрошую!" - -[commentSubmissionSuccessMessage] -other = "Ваш коментар надіслано. Скоро він з'явиться на сторінці!" - -[commentSubmissionSuccessTitle] -other = "Дякую!" - -[commentsOnEntry] -one = "Лише {{ .Count }} коментар на {{ .Title }}" -other = "{{ .Count }} коментарів на {{ .Title }}" - -[contactViaEmail] -other = "Написати на пошту" - -[currentPage] -other = "Поточна сторінка" - -[email] -other = "Ел.пошта" - -[gopher] -other = "Gopher" - -[goHome] -other = "Додому..." - -[lastUpdated] -other = "Востаннє оновлено..." - -[leaveAComment] -other = "Залишити коментар" - -[mainMenu] -other = "Головне меню" - -[name] -other = "Ім'я" - -[next] -other = "Наступний" - -[nextPage] -other = "Наступна сторінка" - -[nextPost] -other = "Наступний пост" - -[noTerm] -other = "Немає жодного {{ .Term }}!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "Відкрити {{ .Platform }} акаунт у новій вкладці" - -[page] -other = "Сторінка" - -[previous] -other = "Попередня" - -[previousPage] -other = "Попередня сторінка" - -[previousPost] -other = "Попередній пост" - -[postedOn] -other = "Опубліковано" - -[readingTime] -one = "Одна хвилина читання" -other = "{{ .Count }} хвилин читатання" - -[recentPosts] -other = "Останні пости" - -[reply] -other = "Відповісти" - -[replyToAuthor] -other = "Відповісти {{ .Author }}" - -[says] -other = "каже" - -[search] -other = "Пошук" - -[searchResultEmpty] -other = "Нічого не знайдено!" - -[searching] -other = "Пошук" - -[series] -one = "Ряд" -other = "Ряд" - -[sidebarMenu] -other = "Бічне меню" - -[skipToContent] -other = "Перескочити до змісту" - -[skipToMainMenu] -other = "Перескочити до головного меню" - -[socialMenu] -other = "Меню соц.мереж" - -[submitComment] -other = "Коментувати!" - -[tableOfContents] -other = "Зміст" - -[tag] -one = "Tag" -other = "Теги" - -[toggleSidebar] -other = "Вкл/Викл бічне меню" - -[website] -other = "Вебсайт" diff --git a/i18n/vi.json b/i18n/vi.json new file mode 100644 index 00000000..c7156275 --- /dev/null +++ b/i18n/vi.json @@ -0,0 +1,208 @@ +[{ + "id": "author", + "translation": { + "one": "Tác giả", + "other": "Các tác giả" + }, + "id": "authorsAvatar", + "translation": { + "other": "Hình đại diện của {{ .Author }}" + }, + "id": "by", + "translation": { + "other": "bởi" + }, + "id": "cancel", + "translation": { + "other": "Huỷ bỏ" + }, + "id": "cancelComment", + "translation": { + "other": "Huỷ bình luận" + }, + "id": "category", + "translation": { + "one": "Danh mục", + "other": "Các danh mục" + }, + "id": "comment", + "translation": { + "other": "Bình luận" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "Đã có lỗi xảy ra. Không thể gởi bình luận của bạn. Vui lòng thử lại. Cảm ơn!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "Ồ, Xin lỗi!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "Bình luận của bạn đã được gởi đi. Nó sẽ sớm xuất hiện trên trang này!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "Cảm ơn bạn!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "Chỉ có {{ .Count }} bình luận trên {{ .Title }}", + "other": "Có {{ .Count }} bình luận trên {{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "Liên hệ qua Email" + }, + "id": "currentPage", + "translation": { + "other": "Trang hiện tại" + }, + "id": "email", + "translation": { + "other": "Email" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "Về trang chủ..." + }, + "id": "lastUpdated", + "translation": { + "other": "Cập nhật gần đây" + }, + "id": "leaveAComment", + "translation": { + "other": "Bình luận" + }, + "id": "mainMenu", + "translation": { + "other": "Menu Chính" + }, + "id": "name", + "translation": { + "other": "Tên" + }, + "id": "next", + "translation": { + "other": "Tiếp theo" + }, + "id": "nextPage", + "translation": { + "other": "Trang tiếp theo" + }, + "id": "nextPost", + "translation": { + "other": "Bài viết tiếp theo" + }, + "id": "noTerm", + "translation": { + "other": "Không phải là một {{ .Term }}!" + }, + "id": "ok", + "translation": { + "other": "Đồng ý" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "Mở tài khoản {{ .Platform }} trong một tab mới" + }, + "id": "page", + "translation": { + "other": "Trang" + }, + "id": "previous", + "translation": { + "other": "Trước đó" + }, + "id": "previousPage", + "translation": { + "other": "Trang trước" + }, + "id": "previousPost", + "translation": { + "other": "Bài viết trước" + }, + "id": "postedOn", + "translation": { + "other": "Đăng vào" + }, + "id": "readingTime", + "translation": { + "one": "Một phút đọc", + "other": "{{ .Count }} phút đọc" + }, + "id": "recentPosts", + "translation": { + "other": "Những bài viết gần đây" + }, + "id": "reply", + "translation": { + "other": "Trả lời" + }, + "id": "replyToAuthor", + "translation": { + "other": "Trả lời {{ .Author }}" + }, + "id": "says", + "translation": { + "other": "nói" + }, + "id": "search", + "translation": { + "other": "Tìm kiếm" + }, + "id": "searchResultEmpty", + "translation": { + "other": "Không tìm thấy!" + }, + "id": "searching", + "translation": { + "other": "Đang tìm kiếm" + }, + "id": "series", + "translation": { + "one": "Loạt bài", + "other": "Loạt bài" + }, + "id": "sidebarMenu", + "translation": { + "other": "Menu Sidebar" + }, + "id": "skipToContent", + "translation": { + "other": "Vào nội dung chính" + }, + "id": "skipToMainMenu", + "translation": { + "other": "Đến Menu chính" + }, + "id": "socialMenu", + "translation": { + "other": "Menu mạng xã hội" + }, + "id": "submitComment", + "translation": { + "other": "Đăng bình luận!" + }, + "id": "tableOfContents", + "translation": { + "other": "Mục lục" + }, + "id": "tag", + "translation": { + "one": "Thẻ", + "other": "Các thẻ" + }, + "id": "toggleSidebar", + "translation": { + "other": "Đóng mở Sidebar" + }, + "id": "website", + "translation": { + "other": "Trang web" + } +}] diff --git a/i18n/vi.toml b/i18n/vi.toml deleted file mode 100644 index 8ce4d916..00000000 --- a/i18n/vi.toml +++ /dev/null @@ -1,155 +0,0 @@ -[author] -one = "Tác giả" -other = "Các tác giả" - -[authorsAvatar] -other = "Hình đại diện của {{ .Author }}" - -[by] -other = "bởi" - -[cancel] -other = "Huỷ bỏ" - -[cancelComment] -other = "Huỷ bình luận" - -[category] -one = "Danh mục" -other = "Các danh mục" - -[comment] -other = "Bình luận" - -[commentSubmissionErrorMessage] -other = "Đã có lỗi xảy ra. Không thể gởi bình luận của bạn. Vui lòng thử lại. Cảm ơn!" - -[commentSubmissionErrorTitle] -other = "Ồ, Xin lỗi!" - -[commentSubmissionSuccessMessage] -other = "Bình luận của bạn đã được gởi đi. Nó sẽ sớm xuất hiện trên trang này!" - -[commentSubmissionSuccessTitle] -other = "Cảm ơn bạn!" - -[commentsOnEntry] -one = "Chỉ có {{ .Count }} bình luận trên {{ .Title }}" -other = "Có {{ .Count }} bình luận trên {{ .Title }}" - -[contactViaEmail] -other = "Liên hệ qua Email" - -[currentPage] -other = "Trang hiện tại" - -[email] -other = "Email" - -[gopher] -other = "Gopher" - -[goHome] -other = "Về trang chủ..." - -[lastUpdated] -other = "Cập nhật gần đây" - -[leaveAComment] -other = "Bình luận" - -[mainMenu] -other = "Menu Chính" - -[name] -other = "Tên" - -[next] -other = "Tiếp theo" - -[nextPage] -other = "Trang tiếp theo" - -[nextPost] -other = "Bài viết tiếp theo" - -[noTerm] -other = "Không phải là một {{ .Term }}!" - -[ok] -other = "Đồng ý" - -[openAccountInNewTab] -other = "Mở tài khoản {{ .Platform }} trong một tab mới" - -[page] -other = "Trang" - -[previous] -other = "Trước đó" - -[previousPage] -other = "Trang trước" - -[previousPost] -other = "Bài viết trước" - -[postedOn] -other = "Đăng vào" - -[readingTime] -one = "Một phút đọc" -other = "{{ .Count }} phút đọc" - -[recentPosts] -other = "Những bài viết gần đây" - -[reply] -other = "Trả lời" - -[replyToAuthor] -other = "Trả lời {{ .Author }}" - -[says] -other = "nói" - -[search] -other = "Tìm kiếm" - -[searchResultEmpty] -other = "Không tìm thấy!" - -[searching] -other = "Đang tìm kiếm" - -[series] -one = "Loạt bài" -other = "Loạt bài" - -[sidebarMenu] -other = "Menu Sidebar" - -[skipToContent] -other = "Vào nội dung chính" - -[skipToMainMenu] -other = "Đến Menu chính" - -[socialMenu] -other = "Menu mạng xã hội" - -[submitComment] -other = "Đăng bình luận!" - -[tableOfContents] -other = "Mục lục" - -[tag] -one = "Thẻ" -other = "Các thẻ" - -[toggleSidebar] -other = "Đóng mở Sidebar" - -[website] -other = "Trang web" diff --git a/i18n/zh.json b/i18n/zh.json new file mode 100644 index 00000000..865ec897 --- /dev/null +++ b/i18n/zh.json @@ -0,0 +1,192 @@ +[{ + "id": "author", + "translation": { + "one": "作者", + "other": "作者们" + }, + "id": "authorsAvatar", + "translation": { + "other": "{{ .Author }}的头像" + }, + "id": "by", + "translation": { + "other": "by" + }, + "id": "cancel", + "translation": { + "other": "取消" + }, + "id": "cancelComment", + "translation": { + "other": "取消评论" + }, + "id": "category", + "translation": { + "one": "分类", + "other": "分类" + }, + "id": "comment", + "translation": { + "other": "评论" + }, + "id": "commentSubmissionErrorMessage", + "translation": { + "other": "发生错误。无法提交您的评论。请再试一次。谢谢你!" + }, + "id": "commentSubmissionErrorTitle", + "translation": { + "other": "啊,抱歉!" + }, + "id": "commentSubmissionSuccessMessage", + "translation": { + "other": "您的评论已提交。它不久后将会出现在该页面!" + }, + "id": "commentSubmissionSuccessTitle", + "translation": { + "other": "谢谢你!" + }, + "id": "commentsOnEntry", + "translation": { + "one": "只有{{ .Count }}评论了{{ .Title }}", + "other": "{{ .Count }}评论了{{ .Title }}" + }, + "id": "contactViaEmail", + "translation": { + "other": "通过邮件联系" + }, + "id": "currentPage", + "translation": { + "other": "当前页" + }, + "id": "email", + "translation": { + "other": "邮件" + }, + "id": "gopher", + "translation": { + "other": "Gopher" + }, + "id": "goHome", + "translation": { + "other": "去主页..." + }, + "id": "leaveAComment", + "translation": { + "other": "发表评论" + }, + "id": "mainMenu", + "translation": { + "other": "主菜单" + }, + "id": "name", + "translation": { + "other": "名字" + }, + "id": "next", + "translation": { + "other": "下一个" + }, + "id": "nextPage", + "translation": { + "other": "下一页" + }, + "id": "nextPost", + "translation": { + "other": "下一篇文章" + }, + "id": "noTerm", + "translation": { + "other": "一个{{ .Term }}也没有!" + }, + "id": "ok", + "translation": { + "other": "OK" + }, + "id": "openAccountInNewTab", + "translation": { + "other": "在新标签打开{{ .Platform }}的账户" + }, + "id": "page", + "translation": { + "other": "页面" + }, + "id": "previous", + "translation": { + "other": "上一个" + }, + "id": "previousPage", + "translation": { + "other": "上一页" + }, + "id": "previousPost", + "translation": { + "other": "上一篇文章" + }, + "id": "postedOn", + "translation": { + "other": "发布" + }, + "id": "readingTime", + "translation": { + "one": "需要一分钟读完", + "other": "需要{{ .Count }}分钟读完" + }, + "id": "recentPosts", + "translation": { + "other": "最近文章" + }, + "id": "reply", + "translation": { + "other": "回复" + }, + "id": "replyToAuthor", + "translation": { + "other": "回复{{ .Author }}" + }, + "id": "says", + "translation": { + "other": "言论" + }, + "id": "series", + "translation": { + "one": "系列", + "other": "系列" + }, + "id": "sidebarMenu", + "translation": { + "other": "侧边菜单" + }, + "id": "skipToContent", + "translation": { + "other": "跳到文章" + }, + "id": "skipToMainMenu", + "translation": { + "other": "跳到主页" + }, + "id": "socialMenu", + "translation": { + "other": "社交菜单" + }, + "id": "submitComment", + "translation": { + "other": "评论" + }, + "id": "tableOfContents", + "translation": { + "other": "内容目录" + }, + "id": "tag", + "translation": { + "one": "标签", + "other": "标签" + }, + "id": "toggleSidebar", + "translation": { + "other": "切换侧边栏" + }, + "id": "website", + "translation": { + "other": "网站" + } +}] diff --git a/i18n/zh.toml b/i18n/zh.toml deleted file mode 100644 index fce63cd2..00000000 --- a/i18n/zh.toml +++ /dev/null @@ -1,143 +0,0 @@ -[author] -one = "作者" -other = "作者们" - -[authorsAvatar] -other = "{{ .Author }}的头像" - -[by] -other = "by" - -[cancel] -other = "取消" - -[cancelComment] -other = "取消评论" - -[category] -one = "分类" -other = "分类" - -[comment] -other = "评论" - -[commentSubmissionErrorMessage] -other = "发生错误。无法提交您的评论。请再试一次。谢谢你!" - -[commentSubmissionErrorTitle] -other = "啊,抱歉!" - -[commentSubmissionSuccessMessage] -other = "您的评论已提交。它不久后将会出现在该页面!" - -[commentSubmissionSuccessTitle] -other = "谢谢你!" - -[commentsOnEntry] -one = "只有{{ .Count }}评论了{{ .Title }}" -other = "{{ .Count }}评论了{{ .Title }}" - -[contactViaEmail] -other = "通过邮件联系" - -[currentPage] -other = "当前页" - -[email] -other = "邮件" - -[gopher] -other = "Gopher" - -[goHome] -other = "去主页..." - -[leaveAComment] -other = "发表评论" - -[mainMenu] -other = "主菜单" - -[name] -other = "名字" - -[next] -other = "下一个" - -[nextPage] -other = "下一页" - -[nextPost] -other = "下一篇文章" - -[noTerm] -other = "一个{{ .Term }}也没有!" - -[ok] -other = "OK" - -[openAccountInNewTab] -other = "在新标签打开{{ .Platform }}的账户" - -[page] -other = "页面" - -[previous] -other = "上一个" - -[previousPage] -other = "上一页" - -[previousPost] -other = "上一篇文章" - -[postedOn] -other = "发布" - -[readingTime] -one = "需要一分钟读完" -other = "需要{{ .Count }}分钟读完" - -[recentPosts] -other = "最近文章" - -[reply] -other = "回复" - -[replyToAuthor] -other = "回复{{ .Author }}" - -[says] -other = "言论" - -[series] -one = "系列" -other = "系列" - -[sidebarMenu] -other = "侧边菜单" - -[skipToContent] -other = "跳到文章" - -[skipToMainMenu] -other = "跳到主页" - -[socialMenu] -other = "社交菜单" - -[submitComment] -other = "评论" - -[tableOfContents] -other = "内容目录" - -[tag] -one = "标签" -other = "标签" - -[toggleSidebar] -other = "切换侧边栏" - -[website] -other = "网站" From fdb1f0f12b31f706e7a359ee264c500410199d38 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Sat, 11 Jul 2020 00:39:51 +0200 Subject: [PATCH 17/38] move license before date makes it easier to read article translations --- layouts/partials/entry/meta.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/entry/meta.html b/layouts/partials/entry/meta.html index 53f99d4e..13ee665b 100644 --- a/layouts/partials/entry/meta.html +++ b/layouts/partials/entry/meta.html @@ -10,10 +10,10 @@ {{- if ( $.Scratch.Get "showEntryMeta" ) -}} {{ end }} From 4cc0ff86ae7d45985401144002179ecaae2e278c Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Tue, 7 Jul 2020 13:19:56 +0000 Subject: [PATCH 18/38] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/pt_BR/ --- i18n/pt-BR.json | 115 ++++++------------------------------------------ 1 file changed, 13 insertions(+), 102 deletions(-) diff --git a/i18n/pt-BR.json b/i18n/pt-BR.json index 7de5431b..9b97fd32 100644 --- a/i18n/pt-BR.json +++ b/i18n/pt-BR.json @@ -1,102 +1,13 @@ -[{ - "id": "author", - "translation": { - "one": "Autor", - "other": "Autores" - }, - "id": "by", - "translation": { - "other": "por" - }, - "id": "category", - "translation": { - "one": "Categoria", - "other": "Categorias" - }, - "id": "contactViaEmail", - "translation": { - "other": "Entre em contato por email" - }, - "id": "currentPage", - "translation": { - "other": "Página atual" - }, - "id": "gopher", - "translation": { - "other": "Gopher" - }, - "id": "goHome", - "translation": { - "other": "Página principal..." - }, - "id": "mainMenu", - "translation": { - "other": "Página principal" - }, - "id": "next", - "translation": { - "other": "Próximo" - }, - "id": "nextPage", - "translation": { - "other": "Próxima página" - }, - "id": "nextPost", - "translation": { - "other": "Próximo post" - }, - "id": "noTerm", - "translation": { - "other": "{{ .Term }} não foi encontrado!" - }, - "id": "openAccountInNewTab", - "translation": { - "other": "Abra a {{ .Platform }} em uma nova aba" - }, - "id": "page", - "translation": { - "other": "Página" - }, - "id": "previous", - "translation": { - "other": "Anterior" - }, - "id": "previousPage", - "translation": { - "other": "Página anterior" - }, - "id": "previousPost", - "translation": { - "other": "Post anterior" - }, - "id": "postedOn", - "translation": { - "other": "Postado em" - }, - "id": "readingTime", - "translation": { - "one": "Um minuto de leitura", - "other": "{{ .Count }} minutos de leitura" - }, - "id": "recentPosts", - "translation": { - "other": "Posts recentes" - }, - "id": "skipToContent", - "translation": { - "other": "Pular para o conteúdo" - }, - "id": "socialMenu", - "translation": { - "other": "Menu Social" - }, - "id": "tableOfContents", - "translation": { - "other": "Índice" - }, - "id": "tag", - "translation": { - "one": "Tag", - "other": "Tags" - } -}] +[ + { + "id": "tag", + "translation": { + "one": "Tag", + "other": "Tags" + } + }, + { + "id": "website", + "translation": "Site" + } +] From 467c8829e8f9a87b1848242064cf93c3662fd4a7 Mon Sep 17 00:00:00 2001 From: Milo Ivir Date: Tue, 14 Jul 2020 18:07:02 +0000 Subject: [PATCH 19/38] Translated using Weblate (Croatian) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/hr/ --- i18n/hr.json | 116 +++++++-------------------------------------------- 1 file changed, 14 insertions(+), 102 deletions(-) diff --git a/i18n/hr.json b/i18n/hr.json index 4d01b25f..9d05a1eb 100644 --- a/i18n/hr.json +++ b/i18n/hr.json @@ -1,102 +1,14 @@ -[{ - "id": "author", - "translation": { - "one": "Autor", - "other": "Autori" - }, - "id": "by", - "translation": { - "other": "od" - }, - "id": "category", - "translation": { - "one": "Kategorija", - "other": "Kategorije" - }, - "id": "contactViaEmail", - "translation": { - "other": "Kontakt putem emaila" - }, - "id": "currentPage", - "translation": { - "other": "Trenutačna stranica" - }, - "id": "gopher", - "translation": { - "other": "Gopher" - }, - "id": "goHome", - "translation": { - "other": "Na početnu" - }, - "id": "mainMenu", - "translation": { - "other": "Glavni izbornik" - }, - "id": "next", - "translation": { - "other": "Iduće" - }, - "id": "nextPage", - "translation": { - "other": "Iduća stranica" - }, - "id": "nextPost", - "translation": { - "other": "Iduća objava" - }, - "id": "noTerm", - "translation": { - "other": "Ne postoji niti jedan {{ .Term }}!" - }, - "id": "openAccountInNewTab", - "translation": { - "other": "Otvori {{ .Platform }} u novoj kartici" - }, - "id": "page", - "translation": { - "other": "Stranica" - }, - "id": "previous", - "translation": { - "other": "Prethodno" - }, - "id": "previousPage", - "translation": { - "other": "Prethodna stranica" - }, - "id": "previousPost", - "translation": { - "other": "Prethodna objava" - }, - "id": "postedOn", - "translation": { - "other": "Objavljeno" - }, - "id": "readingTime", - "translation": { - "one": "Vrijeme čitanja: 1 min", - "other": "Vrijeme čitanja: {{ .Count }} min" - }, - "id": "recentPosts", - "translation": { - "other": "Nedavne objave" - }, - "id": "skipToContent", - "translation": { - "other": "Idi na sadržaj" - }, - "id": "socialMenu", - "translation": { - "other": "Izbornik socijalnih mreža" - }, - "id": "tableOfContents", - "translation": { - "other": "Sadržaj" - }, - "id": "tag", - "translation": { - "one": "Oznaka", - "other": "Oznake" - } -}] +[ + { + "id": "tag", + "translation": { + "one": "Oznaka", + "few": "Oznake", + "other": "" + } + }, + { + "id": "website", + "translation": "Web-stranica" + } +] From a1c95b7361b30bbb10d47a41bcb771b1660eac84 Mon Sep 17 00:00:00 2001 From: Piotr Pastuszak Date: Tue, 14 Jul 2020 21:13:40 +0000 Subject: [PATCH 20/38] Translated using Weblate (Polish) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/pl/ --- i18n/pl.json | 124 ++++++--------------------------------------------- 1 file changed, 14 insertions(+), 110 deletions(-) diff --git a/i18n/pl.json b/i18n/pl.json index c930a6a9..1a3b83ee 100644 --- a/i18n/pl.json +++ b/i18n/pl.json @@ -1,110 +1,14 @@ -[{ - "id": "author", - "translation": { - "one": "Autor", - "few": "Autorów", - "many": "Autorów", - "other": "Autora" - }, - "id": "by", - "translation": { - "other": "przez" - }, - "id": "category", - "translation": { - "one": "Kategoria", - "few": "Kategorie", - "many": "Kategorii", - "other": "Kategorii" - }, - "id": "contactViaEmail", - "translation": { - "other": "Kontakt przez e-mail" - }, - "id": "currentPage", - "translation": { - "other": "Aktualna strona" - }, - "id": "gopher", - "translation": { - "other": "Gopher" - }, - "id": "goHome", - "translation": { - "other": "Idź na start..." - }, - "id": "mainMenu", - "translation": { - "other": "Menu Główne" - }, - "id": "next", - "translation": { - "other": "Następny" - }, - "id": "nextPage", - "translation": { - "other": "Następna strona" - }, - "id": "nextPost", - "translation": { - "other": "Następny post" - }, - "id": "noTerm", - "translation": { - "other": "Brakuje: {{ .Term }}!" - }, - "id": "openAccountInNewTab", - "translation": { - "other": "Otwórz {{ .Platform }} w nowej karcie" - }, - "id": "page", - "translation": { - "other": "Strona" - }, - "id": "previous", - "translation": { - "other": "Poprzedni" - }, - "id": "previousPage", - "translation": { - "other": "Poprzednia strona" - }, - "id": "previousPost", - "translation": { - "other": "Poprzedni post" - }, - "id": "postedOn", - "translation": { - "other": "Wysłane dnia" - }, - "id": "readingTime", - "translation": { - "one": "Jedna minuta czytania", - "few": "{{ .Count }} minuty czytania", - "many": "{{ .Count }} minut czytania", - "other": "{{ .Count }} minut czytania" - }, - "id": "recentPosts", - "translation": { - "other": "Ostatnie Posty" - }, - "id": "skipToContent", - "translation": { - "other": "Przejdź do Treści" - }, - "id": "socialMenu", - "translation": { - "other": "Menu Społecznościowe" - }, - "id": "tableOfContents", - "translation": { - "other": "Spis Treści" - }, - "id": "tag", - "translation": { - "one": "Tag", - "few": "Tagi", - "many": "Tagów", - "other": "Taga" - } -}] +[ + { + "id": "tag", + "translation": { + "one": "Tag", + "few": "Tagi", + "many": "Tagów" + } + }, + { + "id": "website", + "translation": "Strona Internetowa" + } +] From de8b188ade467ad278473a7d60d013c3f063a257 Mon Sep 17 00:00:00 2001 From: Weblate Date: Sat, 8 Aug 2020 08:01:10 +0000 Subject: [PATCH 21/38] Added translation using Weblate (Portuguese (Portugal)) --- i18n/pt_PT.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/pt_PT.json diff --git a/i18n/pt_PT.json b/i18n/pt_PT.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/pt_PT.json @@ -0,0 +1 @@ +{} From 45a6102f6631f96734a13dcf0a55ac0ec3d34597 Mon Sep 17 00:00:00 2001 From: Weblate Date: Sat, 8 Aug 2020 08:01:12 +0000 Subject: [PATCH 22/38] Added translation using Weblate (Occitan) --- i18n/oc.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/oc.json diff --git a/i18n/oc.json b/i18n/oc.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/oc.json @@ -0,0 +1 @@ +{} From 6df3bce21962d3cc1c00cd3255c2aa4454cdc8be Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 26 Feb 2021 09:35:10 +0100 Subject: [PATCH 23/38] Added translation using Weblate (Finnish) --- i18n/fi.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/fi.json diff --git a/i18n/fi.json b/i18n/fi.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/fi.json @@ -0,0 +1 @@ +{} From 6ada0bef68eb1c9d3489f65ccb7324db41f4fe25 Mon Sep 17 00:00:00 2001 From: Ricky Tigg Date: Fri, 26 Feb 2021 11:22:13 +0000 Subject: [PATCH 24/38] Translated using Weblate (Finnish) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/fi/ --- i18n/fi.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/i18n/fi.json b/i18n/fi.json index 0967ef42..a2a495ec 100644 --- a/i18n/fi.json +++ b/i18n/fi.json @@ -1 +1,6 @@ -{} +[ + { + "id": "website", + "translation": "Verkkosivusto" + } +] From 93e828b3ad29fce0a6c2517751df533b28f8dfdb Mon Sep 17 00:00:00 2001 From: Weblate Date: Wed, 3 Mar 2021 22:04:45 +0100 Subject: [PATCH 25/38] Added translation using Weblate (Sinhala) --- i18n/si.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/si.json diff --git a/i18n/si.json b/i18n/si.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/si.json @@ -0,0 +1 @@ +{} From c852b82625a6d8ce21db43626aafad87a8f824a5 Mon Sep 17 00:00:00 2001 From: Weblate Date: Wed, 21 Jul 2021 10:37:03 +0200 Subject: [PATCH 26/38] Added translation using Weblate (Korean) --- i18n/ko.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/ko.json diff --git a/i18n/ko.json b/i18n/ko.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/ko.json @@ -0,0 +1 @@ +{} From b2042030316d0eea149ae796da6ec1f5909122ef Mon Sep 17 00:00:00 2001 From: simmon Date: Fri, 23 Jul 2021 13:51:23 +0000 Subject: [PATCH 27/38] Translated using Weblate (Korean) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/ko/ --- i18n/ko.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/i18n/ko.json b/i18n/ko.json index 0967ef42..27de1124 100644 --- a/i18n/ko.json +++ b/i18n/ko.json @@ -1 +1,6 @@ -{} +[ + { + "id": "website", + "translation": "사이트 웹" + } +] From 7642d4fccbdf01a11b3294cd2ea1b88e67c38169 Mon Sep 17 00:00:00 2001 From: Weblate Date: Sat, 21 May 2022 03:20:10 +0200 Subject: [PATCH 28/38] Added translation using Weblate (Greek) --- i18n/el.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/el.json diff --git a/i18n/el.json b/i18n/el.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/el.json @@ -0,0 +1 @@ +{} From c65a0c9e752c8923b7a1176b294effee311623d7 Mon Sep 17 00:00:00 2001 From: Weblate Date: Thu, 6 Oct 2022 06:15:58 +0200 Subject: [PATCH 29/38] Added translation using Weblate (Chinese (Traditional)) --- i18n/zh_Hant.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/zh_Hant.json diff --git a/i18n/zh_Hant.json b/i18n/zh_Hant.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/zh_Hant.json @@ -0,0 +1 @@ +{} From 3a58158bdd086b0f28cc5a476b48328e74a6d3c2 Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 26 May 2023 13:32:18 +0200 Subject: [PATCH 30/38] Added translation using Weblate (Burmese) --- i18n/my.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/my.json diff --git a/i18n/my.json b/i18n/my.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/my.json @@ -0,0 +1 @@ +{} From 1bf75a7768c99f86c5dd637ae1cb1100cabe0188 Mon Sep 17 00:00:00 2001 From: Weblate Date: Tue, 1 Aug 2023 21:51:47 +0200 Subject: [PATCH 31/38] Added translation using Weblate (Czech) --- i18n/cs.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 i18n/cs.json diff --git a/i18n/cs.json b/i18n/cs.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/i18n/cs.json @@ -0,0 +1 @@ +{} From 5b10189982089922afb23d4b9225eae43e367d22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matja=C5=BE=20Jeran?= Date: Sat, 16 Sep 2023 14:15:47 +0000 Subject: [PATCH 32/38] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/sl/ --- i18n/sl.json | 125 +++++++-------------------------------------------- 1 file changed, 15 insertions(+), 110 deletions(-) diff --git a/i18n/sl.json b/i18n/sl.json index c1425a52..0685893e 100644 --- a/i18n/sl.json +++ b/i18n/sl.json @@ -1,110 +1,15 @@ -[{ - "id": "author", - "translation": { - "one": "Avtor", - "two": "Avtorja", - "few": "Avtorji", - "other": "Avtorji" - }, - "id": "by", - "translation": { - "other": "napisal" - }, - "id": "category", - "translation": { - "one": "Kategorija", - "two": "Kategoriji", - "few": "Kategorije", - "other": "Kategorije" - }, - "id": "contactViaEmail", - "translation": { - "other": "Stik po elektronski pošti" - }, - "id": "currentPage", - "translation": { - "other": "Trenutna stran" - }, - "id": "gopher", - "translation": { - "other": "Gopher" - }, - "id": "goHome", - "translation": { - "other": "Na začetek..." - }, - "id": "mainMenu", - "translation": { - "other": "Glavni meni" - }, - "id": "next", - "translation": { - "other": "Naslednji" - }, - "id": "nextPage", - "translation": { - "other": "Naslednja stran" - }, - "id": "nextPost", - "translation": { - "other": "Naslednja objava" - }, - "id": "noTerm", - "translation": { - "other": "Niti enega {{ .Term }}!" - }, - "id": "openAccountInNewTab", - "translation": { - "other": "Odpri {{ .Platform }} v novem zavihku" - }, - "id": "page", - "translation": { - "other": "Stran" - }, - "id": "previous", - "translation": { - "other": "Prejšnji" - }, - "id": "previousPage", - "translation": { - "other": "Prejšnja stran" - }, - "id": "previousPost", - "translation": { - "other": "Prejšnja objava" - }, - "id": "postedOn", - "translation": { - "other": "Objavljeno" - }, - "id": "readingTime", - "translation": { - "one": "ena minuta branja", - "two": "dve minuti branja", - "few": "{{ .Count }} minute branja", - "other": "{{ .Count }} minut branja" - }, - "id": "recentPosts", - "translation": { - "other": "Zadnji zapisi" - }, - "id": "skipToContent", - "translation": { - "other": "Skoči na vsebino" - }, - "id": "socialMenu", - "translation": { - "other": "Povezave na družabna omrežja" - }, - "id": "tableOfContents", - "translation": { - "other": "Kazalo" - }, - "id": "tag", - "translation": { - "one": "Značka", - "two": "Znački", - "few": "Značke", - "other": "Značke" - } -}] +[ + { + "id": "tag", + "translation": { + "one": "Značka", + "two": "Znački", + "few": "Značke", + "other": "Značke" + } + }, + { + "id": "website", + "translation": "Spletišče" + } +] From 81984b4184a7468468bf842d8acc875fddda9236 Mon Sep 17 00:00:00 2001 From: naly zzwd Date: Mon, 28 Oct 2024 17:20:09 +0000 Subject: [PATCH 33/38] Translated using Weblate (Catalan) Currently translated at 100.0% (1 of 1 strings) Translation: Languages in floss/website-theme Translate-URL: https://translate.fedoraproject.org/projects/languages-in-floss/website-theme/ca/ --- i18n/ca.json | 124 ++++++--------------------------------------------- 1 file changed, 14 insertions(+), 110 deletions(-) diff --git a/i18n/ca.json b/i18n/ca.json index a9ba492b..8fdadf3a 100644 --- a/i18n/ca.json +++ b/i18n/ca.json @@ -1,110 +1,14 @@ -[{ - "id": "author", - "translation": { - "one": "Autor", - "other": "Autors" - }, - "id": "by", - "translation": { - "other": "per" - }, - "id": "category", - "translation": { - "one": "Categoria", - "other": "Categories" - }, - "id": "contactViaEmail", - "translation": { - "other": "Contacte per correu" - }, - "id": "currentPage", - "translation": { - "other": "Pàgina actual" - }, - "id": "gopher", - "translation": { - "other": "Gopher" - }, - "id": "goHome", - "translation": { - "other": "Anar a l'inici..." - }, - "id": "mainMenu", - "translation": { - "other": "Menú principal" - }, - "id": "next", - "translation": { - "other": "Següent" - }, - "id": "nextPage", - "translation": { - "other": "Següent pàgina" - }, - "id": "nextPost", - "translation": { - "other": "Següent entrada" - }, - "id": "noTerm", - "translation": { - "other": "Ni un sol {{ .Term }}!" - }, - "id": "openAccountInNewTab", - "translation": { - "other": "Obrir compte de {{ .Platform }} en una nova pestanya" - }, - "id": "page", - "translation": { - "other": "Pàgina" - }, - "id": "previous", - "translation": { - "other": "Anterior" - }, - "id": "previousPage", - "translation": { - "other": "Anterior pàgina" - }, - "id": "previousPost", - "translation": { - "other": "Anterior article" - }, - "id": "postedOn", - "translation": { - "other": "Publicat a" - }, - "id": "readingTime", - "translation": { - "one": "Lectura d'un minut", - "other": "{{ .Count }} minuts de lectura" - }, - "id": "recentPosts", - "translation": { - "other": "Entrades recents" - }, - "id": "skipToContent", - "translation": { - "other": "Anar al contingut" - }, - "id": "skipToMainMenu", - "translation": { - "other": "Anar al menú principal" - }, - "id": "socialMenu", - "translation": { - "other": "Menú social" - }, - "id": "tableOfContents", - "translation": { - "other": "Sumari" - }, - "id": "tag", - "translation": { - "one": "Etiqueta", - "other": "Etiquetes" - }, - "id": "toggleSidebar", - "translation": { - "other": "Alternar barra lateral" - } -}] +[ + { + "id": "toggleSidebar", + "translation": { + "one": "Alternar barra lateral", + "many": "", + "other": "" + } + }, + { + "id": "website", + "translation": "Lloc web" + } +] From 1b1f325fdeeeaed7ab3aa3d360898a0d3bf4d30e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Wed, 8 Jan 2025 11:45:58 +0100 Subject: [PATCH 34/38] Hugo 0.73.0 compatibility --- layouts/partials/data/author/displayName | 4 ++-- layouts/partials/data/title | 2 +- layouts/partials/header/header.html | 4 ++-- layouts/partials/widgets/breadcrumbs.html | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/layouts/partials/data/author/displayName b/layouts/partials/data/author/displayName index 8f6cbc1e..beb9a80d 100644 --- a/layouts/partials/data/author/displayName +++ b/layouts/partials/data/author/displayName @@ -1,8 +1,8 @@ {{- $.Scratch.Set "authorID" "" -}} -{{- if eq .Kind "taxonomy" -}} +{{- if eq .Kind "term" -}} {{- $.Scratch.Set "authorID" .Data.Term -}} -{{- else if eq .Kind "taxonomyTerm" -}} +{{- else if eq .Kind "taxonomy" -}} {{- $.Scratch.Set "authorID" .Name -}} {{- else if eq .Kind "page" -}} {{- $.Scratch.Set "authorID" ( index .Params.authors 0 ) -}} diff --git a/layouts/partials/data/title b/layouts/partials/data/title index e47ca324..6d8ad397 100644 --- a/layouts/partials/data/title +++ b/layouts/partials/data/title @@ -7,7 +7,7 @@ {{ $siteTitle }} {{- else if eq .Kind "404" -}} {{ $title404 }} {{ $sep }} {{ $siteTitle }} -{{- else if eq .Kind "taxonomy" -}} +{{- else if eq .Kind "term" -}} {{- ( ( i18n .Data.Singular 1 ) | default .Data.Singular ) -}} {{- print ": " -}} {{- if eq .Data.Singular "author" -}} diff --git a/layouts/partials/header/header.html b/layouts/partials/header/header.html index 94392d46..8982811d 100644 --- a/layouts/partials/header/header.html +++ b/layouts/partials/header/header.html @@ -2,13 +2,13 @@

    - {{- if eq .Kind "taxonomy" -}} + {{- if eq .Kind "term" -}} {{- ( ( i18n .Data.Singular 1 ) | default .Data.Singular ) -}} {{- end -}} - {{- if eq .Kind "taxonomyTerm" -}} + {{- if eq .Kind "taxonomy" -}} {{- ( ( i18n .Data.Singular 2 ) | default .Title ) -}} {{- else if eq .Data.Singular "author" -}} {{- partial "data/author/displayName" . -}} diff --git a/layouts/partials/widgets/breadcrumbs.html b/layouts/partials/widgets/breadcrumbs.html index e2a303ef..be4e4ab9 100644 --- a/layouts/partials/widgets/breadcrumbs.html +++ b/layouts/partials/widgets/breadcrumbs.html @@ -5,7 +5,7 @@ {{- define "breadcrumbs_add_parents" -}} {{- .Scratch.Set "parent" .Page.Parent -}} - {{- if eq .Page.Kind "taxonomy" -}} + {{- if eq .Page.Kind "term" -}} {{- .Scratch.Set "parent" ( .Page.Site.GetPage ( print "/" .Page.Data.Plural ) ) -}} {{- end -}} From 1181e4afb9cad077181939bdcffd82e614cd5b4e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Wed, 8 Jan 2025 12:02:38 +0100 Subject: [PATCH 35/38] Hugo 0.120.0 compatibility --- layouts/partials/head/analytics.html | 1 - layouts/partials/head/includes.html | 1 - theme.toml | 3 +-- 3 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 layouts/partials/head/analytics.html diff --git a/layouts/partials/head/analytics.html b/layouts/partials/head/analytics.html deleted file mode 100644 index 28f0d72e..00000000 --- a/layouts/partials/head/analytics.html +++ /dev/null @@ -1 +0,0 @@ -{{- template "_internal/google_analytics_async.html" . -}} diff --git a/layouts/partials/head/includes.html b/layouts/partials/head/includes.html index d3533f87..47d107cb 100644 --- a/layouts/partials/head/includes.html +++ b/layouts/partials/head/includes.html @@ -11,4 +11,3 @@ {{- partial "head/css" . -}} -{{- partial "head/analytics" . -}} diff --git a/theme.toml b/theme.toml index 9db64097..5f4ecd00 100644 --- a/theme.toml +++ b/theme.toml @@ -7,8 +7,7 @@ tags = [ "blog", "minimal", "minimalist", - "responsive", - "google-analytics" + "responsive" ] features = [ "accessibility", From 2b3fd21f313bd25094037c374088d493ac9da01e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Wed, 8 Jan 2025 12:10:15 +0100 Subject: [PATCH 36/38] Hugo 0.140.3 compatibility --- layouts/partials/head/opengraph.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/head/opengraph.html b/layouts/partials/head/opengraph.html index 378d6250..1efc249a 100644 --- a/layouts/partials/head/opengraph.html +++ b/layouts/partials/head/opengraph.html @@ -97,8 +97,8 @@ {{- end -}} {{- else -}} - {{- if not .Site.LastChange.IsZero -}} - + {{- if not .Site.Lastmod.IsZero -}} + {{- end -}} {{- end -}} From 2bbb5f0e4dc6b5bccbc46170257ab1e178896ff7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Wed, 22 Jan 2025 11:54:48 +0100 Subject: [PATCH 37/38] add generation date in meta --- layouts/partials/head/meta.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head/meta.html b/layouts/partials/head/meta.html index 099d6769..6b15d20c 100644 --- a/layouts/partials/head/meta.html +++ b/layouts/partials/head/meta.html @@ -2,7 +2,7 @@ - + {{ partial "head/opengraph" . }} {{ hugo.Generator }} From 692998071323f8479c1f7ae20d8d88cf3c88f0ba Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Wed, 22 Jan 2025 14:12:38 +0100 Subject: [PATCH 38/38] add alt on logo --- layouts/partials/widgets/about.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/widgets/about.html b/layouts/partials/widgets/about.html index 0e937ce3..8461203b 100644 --- a/layouts/partials/widgets/about.html +++ b/layouts/partials/widgets/about.html @@ -8,7 +8,7 @@ {{ with $config.logo }} {{ end }}