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
diff --git a/src/components/RecipeList.vue b/src/components/RecipeList.vue
index 14d35ae1f..67ba32f8a 100644
--- a/src/components/RecipeList.vue
+++ b/src/components/RecipeList.vue
@@ -6,15 +6,14 @@
{{
- t("cookbook", "No recipes created or imported.")
+ // 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.",)
}}