From acf3134e04bb1e4799adc476e66b7def842d2093 Mon Sep 17 00:00:00 2001 From: bpnguyen107 <105088397+bpnguyen107@users.noreply.github.com> Date: Thu, 15 Aug 2024 06:30:05 -0400 Subject: [PATCH] =?UTF-8?q?Rename=20=E2=80=9CChange=20Deck=E2=80=9D=20to?= =?UTF-8?q?=20"Select=20Deck"=20(#3266)=20(#3356)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * added Select Deck string * updated CONTRIBUTORS * update email --- CONTRIBUTORS | 1 + ftl/core/browsing.ftl | 1 + rslib/src/ops.rs | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index b2f34ebf5..f4cb4271b 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -186,6 +186,7 @@ Christian Donat Asuka Minato Dillon Baldwin Voczi +Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com> ******************** The text of the 3 clause BSD license follows: diff --git a/ftl/core/browsing.ftl b/ftl/core/browsing.ftl index 9b85460b9..644d158ac 100644 --- a/ftl/core/browsing.ftl +++ b/ftl/core/browsing.ftl @@ -82,6 +82,7 @@ browsing-reschedule = Reschedule browsing-search-bar-hint = Search cards/notes (type text, then press Enter) browsing-search-in = Search in: browsing-search-within-formatting-slow = Search within formatting (slow) +browsing-select-deck = Select Deck browsing-selected-notes-only = Selected notes only browsing-shift-position-of-existing-cards = Shift position of existing cards browsing-sidebar = Sidebar diff --git a/rslib/src/ops.rs b/rslib/src/ops.rs index 541e5d520..4ea1c005a 100644 --- a/rslib/src/ops.rs +++ b/rslib/src/ops.rs @@ -82,7 +82,7 @@ impl Op { Op::BuildFilteredDeck => tr.actions_build_filtered_deck(), Op::RebuildFilteredDeck => tr.actions_build_filtered_deck(), Op::EmptyFilteredDeck => tr.studying_empty(), - Op::SetCurrentDeck => tr.browsing_change_deck(), + Op::SetCurrentDeck => tr.browsing_select_deck(), Op::UpdateDeckConfig => tr.deck_config_title(), Op::AddNotetype => tr.actions_add_notetype(), Op::RemoveNotetype => tr.actions_remove_notetype(),