From 923fb77b0c252c3c1d9c114db424193d48dc1f7b Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Fri, 1 Dec 2023 16:27:12 +0100 Subject: [PATCH 1/3] fix(i18n): Improved grammar Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/components/RecipeList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RecipeList.vue b/src/components/RecipeList.vue index 14d35ae1f..d0f454ee2 100644 --- a/src/components/RecipeList.vue +++ b/src/components/RecipeList.vue @@ -6,7 +6,7 @@
{{ - t("cookbook", "No recipes created or imported.") + t("cookbook", "No recipes created nor imported.") }}
From 5d216fab38bbc7a209afcf74120d8a3ec1d1c95b Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Sat, 2 Dec 2023 10:41:20 +0100 Subject: [PATCH 2/3] Make prettier happy with changes Signed-off-by: Christian Wolf --- src/components/RecipeList.vue | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/components/RecipeList.vue b/src/components/RecipeList.vue index d0f454ee2..67ba32f8a 100644 --- a/src/components/RecipeList.vue +++ b/src/components/RecipeList.vue @@ -6,15 +6,14 @@
{{ + // prettier-ignore t("cookbook", "No recipes created nor imported.") }}
{{ - t( - "cookbook", - "To get started, you may use the text box in the left navigation bar to import a new recipe. Click below to create a recipe from scratch.", - ) + // prettier-ignore + t("cookbook", "To get started, you may use the text box in the left navigation bar to import a new recipe. Click below to create a recipe from scratch.",) }}
@@ -39,18 +38,14 @@
{{ - t( - "cookbook", - "No recipes matching the selected category found.", - ) + // prettier-ignore + t("cookbook","No recipes matching the selected category found.",) }}
{{ - t( - "cookbook", - "Try selecting a category from the left navigation bar.", - ) + // prettier-ignore + t("cookbook", "Try selecting a category from the left navigation bar.",) }}
From f11f053ab2dd0ee8bdbb7c8786fc03a9cdb5ae76 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Sat, 2 Dec 2023 10:43:50 +0100 Subject: [PATCH 3/3] Update Changelog Signed-off-by: Christian Wolf --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29153f552..2d9eb2f1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,8 @@ [#1871](https://github.com/nextcloud/cookbook/pull/1871) @seyfeb - Load config at app loading only once and do not rewrite complete config [#1892](https://github.com/nextcloud/cookbook/pull/1892) @christianlupus +- Fix English grammar in translatable string + [#1907](https://github.com/nextcloud/cookbook/pull/1907) @rakekniven ### Maintenance - Fix URL of Transifex after upstream subdomain change