feat(i18n): add string keys for book management feature

Add STR_MANAGE_BOOK, STR_ARCHIVE_BOOK, STR_UNARCHIVE_BOOK,
STR_DELETE_BOOK, STR_DELETE_CACHE_ONLY, STR_REINDEX_BOOK,
STR_BROWSE_ARCHIVE, status messages, STR_BACK_TO_BEGINNING,
and STR_CLOSE_MENU for the manage books and end-of-book menus.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
cottongin
2026-02-21 02:51:14 -05:00
parent f443f5dde0
commit 3eddb07a1a
2 changed files with 30 additions and 0 deletions

View File

@@ -400,6 +400,21 @@ enum class StrId : uint16_t {
STR_INDEXING_STATUS_ICON,
STR_SYNC_CLOCK,
STR_TIME_SYNCED,
STR_MANAGE_BOOK,
STR_ARCHIVE_BOOK,
STR_UNARCHIVE_BOOK,
STR_DELETE_BOOK,
STR_DELETE_CACHE_ONLY,
STR_REINDEX_BOOK,
STR_BROWSE_ARCHIVE,
STR_BOOK_ARCHIVED,
STR_BOOK_UNARCHIVED,
STR_BOOK_DELETED,
STR_CACHE_DELETED,
STR_BOOK_REINDEXED,
STR_ACTION_FAILED,
STR_BACK_TO_BEGINNING,
STR_CLOSE_MENU,
// Sentinel - must be last
_COUNT
};