Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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