From 6c3cf077fe11e0dc1d4076071a06a9edd3086225 Mon Sep 17 00:00:00 2001 From: "Julio C. Ortega" <390821+roliverio@users.noreply.github.com> Date: Mon, 27 Mar 2023 11:09:13 -0500 Subject: [PATCH 1/2] Typo fix, also to prevent escaping issues Signed-off-by: Julio C. Ortega <390821+roliverio@users.noreply.github.com> --- src/components/SettingsDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SettingsDialog.vue b/src/components/SettingsDialog.vue index 8c4346dad..43249918b 100644 --- a/src/components/SettingsDialog.vue +++ b/src/components/SettingsDialog.vue @@ -281,7 +281,7 @@ export default { // eslint-disable-next-line no-console console.error("Error while trying to save info blocks", err) await showSimpleAlertModal( - t("cookbook", "Couldn't save visible info blocks") + t("cookbook", "Could not save visible info blocks") ) this.resetVisibleInfoBlocks = true this.visibleInfoBlocks = oldVal From 88310105efc65944ce9507f503f3c54fb99f3081 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Fri, 31 Mar 2023 23:30:01 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md Signed-off-by: Christian Wolf --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ddf8e948..3cbeba4c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## [Unreleased] +### Fixed +- Fix translation string to not contain quotes + [#1582](https://github.com/nextcloud/cookbook/pull/1582) @roliverio ## 0.10.2 - 2023-03-24