Merge pull request #53 from timnea/master

Settings Translation
This commit is contained in:
Osten 2021-09-01 21:09:48 +00:00 committed by GitHub
commit 09a0e8a6c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 62 additions and 32 deletions

View file

@ -106,4 +106,34 @@
<string name="torrent_plot">Description</string> <string name="torrent_plot">Description</string>
<string name="normal_no_plot">No Plot Found</string> <string name="normal_no_plot">No Plot Found</string>
<string name="torrent_no_plot">No Description Found</string> <string name="torrent_no_plot">No Description Found</string>
</resources>
<string name="picture_in_picture">Picture-in-picture</string>
<string name="picture_in_picture_des">Continues playback in a miniature player on top of other apps</string>
<string name="size_settings">Player resize button</string>
<string name="size_setthings_des">Remove the black borders</string>
<string name="subtitles_settings">Subtitles</string>
<string name="subtitles_settings_des">Player subtitles settings</string>
<string name="eigengraumode_setthings">Eigengrau Mode</string>
<string name="eigengraumode_setthings_des">Adds the speed option in the player</string>
<string name="wipe_to_seek_setthings">Swipe to seek</string>
<string name="wipe_to_seek_setthings_des">Swipe left or right to control time in the videoplayer</string>
<string name="swipe_to_change_settings">wipe to change settings</string>
<string name="swipe_to_change_settings_des">Swipe on the left or right side to change brightness or volume</string>
<string name="double_tap_to_seek_setthings">Double tap to seek</string>
<string name="double_tap_to_seek_setthings_des">Tap twice on the right or left side to seek forwards or backwards</string>
<string name="search">Search</string>
<string name="advanced_search">Advanced Search</string>
<string name="advanced_search_des">Gives you the search results separated by provider</string>
<string name="bug_report_setthings_off">Only sends data on crashes"</string>
<string name="bug_report_setthings_on">Sends no data</string>
<string name="updates_setthings">Show app updates</string>
<string name="updates_setthings_des">Automatically search for new updates on start</string>
<string name="uprereleases_setthings">Update to prereleases</string>
<string name="uprereleases_setthings_des">Search for prerelease updates instead of full releases only</string>
<string name="github">Github</string>
<string name="lightnovel">Light novel app by the same devs</string>
<string name="anim">Anime app by the same devs</string>
<string name="discord">Join Discord</string>
<string name="benene">Give a benene to the devs</string>
<string name="benene_des">Given benene</string>
</resources>

View file

