From e6b697f3651291bb59176e01881863c14ee3c211 Mon Sep 17 00:00:00 2001 From: Michail Angelos Tsiantakis <29160070+aggellos2001@users.noreply.github.com> Date: Sat, 18 Feb 2023 09:11:12 +0200 Subject: [PATCH 01/34] Add support for Greek, Modern el.yaml (#1160) --- i18n/el.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 i18n/el.yaml diff --git a/i18n/el.yaml b/i18n/el.yaml new file mode 100644 index 00000000..4257bac8 --- /dev/null +++ b/i18n/el.yaml @@ -0,0 +1,33 @@ +- id: prev_page + translation: "Προηγούμενο" + +- id: next_page + translation: "Επόμενο" + +- id: read_time + translation: + one: "1 λεπτό" + other: "{{ .Count }} λεπτά" + +- id: words + translation: + one: "λέξη" + other: "{{ .Count }} λέξεις" + +- id: toc + translation: "Πίνακας Περιεχομένων" + +- id: translations + translation: "Μεταφράσεις" + +- id: home + translation: "Αρχική" + +- id: edit_post + translation: "Επεξεργασία" + +- id: code_copy + translation: "αντιγραφή" + +- id: code_copied + translation: "αντιγράφηκε!" \ No newline at end of file From b43af19b11208cccdd6be81017484e96cc912867 Mon Sep 17 00:00:00 2001 From: Sawa <48425020+SawaTszm@users.noreply.github.com> Date: Sat, 4 Mar 2023 22:27:37 +0900 Subject: [PATCH 02/34] change i18n next prev in japanese (#1167) --- i18n/ja.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i18n/ja.yaml b/i18n/ja.yaml index bc7bf377..93948d37 100644 --- a/i18n/ja.yaml +++ b/i18n/ja.yaml @@ -1,8 +1,8 @@ - id: prev_page - translation: "前のページ" + translation: "前へ" - id: next_page - translation: "次のページ" + translation: "次へ" - id: read_time translation: From 494d6d5dff9ecfcd6ff1bf8b098be9ad65d67037 Mon Sep 17 00:00:00 2001 From: Matteo Contrini Date: Sat, 4 Mar 2023 18:02:34 +0100 Subject: [PATCH 03/34] Improve Italian translation (#1166) --- i18n/it.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/i18n/it.yaml b/i18n/it.yaml index ef41db4e..54eb4896 100644 --- a/i18n/it.yaml +++ b/i18n/it.yaml @@ -1,8 +1,8 @@ - id: prev_page - translation: "Pag Prec" + translation: "Precedente" - id: next_page - translation: "Pag Succ" + translation: "Successivo" - id: read_time translation: @@ -20,6 +20,12 @@ - id: translations translation: "Traduzioni" +- id: home + translation: "Home" + +- id: edit_post + translation: "Modifica" + - id: code_copy translation: "copia" From d67462d0f3f22cc5687f73f1edd454aa9cfa3800 Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Sat, 4 Mar 2023 23:12:18 +0530 Subject: [PATCH 04/34] Fix incorrect 'it' translations https://github.com/adityatelange/hugo-PaperMod/pull/1166#discussion_r1125504542 --- i18n/it.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/it.yaml b/i18n/it.yaml index 54eb4896..c87c95d0 100644 --- a/i18n/it.yaml +++ b/i18n/it.yaml @@ -15,7 +15,7 @@ other: "{{ .Count }} parole" - id: toc - translation: "Tabella dei Contenuti" + translation: "Indice contenuti" - id: translations translation: "Traduzioni" From 2210bf20b3650b77dc9fdb9d279bc8e8af606993 Mon Sep 17 00:00:00 2001 From: Hauke Date: Fri, 31 Mar 2023 18:03:56 +0200 Subject: [PATCH 05/34] change del element decoration to line-through (#1181) According to caniuse.com only around 69% of mobile user and 22% desktop users use a browser that supports this element. Therefore this change uses text-decoration: line-through to archive the same effect across browsers. --- assets/css/common/post-single.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/assets/css/common/post-single.css b/assets/css/common/post-single.css index ba6e5a23..47b9888c 100644 --- a/assets/css/common/post-single.css +++ b/assets/css/common/post-single.css @@ -83,8 +83,7 @@ } .post-content del { - text-decoration: none; - background: linear-gradient(to right, var(--primary) 100%, transparent 0) 0 50%/1px 1px repeat-x; + text-decoration: line-through; } .post-content dl, @@ -400,4 +399,4 @@ h1>a>svg { img.in-text { display: inline; margin: auto; -} \ No newline at end of file +} From a636c9eaee7e2d8603dd6e1f983c8a9ff27577ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Joly?= <7347374+cljoly@users.noreply.github.com> Date: Sat, 1 Apr 2023 19:28:19 +0100 Subject: [PATCH 06/34] Add RSS icon to archive pages (#1156) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the setting “ShowRssButtonInSectionTermList” is true, I think it makes sense to also show the RSS icon by the title in archive pages, as we do for other article lists. This reuses the code of `layouts/_default/list.html`. --- layouts/_default/archives.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html index e400e2c5..c6d40aeb 100644 --- a/layouts/_default/archives.html +++ b/layouts/_default/archives.html @@ -1,7 +1,19 @@ {{- define "main" }}