Skip to content

Commit

Permalink
Copy default string resources to app
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Dec 16, 2024
1 parent 24f4bce commit 25cab88
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,52 @@
<resources>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="app_name">THEOplayer Open Video UI for Android Demo</string>

<!-- Copied from Open Video UI for Android -->
<string name="theoplayer_ui_btn_play">Play</string>
<string name="theoplayer_ui_btn_pause">Pause</string>
<string name="theoplayer_ui_btn_replay">Replay</string>
<string name="theoplayer_ui_btn_chromecast_start">Start casting</string>
<string name="theoplayer_ui_btn_chromecast_stop">Stop casting</string>
<string name="theoplayer_ui_btn_fullscreen_enter">Enter fullscreen</string>
<string name="theoplayer_ui_btn_fullscreen_exit">Exit fullscreen</string>
<string name="theoplayer_ui_btn_menu_close">Close</string>
<string name="theoplayer_ui_btn_back">Back</string>
<string name="theoplayer_ui_btn_mute">Mute</string>
<string name="theoplayer_ui_btn_unmute">Unmute</string>
<plurals name="theoplayer_ui_btn_seek_forward">
<item quantity="one">Seek forward by <xliff:g example="5" id="seek_offset">%1$d</xliff:g> second</item>
<item quantity="other">Seek forward by <xliff:g example="5" id="seek_offset">%1$d</xliff:g> seconds</item>
</plurals>
<plurals name="theoplayer_ui_btn_seek_backward">
<item quantity="one">Seek backward by <xliff:g example="5" id="seek_offset">%1$d</xliff:g> second</item>
<item quantity="other">Seek backward by <xliff:g example="5" id="seek_offset">%1$d</xliff:g> seconds</item>
</plurals>
<string name="theoplayer_ui_btn_live">LIVE</string>
<string name="theoplayer_ui_current_time" translatable="false"><xliff:g example="01:23" id="current_time">%1$s</xliff:g></string>
<string name="theoplayer_ui_current_time_remaining" translatable="false"><xliff:g example="-01:23" id="remaining_time">%1$s</xliff:g></string>
<string name="theoplayer_ui_current_time_with_duration" translatable="false"><xliff:g example="01:23" id="current_time">%1$s</xliff:g> / <xliff:g example="60:00" id="duration">%2$s</xliff:g></string>
<string name="theoplayer_ui_current_time_remaining_with_duration" translatable="false"><xliff:g example="-01:23" id="remaining_time">%1$s</xliff:g> / <xliff:g example="60:00" id="duration">%2$s</xliff:g></string>
<string name="theoplayer_ui_chromecast_playing_on_receiver">Playing on <xliff:g example="Living Room" id="receiver_name">%1$s</xliff:g></string>
<string name="theoplayer_ui_chromecast_playing_on_receiver_expanded_first_line">Playing on</string>
<string name="theoplayer_ui_chromecast_playing_on_receiver_expanded_second_line" translatable="false"><xliff:g example="Living Room" id="receiver_name">%1$s</xliff:g></string>
<string name="theoplayer_ui_chromecast_playing_on_unknown_receiver">Playing on Chromecast</string>
<string name="theoplayer_ui_chromecast_playing_on_unknown_receiver_expanded_first_line">Playing on</string>
<string name="theoplayer_ui_chromecast_playing_on_unknown_receiver_expanded_second_line">Chromecast</string>
<string name="theoplayer_ui_menu_language">Language</string>
<string name="theoplayer_ui_menu_settings">Settings</string>
<string name="theoplayer_ui_menu_audio">Audio</string>
<string name="theoplayer_ui_menu_subtitles">Subtitles</string>
<string name="theoplayer_ui_menu_playback_rate">Playback speed</string>
<string name="theoplayer_ui_menu_quality">Quality</string>
<string name="theoplayer_ui_audio_none">None</string>
<string name="theoplayer_ui_subtitles_off">Off</string>
<string name="theoplayer_ui_playback_rate_normal">Normal</string>
<string name="theoplayer_ui_playback_rate_format" translatable="false">#.##x</string>
<string name="theoplayer_ui_quality_with_height" translatable="false"><xliff:g example="720" id="quality_height">%1$d</xliff:g>p</string>
<string name="theoplayer_ui_quality_automatic_with_height">Automatic (<xliff:g example="720" id="quality_height">%1$d</xliff:g>p)</string>
<string name="theoplayer_ui_bandwidth_format_10mbps" translatable="false">#Mbps</string>
<string name="theoplayer_ui_bandwidth_format_1mbps" translatable="false">#.#Mbps</string>
<string name="theoplayer_ui_bandwidth_format_kbps" translatable="false">#kbps</string>
<string name="theoplayer_ui_track_unknown">Unknown</string>
<string name="theoplayer_ui_error_title">An error occurred</string>
</resources>

0 comments on commit 25cab88

Please sign in to comment.