0.5.0 - Browse + Library Screen + Settings

This commit is contained in:
Acclorite 2024-02-15 14:15:19 +02:00
parent 17fa0973b8
commit 090d5fc003
117 changed files with 5648 additions and 210 deletions

View file

@ -1,12 +1,100 @@
<resources>
<!-- Basic Strings -->
<string name="app_version" translatable="false">0.2.0</string>
<string-array name="locales">
<item>en</item>
<item>uk</item>
</string-array>
<string name="app_version" translatable="false">0.5.0</string>
<string name="app_name">Book\'s History</string>
<!-- Screens -->
<string name="library_screen">Library</string>
<string name="history_screen">History</string>
<string name="browse_screen">Browse</string>
<string name="settings_screen">Settings</string>
<string name="about_screen">About</string>
<string name="help_screen">Help</string>
<!-- Dialog Labels -->
<string name="storage_permission">Grant Permission?</string>
<string name="add_books">Add these books?</string>
<string name="move_books">Move books?</string>
<!-- Dialog Descriptions -->
<string name="storage_permission_description">
We need storage permission to scan your Downloads folder.
Without this permission, you will not be able to add a book.
</string>
<string name="add_books_description">
You can choose which books you want to add.
You can edit Title and Cover image of the book later.
</string>
<string name="move_books_description">
Choose the category to which you want to move all the selected books(%1$s).
All selected books will be moved to the selected category.
</string>
<!-- Errors -->
<string name="error_permission">
We need storage permission to scan your Downloads directory and get books
</string>
<!-- Is Empty messages -->
<string name="browse_empty">
Expand the library\'s book collection with your downloads
</string>
<string name="library_empty">
Read your favorite books and sort them between categories
</string>
<!-- Query strings -->
<string name="selected_items_count_query">%1$s selected</string>
<string name="search_query">Search %1$s...</string>
<!-- Action Texts -->
<string name="cancel">Cancel</string>
<string name="grant">Grant</string>
<string name="grant_permission">Grant permission</string>
<string name="get_help">I need help</string>
<string name="add">Add</string>
<string name="add_book">Add a book</string>
<string name="move">Move</string>
<!-- Items -->
<string name="files">files</string>
<string name="books">books</string>
<!-- Book -->
<string name="unknown_author">Unknown</string>
<!-- Tabs -->
<string name="reading_tab">Reading</string>
<string name="already_read_tab">Already Read</string>
<string name="planning_tab">Planning</string>
<string name="dropped_tab">Dropped</string>
<!-- Settings categories -->
<string name="general_settings">General</string>
<string name="general_settings_desc">App language</string>
<string name="appearance_settings">Appearance</string>
<string name="appearance_settings_desc">App theme, dark theme</string>
<!-- Settings options -->
<string name="language_option">App language</string>
<string name="dark_theme_option">Dark Theme</string>
<string name="app_theme_option">App theme</string>
<!-- Dark Theme properties -->
<string name="dark_theme_off">Disabled</string>
<string name="dark_theme_on">Enabled</string>
<string name="dark_theme_follow_system">Follow system</string>
<!-- Theme properties -->
<string name="dynamic_theme">Chaos</string>
<string name="blue_theme">Milky Way</string>
<string name="purple_theme">Supernova</string>
<string name="green_theme">Earth</string>
<string name="pink_theme">Pulsar</string>
<!-- Toast messages -->
<string name="press_again_toast">Press back again to exit</string>
<string name="books_added">All books were successfully added.</string>
<string name="books_moved">All books were successfully moved.</string>
</resources>