Damien Elmes 2023-11-03 21:23:48 +10:00
parent cee832e090
commit 726a59118f
4 changed files with 9 additions and 3 deletions

6
ftl/copy-core-string.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# - sync ftl
# - ./copy-core-string.sh scheduling-review browsing-sidebar-card-state-review
# - confirm changes in core-repo/ correct
# - commit and push changes, then update submodule in main repo
./ftl string copy ftl/core-repo/core ftl/core-repo/core $1 $2

@ -1 +1 @@
Subproject commit 4335024ea5ae3a7341a3b33781fddb4df57263b4 Subproject commit 853c5459bbec60dcac6b59863409ddd7cfd53c3c

View File

@ -164,10 +164,10 @@ browsing-reparented-decks =
*[other] Renamed { $count } decks. *[other] Renamed { $count } decks.
} }
## NO NEED TO TRANSLATE. This text is no longer used by Anki, and will be removed in the future. ## NO NEED TO TRANSLATE. This text is no longer used by Anki, and will be removed in the future.
# Exactly one character representing 'Cards'; should differ from browsing-note-initial. # Exactly one character representing 'Cards'; should differ from browsing-note-initial.
browsing-card-initial = C browsing-card-initial = C
# Exactly one character representing 'Notes'; should differ from browsing-card-initial. # Exactly one character representing 'Notes'; should differ from browsing-card-initial.
browsing-note-initial = N browsing-note-initial = N
browsing-sidebar-card-state-review = Review

View File

@ -670,7 +670,7 @@ class SidebarTreeView(QTreeView):
search_node=SearchNode(card_state=SearchNode.CARD_STATE_LEARN), search_node=SearchNode(card_state=SearchNode.CARD_STATE_LEARN),
) )
root.add_simple( root.add_simple(
name=tr.scheduling_review(), name=tr.browsing_sidebar_card_state_review(),
icon=colored_icon.with_color(colors.STATE_REVIEW), icon=colored_icon.with_color(colors.STATE_REVIEW),
type=type, type=type,
search_node=SearchNode(card_state=SearchNode.CARD_STATE_REVIEW), search_node=SearchNode(card_state=SearchNode.CARD_STATE_REVIEW),