Rename “Change Deck” to "Select Deck" (#3266) (#3356)

* added Select Deck string

* updated CONTRIBUTORS

* update email
This commit is contained in:
bpnguyen107 2024-08-15 06:30:05 -04:00 committed by GitHub
parent 5f80ddf27d
commit acf3134e04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View file

@ -186,6 +186,7 @@ Christian Donat <https://github.com/cdonat2>
Asuka Minato <https://asukaminato.eu.org> Asuka Minato <https://asukaminato.eu.org>
Dillon Baldwin <https://github.com/DillBal> Dillon Baldwin <https://github.com/DillBal>
Voczi <https://github.com/voczi> Voczi <https://github.com/voczi>
Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com>
******************** ********************
The text of the 3 clause BSD license follows: The text of the 3 clause BSD license follows:

View file

@ -82,6 +82,7 @@ browsing-reschedule = Reschedule
browsing-search-bar-hint = Search cards/notes (type text, then press Enter) browsing-search-bar-hint = Search cards/notes (type text, then press Enter)
browsing-search-in = Search in: browsing-search-in = Search in:
browsing-search-within-formatting-slow = Search within formatting (slow) browsing-search-within-formatting-slow = Search within formatting (slow)
browsing-select-deck = Select Deck
browsing-selected-notes-only = Selected notes only browsing-selected-notes-only = Selected notes only
browsing-shift-position-of-existing-cards = Shift position of existing cards browsing-shift-position-of-existing-cards = Shift position of existing cards
browsing-sidebar = Sidebar browsing-sidebar = Sidebar

View file

@ -82,7 +82,7 @@ impl Op {
Op::BuildFilteredDeck => tr.actions_build_filtered_deck(), Op::BuildFilteredDeck => tr.actions_build_filtered_deck(),
Op::RebuildFilteredDeck => tr.actions_build_filtered_deck(), Op::RebuildFilteredDeck => tr.actions_build_filtered_deck(),
Op::EmptyFilteredDeck => tr.studying_empty(), Op::EmptyFilteredDeck => tr.studying_empty(),
Op::SetCurrentDeck => tr.browsing_change_deck(), Op::SetCurrentDeck => tr.browsing_select_deck(),
Op::UpdateDeckConfig => tr.deck_config_title(), Op::UpdateDeckConfig => tr.deck_config_title(),
Op::AddNotetype => tr.actions_add_notetype(), Op::AddNotetype => tr.actions_add_notetype(),
Op::RemoveNotetype => tr.actions_remove_notetype(), Op::RemoveNotetype => tr.actions_remove_notetype(),