Auxio/app/src/main/res/values-zh-rTW/strings.xml
OxygenCobalt b748d73abb
playback: rework audio focus
Rework audio focus to rely on the native ExoPlayer implementation
instead of a custom implementation.

Previously, we avoided ExoPlayer's AudioFocus system as it never
played after a transient lost. A few versions later now through,
now it does, so we may as well switch to it. This does introduce
a bug where ReplayGain functionality will conflict with audio
focus, but I hope to eliminate this with #115 as I switch to
an AudioProcessor instead of a callback.
2022-03-27 11:51:58 -06:00

73 lines
No EOL
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Label Namespace | Static Labels -->
<string name="lbl_retry">重試</string>
<string name="lbl_grant">取得</string>
<string name="lbl_genres">類型</string>
<string name="lbl_artists">演出者</string>
<string name="lbl_albums">專輯</string>
<string name="lbl_songs">歌曲</string>
<string name="lbl_all_songs">歌曲</string>
<string name="lbl_search">搜尋</string>
<string name="lbl_filter">篩選器</string>
<string name="lbl_filter_all">全部</string>
<string name="lbl_sort">排序</string>
<string name="lbl_sort_asc">升序排列</string>
<string name="lbl_play">播放</string>
<string name="lbl_shuffle">隨機播放</string>
<string name="lbl_playback">播放面板</string>
<string name="lbl_queue">隊列</string>
<string name="lbl_play_next">下一首播放</string>
<string name="lbl_queue_add">添加到隊列</string>
<string name="lbl_queue_added">已加入隊列</string>
<string name="lbl_go_artist">前往該歌手頁面</string>
<string name="lbl_go_album">專輯</string>
<string name="lbl_about">關於</string>
<string name="lbl_version">版本</string>
<string name="lbl_code">在 GitHub 上檢視</string>
<string name="lbl_licenses">授權條款</string>
<!-- Settings namespace | Settings-related labels -->
<string name="set_title">設定</string>
<string name="set_ui">外觀</string>
<string name="set_theme">主題色調</string>
<string name="set_theme_auto">強調色</string>
<string name="set_theme_day">淺色</string>
<string name="set_theme_night">深色</string>
<string name="set_accent">自定義</string>
<string name="set_quality_covers">忽略音訊檔內嵌的專輯封面</string>
<string name="set_audio">音訊</string>
<string name="set_behavior">行為</string>
<string name="set_keep_shuffle">記住隨機播放</string>
<!-- Error Namespace | Error Labels -->
<string name="err_no_music">找不到音樂</string>
<!-- Description Namespace | Accessibility Strings -->
<string name="desc_track_number">音軌 %d</string>
<string name="desc_play_pause">播放/暫停</string>
<!-- Hint Namespace | EditText Hints -->
<string name="hint_search_library">搜尋音樂庫…</string>
<!-- Format Namespace | Value formatting/plurals -->
<plurals name="fmt_song_count">
<item quantity="other">%d 歌曲</item>
</plurals>
<plurals name="fmt_album_count">
<item quantity="other">%d 專輯</item>
</plurals>
</resources>