ananas/app/src/main/res/values/strings.xml
lsrom 62d09b3566
Add person detail screen (#47)
* Add person detail screen

Displays actor/actresses portrait and text info + list of movies/show this person starred in. Text info is max 5 lines with View More button if ellipsized. View More toggle is reset upon orientation change since in landscape mode ellipsize might not be necessary.

* Remove useless StarredInAdapter.kt

* Fix image view shape

* Improve UI

Not exactly how I would like it but will do for now

* Add error handling

Adds a lot of LiveData which may not be ideal, but is better than crashing due to connection errors.

Co-authored-by: jarnedemeulemeester <jarnedemeulemeester@gmail.com>
2021-10-24 17:45:59 +02:00

89 lines
No EOL
4.9 KiB
XML

<resources>
<string name="app_name" translatable="false">Findroid</string>
<string name="app_description">Third-party native Jellyfin app</string>
<string name="jellyfin_banner">Jellyfin banner</string>
<string name="add_server">Add server</string>
<string name="login">Login</string>
<string name="select_server">Select server</string>
<string name="edit_text_server_address_hint">Server address</string>
<string name="edit_text_username_hint">Username</string>
<string name="edit_text_password_hint">Password</string>
<string name="button_connect">Connect</string>
<string name="button_login">Login</string>
<string name="server_icon">Server icon</string>
<string name="remove_server">Remove server</string>
<string name="remove_server_dialog_text">Are you sure you want to remove the server %1$s</string>
<string name="remove">Remove</string>
<string name="cancel">Cancel</string>
<string name="title_home">Home</string>
<string name="title_media">My media</string>
<string name="title_favorite">Favorites</string>
<string name="title_settings">Settings</string>
<string name="view_all">View all</string>
<string name="error_loading_data">Error loading data</string>
<string name="retry">Retry</string>
<string name="genres">Genres</string>
<string name="director">Director</string>
<string name="writers">Writers</string>
<string name="cast_amp_crew"><![CDATA[Cast & Crew]]></string>
<string name="seasons">Seasons</string>
<string name="play_button_description">Play the media</string>
<string name="trailer_button_description">Watch the trailer</string>
<string name="check_button_description">Mark as watched or unwatched</string>
<string name="favorite_button_description">Favorite</string>
<string name="episode_watched_indicator">Episode watched indicator</string>
<string name="episode_name">%1$d. %2$s</string>
<string name="episode_name_extended">S%1$d:E%2$d - %3$s</string>
<string name="next_up">Next Up</string>
<string name="continue_watching">Continue Watching</string>
<string name="latest_library">Latest %1$s</string>
<string name="series_poster">Series poster</string>
<string name="no_favorites">You have no favorites</string>
<string name="search">Search</string>
<string name="no_search_results">No search results</string>
<string name="settings_category_language">Language</string>
<string name="settings_preferred_audio_language">Preferred audio language</string>
<string name="settings_preferred_subtitle_language">Preferred subtitle language</string>
<string name="initializing">Initializing…</string>
<string name="settings_category_servers">Servers</string>
<string name="manage_servers">Manage servers</string>
<string name="settings_category_appearance">Appearance</string>
<string name="theme">Theme</string>
<string name="error_preparing_player_items">Error preparing player items.</string>
<string name="view_details">View details</string>
<string name="view_details_underlined"><u>View details</u></string>
<string name="about">About</string>
<string name="privacy_policy">Privacy policy</string>
<string name="app_info">App info</string>
<string name="unknown_error">Unknown error</string>
<string name="search_hint">Search movies, shows, episodes…</string>
<string name="select_a_version">"Select a version"</string>
<string name="select_audio_track">Select audio track</string>
<string name="select_subtile_track">Select subtitle track</string>
<string name="select_playback_speed">Select playback speed</string>
<string name="mpv_player">MPV Player</string>
<string name="mpv_player_summary">Use the experimental MPV Player to play videos. MPV has support for more video, audio and subtitle codecs.</string>
<string name="force_software_decoding">Force software decoding</string>
<string name="force_software_decoding_summary">Disable hardware decoding and use software decoding. Can be useful if hardware decoding gives weird artifacts.</string>
<string name="person_detail_title">Person Detail</string>
<string name="error_getting_person_id">Detail unavailable</string>
<string name="movies_label">Movies</string>
<string name="shows_label">TV Shows</string>
<string name="hide">Hide</string>
<string name="sort_by">Sort by</string>
<string name="sort_order">Sort order</string>
<string name="close">Close</string>
<string name="share">Share</string>
<string-array name="sort_by_options">
<item>Name</item>
<item>IMDB Rating</item>
<item>Parental Rating</item>
<item>Date Added</item>
<item>Date Played</item>
<item>Release Date</item>
</string-array>
<string-array name="sort_order_options">
<item>Ascending</item>
<item>Descending</item>
</string-array>
</resources>