From f6a1a35113ddb6402d832d40a89b74ce0b2d6cbe Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 25 Apr 2021 22:01:18 +1000 Subject: [PATCH] update translations --- ftl/core/deck-config.ftl | 1 + ftl/core/editing.ftl | 2 +- ftl/core/undo.ftl | 1 - repos.bzl | 8 ++++---- rslib/src/ops.rs | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index eb86c1f23..f7bfbb196 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -8,3 +8,4 @@ deck-config-used-by-decks = deck-config-default-name = Default deck-config-description-markdown = Enable markdown+clean HTML deck-config-description-markdown-hint = Will appear as text on Anki 2.1.40 and below. +deck-config-title = Deck Options diff --git a/ftl/core/editing.ftl b/ftl/core/editing.ftl index 594ae6ef8..c6e6d1265 100644 --- a/ftl/core/editing.ftl +++ b/ftl/core/editing.ftl @@ -42,7 +42,7 @@ editing-underline-text = Underline text editing-unordered-list = Unordered list editing-warning-cloze-deletions-will-not-work = Warning, cloze deletions will not work until you switch the type at the top to Cloze. -## deprecated, do not use +## You don't need to translate these strings, as they will be replaced with different ones soon. editing-bold-text-ctrlandb = Bold text (Ctrl+B) editing-italic-text-ctrlandi = Italic text (Ctrl+I) diff --git a/ftl/core/undo.ftl b/ftl/core/undo.ftl index cb386b4b0..f3e32ccaa 100644 --- a/ftl/core/undo.ftl +++ b/ftl/core/undo.ftl @@ -24,4 +24,3 @@ undo-forget-card = Forget Card undo-set-flag = Set Flag undo-build-filtered-deck = Build Deck undo-expand-collapse = Expand/Collapse -undo-deck-config = Study Options diff --git a/repos.bzl b/repos.bzl index 53dc1fc35..e5a65ce30 100644 --- a/repos.bzl +++ b/repos.bzl @@ -127,12 +127,12 @@ def register_repos(): ################ core_i18n_repo = "anki-core-i18n" - core_i18n_commit = "3c1995b158cf6f4d7ac337b218bd5951a6c24a82" - core_i18n_zip_csum = "0ef7ecf4ee6b85d4dba24e97439e14cd78832701c0b694238c81421d2660a6d0" + core_i18n_commit = "af1bbb50ee876f040e99afcfb8f7f811ce451e90" + core_i18n_zip_csum = "b8da454b0e3341ad8a7ac7da7eb473f1f6051d11289362cec8534643d912e00a" qtftl_i18n_repo = "anki-desktop-ftl" - qtftl_i18n_commit = "6da912b5dcee764784a0562b784c4e4e03c62832" - qtftl_i18n_zip_csum = "769898d8c08a79a303da22470313adf65c8d172ba45a10b9f1819030d880f856" + qtftl_i18n_commit = "e4f6ba9606fdbfa0e91ba2235da965a115ac19a5" + qtftl_i18n_zip_csum = "ecf768273dd9bce00eee771c425693ab530ab981298acfb137f18180cdc8259b" i18n_build_content = """ filegroup( diff --git a/rslib/src/ops.rs b/rslib/src/ops.rs index 4e90735fa..fc893a64e 100644 --- a/rslib/src/ops.rs +++ b/rslib/src/ops.rs @@ -71,7 +71,7 @@ impl Op { Op::EmptyFilteredDeck => tr.studying_empty(), Op::ExpandCollapse => tr.undo_expand_collapse(), Op::SetCurrentDeck => tr.browsing_change_deck(), - Op::UpdateDeckConfig => tr.undo_deck_config(), + Op::UpdateDeckConfig => tr.deck_config_title(), } .into() }