Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected lines intended for transifex translations #860

Merged
merged 2 commits into from
Nov 26, 2021
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 @@ -23,6 +23,8 @@
[#851](https://github.com/nextcloud/cookbook/pull/851) @christianlupus
- Update git hooks to run all tests even if some fail
[#856](https://github.com/nextcloud/cookbook/pull/856) @christianlupus
- Make strings recoverable by transifex parser
[#860](https://github.com/nextcloud/cookbook/pull/860) @christianlupus


## 0.9.6 - 2021-10-18
Expand Down
6 changes: 2 additions & 4 deletions src/components/AppSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@
/>
<label for="tag-cloud">
{{
t(
"cookbook",
"Show keyword cloud in recipe lists"
)
// prettier-ignore
t("cookbook", "Show keyword cloud in recipe lists")
}}
</label>
</li>
Expand Down
6 changes: 2 additions & 4 deletions src/components/EditImageField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@
type="text"
:value="value"
:placeholder="
t(
'cookbook',
'Enter URL or select from your Nextcloud instance on the right'
)
// prettier-ignore
t('cookbook', 'Enter URL or select from your Nextcloud instance on the right')
"
@input="$emit('input', $event.target.value)"
/>
Expand Down
6 changes: 2 additions & 4 deletions src/components/RecipeEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,8 @@ export default {
confirmLeavingPage() {
// eslint-disable-next-line no-alert
return window.confirm(
t(
"cookbook",
"You have unsaved changes! Do you still want to leave?"
)
// prettier-ignore
t("cookbook", "You have unsaved changes! Do you still want to leave?")
)
},
confirmStayInEditedForm() {
Expand Down