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(),