Skip to content

Commit

Permalink
Merge pull request #1907 from nextcloud/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n): Improved grammar
  • Loading branch information
christianlupus committed Dec 2, 2023
2 parents 178f048 + f11f053 commit d587b3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 8 additions & 13 deletions src/components/RecipeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
<div class="center p-4">
<div>
{{
t("cookbook", "No recipes created or imported.")
// prettier-ignore
t("cookbook", "No recipes created nor imported.")
}}
</div>
<div>
{{
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.",)
}}
</div>
</div>
Expand All @@ -39,18 +38,14 @@
<div class="center p-4">
<div>
{{
t(
"cookbook",
"No recipes matching the selected category found.",
)
// prettier-ignore
t("cookbook","No recipes matching the selected category found.",)
}}
</div>
<div>
{{
t(
"cookbook",
"Try selecting a category from the left navigation bar.",
)
// prettier-ignore
t("cookbook", "Try selecting a category from the left navigation bar.",)
}}
</div>
</div>
Expand Down

0 comments on commit d587b3e

Please sign in to comment.