@ -10,91 +10,91 @@
<Preference <Preference
android:key="subtitle_settings_key" android:key="subtitle_settings_key"
android:title="Subtitles" android:title="@string/player_subtitles_settings"
android:icon="@drawable/ic_outline_subtitles_24" android:icon="@drawable/ic_outline_subtitles_24"
app:summary="Player subtitles settings"> app:summary="@string/player_subtitles_settings_des">
</Preference> </Preference>
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_picture_in_picture_alt_24" android:icon="@drawable/ic_baseline_picture_in_picture_alt_24"
app:key="pip_enabled" app:key="pip_enabled"
android:title="Picture-in-picture" android:title="@string/picture_in_picture"
android:summary="Continues playback in a miniature player on top of other apps" android:summary="@string/picture_in_picture_des"
app:defaultValue="true" app:defaultValue="true"
/> />
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_aspect_ratio_24" android:icon="@drawable/ic_baseline_aspect_ratio_24"
app:key="player_resize_enabled" app:key="player_resize_enabled"
android:title="Player resize button" android:title="@string/player_size_settings"
android:summary="Remove the black borders" android:summary="@string/player_size_setthings_des"
app:defaultValue="true" app:defaultValue="true"
/> />
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_speed_24" android:icon="@drawable/ic_baseline_speed_24"
app:key="playback_speed_enabled" app:key="playback_speed_enabled"
android:title="Eigengrau Mode" android:title="@string/eigengraumode_setthings"
android:summary="Adds the speed option in the player" android:summary="@string/eigengraumode_setthings_des"
app:defaultValue="true" app:defaultValue="true"
/> />
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_ondemand_video_24" android:icon="@drawable/ic_baseline_ondemand_video_24"
app:key="swipe_enabled" app:key="swipe_enabled"
android:title="Swipe to seek" android:title="@string/wipe_to_seek_setthings"
android:summary="Swipe left or right to control time in the videoplayer" android:summary="@string/wipe_to_seek_setthings_des"
app:defaultValue="true" app:defaultValue="true"
/> />
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_ondemand_video_24" android:icon="@drawable/ic_baseline_ondemand_video_24"
app:key="swipe_vertical_enabled" app:key="swipe_vertical_enabled"
android:title="Swipe to change settings" android:title="@string/swipe_to_change_settings"
android:summary="Swipe on the left or right side to change brightness or volume" android:summary="@string/swipe_to_change_settings_des"
app:defaultValue="true" app:defaultValue="true"
/> />
<SwitchPreference <SwitchPreference
android:icon="@drawable/ic_baseline_touch_app_24" android:icon="@drawable/ic_baseline_touch_app_24"
app:key="double_tap_enabled" app:key="double_tap_enabled"
android:title="Double tap to seek" android:title="@string/double_tap_to_seek_setthings"
android:summary="Tap twice on the right or left side to seek forwards or backwards" android:summary="@string/double_tap_to_seek_setthings_des"
app:defaultValue="false" app:defaultValue="false"
/> />
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:key="search" android:key="search"
android:title="Search" android:title="@string/search"
app:isPreferenceVisible="true" app:isPreferenceVisible="true"
> >
<SwitchPreference <SwitchPreference
android:icon="@drawable/search_icon" android:icon="@drawable/search_icon"
app:key="advanced_search" app:key="advanced_search"
android:title="Advanced Search" android:title="@string/advanced_search"
android:summary="Gives you the search results separated by provider" android:summary="@string/advanced_search_des"
app:defaultValue="true" app:defaultValue="true"
/> />
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:key="info" android:key="info"
android:title="Info" android:title="@string/info"
app:isPreferenceVisible="true" app:isPreferenceVisible="true"
> >
<SwitchPreference <SwitchPreference
android:key="acra.disable" android:key="acra.disable"
android:icon="@drawable/ic_baseline_bug_report_24" android:icon="@drawable/ic_baseline_bug_report_24"
android:title="@string/pref_disable_acra" android:title="@string/pref_disable_acra"
android:summaryOff="Only sends data on crashes" android:summaryOff="@string/bug_report_setthings_off"
android:summaryOn="Sends no data" android:summaryOn="@string/bug_report_setthings_on"
android:defaultValue="false"/> android:defaultValue="false"/>
<SwitchPreference <SwitchPreference
app:key="@string/auto_update_key" app:key="@string/auto_update_key"
android:title="Show app updates" android:title="@string/updates_setthings"
android:summary="Automatically search for new updates on start" android:summary="@string/updates_setthings_des"
app:defaultValue="true" app:defaultValue="true"
android:icon="@drawable/ic_baseline_notifications_active_24" android:icon="@drawable/ic_baseline_notifications_active_24"
/> />
<SwitchPreference <SwitchPreference
app:key="@string/prerelease_update_key" app:key="@string/prerelease_update_key"
android:title="Update to prereleases" android:title="@string/uprereleases_setthings"
android:summary="Search for prerelease updates instead of full releases only" android:summary="@string/uprereleases_setthings_des"
app:defaultValue="false" app:defaultValue="false"
android:icon="@drawable/ic_baseline_developer_mode_24" android:icon="@drawable/ic_baseline_developer_mode_24"
/> />
@ -105,7 +105,7 @@
app:icon="@drawable/ic_baseline_system_update_24" app:icon="@drawable/ic_baseline_system_update_24"
/> />
<Preference <Preference
android:title="Github" android:title="@string/github"
android:icon="@drawable/ic_github_logo" android:icon="@drawable/ic_github_logo"
app:summary="https://github.com/LagradOst/CloudStream-3"> app:summary="https://github.com/LagradOst/CloudStream-3">
<intent android:action="android.intent.action.VIEW" <intent android:action="android.intent.action.VIEW"
@ -113,21 +113,21 @@
</Preference> </Preference>
<Preference <Preference
android:title="Light novel app by the same devs" android:title="@string/lightnovel"
android:icon="@drawable/quick_novel_icon" android:icon="@drawable/quick_novel_icon"
app:summary="https://github.com/LagradOst/QuickNovel"> app:summary="https://github.com/LagradOst/QuickNovel">
<intent android:action="android.intent.action.VIEW" <intent android:action="android.intent.action.VIEW"
android:data="https://github.com/LagradOst/QuickNovel"/> android:data="https://github.com/LagradOst/QuickNovel"/>
</Preference> </Preference>
<Preference <Preference
android:title="Anime app by the same devs" android:title="@string/anim"
android:icon="@drawable/shiro_icon" android:icon="@drawable/shiro_icon"
app:summary="https://github.com/Blatzar/shiro-app"> app:summary="https://github.com/Blatzar/shiro-app">
<intent android:action="android.intent.action.VIEW" <intent android:action="android.intent.action.VIEW"
android:data="https://github.com/Blatzar/shiro-app"/> android:data="https://github.com/Blatzar/shiro-app"/>
</Preference> </Preference>
<Preference <Preference
android:title="Join Discord" android:title="@string/discord"
android:icon="@drawable/ic_baseline_discord_24" android:icon="@drawable/ic_baseline_discord_24"
app:summary="https://discord.gg/5Hus6fM"> app:summary="https://discord.gg/5Hus6fM">
<intent android:action="android.intent.action.VIEW" <intent android:action="android.intent.action.VIEW"
@ -135,9 +135,9 @@
</Preference> </Preference>
<Preference <Preference
android:key="@string/benene_count" android:key="@string/benene_count"
android:title="Give a benene to the devs" android:title="@string/benene"
android:icon="@drawable/benene" android:icon="@drawable/benene"
app:summary="Given benenes"> app:summary="@string/benene_des">
</Preference> </Preference>
</PreferenceCategory> </PreferenceCategory>
</PreferenceScreen> </PreferenceScreen>