From d6573d2a4851165983fb5087ebde0045b10cb7c2 Mon Sep 17 00:00:00 2001 From: Rino Russo Date: Sat, 8 Feb 2025 00:04:42 +0100 Subject: [PATCH] Updated languages --- .../ui/screens/settings/GeneralSettings.kt | 22 +++++++++---------- .../src/androidMain/res/values-af/strings.xml | 6 +++++ .../src/androidMain/res/values-ar/strings.xml | 6 +++++ .../src/androidMain/res/values-az/strings.xml | 6 +++++ .../src/androidMain/res/values-ba/strings.xml | 6 +++++ .../src/androidMain/res/values-bn/strings.xml | 6 +++++ .../src/androidMain/res/values-ca/strings.xml | 6 +++++ .../src/androidMain/res/values-cs/strings.xml | 6 +++++ .../src/androidMain/res/values-da/strings.xml | 6 +++++ .../src/androidMain/res/values-de/strings.xml | 6 +++++ .../src/androidMain/res/values-el/strings.xml | 18 +++++++++++++++ .../src/androidMain/res/values-en/strings.xml | 6 +++++ .../src/androidMain/res/values-eo/strings.xml | 6 +++++ .../src/androidMain/res/values-es/strings.xml | 6 +++++ .../src/androidMain/res/values-et/strings.xml | 6 +++++ .../src/androidMain/res/values-fa/strings.xml | 18 +++++++++++++++ .../src/androidMain/res/values-fi/strings.xml | 6 +++++ .../androidMain/res/values-fil/strings.xml | 6 +++++ .../src/androidMain/res/values-fr/strings.xml | 6 +++++ .../src/androidMain/res/values-ga/strings.xml | 6 +++++ .../src/androidMain/res/values-gl/strings.xml | 6 +++++ .../src/androidMain/res/values-he/strings.xml | 6 +++++ .../src/androidMain/res/values-hi/strings.xml | 8 ++++++- .../src/androidMain/res/values-hu/strings.xml | 6 +++++ .../src/androidMain/res/values-ia/strings.xml | 6 +++++ .../src/androidMain/res/values-id/strings.xml | 18 +++++++++++++++ .../src/androidMain/res/values-in/strings.xml | 6 +++++ .../src/androidMain/res/values-it/strings.xml | 6 +++++ .../src/androidMain/res/values-iw/strings.xml | 18 +++++++++++++++ .../src/androidMain/res/values-ja/strings.xml | 6 +++++ .../src/androidMain/res/values-ko/strings.xml | 6 +++++ .../src/androidMain/res/values-ml/strings.xml | 8 ++++++- .../src/androidMain/res/values-nl/strings.xml | 6 +++++ .../src/androidMain/res/values-no/strings.xml | 6 +++++ .../src/androidMain/res/values-or/strings.xml | 6 +++++ .../src/androidMain/res/values-pl/strings.xml | 6 +++++ .../androidMain/res/values-pt-rBR/strings.xml | 6 +++++ .../src/androidMain/res/values-pt/strings.xml | 6 +++++ .../src/androidMain/res/values-ro/strings.xml | 6 +++++ .../src/androidMain/res/values-ru/strings.xml | 6 +++++ .../src/androidMain/res/values-si/strings.xml | 6 +++++ .../androidMain/res/values-sr-rCS/strings.xml | 6 +++++ .../src/androidMain/res/values-sr/strings.xml | 6 +++++ .../src/androidMain/res/values-sv/strings.xml | 6 +++++ .../src/androidMain/res/values-ta/strings.xml | 6 +++++ .../src/androidMain/res/values-te/strings.xml | 6 +++++ .../src/androidMain/res/values-tr/strings.xml | 6 +++++ .../src/androidMain/res/values-uk/strings.xml | 6 +++++ .../src/androidMain/res/values-vi/strings.xml | 18 +++++++++++++++ .../androidMain/res/values-zh-rCN/strings.xml | 6 +++++ .../androidMain/res/values-zh-rTW/strings.xml | 6 +++++ .../src/androidMain/res/values-zh/strings.xml | 18 +++++++++++++++ .../src/androidMain/res/values/strings.xml | 6 +++++ 53 files changed, 397 insertions(+), 13 deletions(-) diff --git a/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/screens/settings/GeneralSettings.kt b/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/screens/settings/GeneralSettings.kt index 558e9275cf..abd7fd475c 100644 --- a/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/screens/settings/GeneralSettings.kt +++ b/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/screens/settings/GeneralSettings.kt @@ -883,10 +883,10 @@ fun GeneralSettings( } } - if (search.input.isBlank() || "Bass boost".contains(search.input,true)) { + if (search.input.isBlank() || stringResource(R.string.settings_audio_bass_boost).contains(search.input,true)) { SwitchSettingEntry( - title = "Bass boost", - text = "Bass boost info", + title = stringResource(R.string.settings_audio_bass_boost), + text = "", isChecked = bassboostEnabled, onCheckedChange = { bassboostEnabled = it @@ -901,8 +901,8 @@ fun GeneralSettings( modifier = Modifier.padding(start = 25.dp) ) { SliderSettingsEntry( - title = "Bass boost level", - text = "Bass boost level info", + title = stringResource(R.string.settings_bass_boost_level), + text = "", state = newValue, onSlide = { newValue = it }, onSlideComplete = { @@ -915,10 +915,10 @@ fun GeneralSettings( } } - if (search.input.isBlank() || "Audio reverb".contains(search.input,true)) { + if (search.input.isBlank() || stringResource(R.string.settings_audio_reverb).contains(search.input,true)) { EnumValueSelectorSettingsEntry( - title = "Audio Reverb", - text = "Apply a depth effect to the audio", + title = stringResource(R.string.settings_audio_reverb), + text = stringResource(R.string.settings_audio_reverb_info_apply_a_depth_effect_to_the_audio), selectedValue = audioReverb, onValueSelected = { audioReverb = it @@ -931,10 +931,10 @@ fun GeneralSettings( RestartPlayerService(restartService, onRestart = { restartService = false } ) } - if (search.input.isBlank() || "Audio focus".contains(search.input,true)) { + if (search.input.isBlank() || stringResource(R.string.settings_audio_focus).contains(search.input,true)) { SwitchSettingEntry( - title = "Audio focus", - text = "Allows automatic pause and resume playback after a call for example", + title = stringResource(R.string.settings_audio_focus), + text = stringResource(R.string.settings_audio_focus_info), isChecked = audioFocusEnabled, onCheckedChange = { audioFocusEnabled = it diff --git a/composeApp/src/androidMain/res/values-af/strings.xml b/composeApp/src/androidMain/res/values-af/strings.xml index 735b5e0e4d..25dc6329b8 100644 --- a/composeApp/src/androidMain/res/values-af/strings.xml +++ b/composeApp/src/androidMain/res/values-af/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ar/strings.xml b/composeApp/src/androidMain/res/values-ar/strings.xml index ee7c8a8224..958150ddd9 100644 --- a/composeApp/src/androidMain/res/values-ar/strings.xml +++ b/composeApp/src/androidMain/res/values-ar/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-az/strings.xml b/composeApp/src/androidMain/res/values-az/strings.xml index f18c9a2716..73f5783d3b 100644 --- a/composeApp/src/androidMain/res/values-az/strings.xml +++ b/composeApp/src/androidMain/res/values-az/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ba/strings.xml b/composeApp/src/androidMain/res/values-ba/strings.xml index 83509a6ee2..200d2cccca 100644 --- a/composeApp/src/androidMain/res/values-ba/strings.xml +++ b/composeApp/src/androidMain/res/values-ba/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-bn/strings.xml b/composeApp/src/androidMain/res/values-bn/strings.xml index 310074f13d..bab576405f 100644 --- a/composeApp/src/androidMain/res/values-bn/strings.xml +++ b/composeApp/src/androidMain/res/values-bn/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ca/strings.xml b/composeApp/src/androidMain/res/values-ca/strings.xml index 4b10f6a5b2..d4da02a565 100644 --- a/composeApp/src/androidMain/res/values-ca/strings.xml +++ b/composeApp/src/androidMain/res/values-ca/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-cs/strings.xml b/composeApp/src/androidMain/res/values-cs/strings.xml index b29d2c5a2a..7de5d606b9 100644 --- a/composeApp/src/androidMain/res/values-cs/strings.xml +++ b/composeApp/src/androidMain/res/values-cs/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-da/strings.xml b/composeApp/src/androidMain/res/values-da/strings.xml index 541e72602a..94bd81e3f3 100644 --- a/composeApp/src/androidMain/res/values-da/strings.xml +++ b/composeApp/src/androidMain/res/values-da/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-de/strings.xml b/composeApp/src/androidMain/res/values-de/strings.xml index e4a2b0e0cf..8e90acd98f 100644 --- a/composeApp/src/androidMain/res/values-de/strings.xml +++ b/composeApp/src/androidMain/res/values-de/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-el/strings.xml b/composeApp/src/androidMain/res/values-el/strings.xml index c295d57849..52c49ed1f6 100644 --- a/composeApp/src/androidMain/res/values-el/strings.xml +++ b/composeApp/src/androidMain/res/values-el/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-en/strings.xml b/composeApp/src/androidMain/res/values-en/strings.xml index 7c1ab1a687..ffb5d1d40b 100644 --- a/composeApp/src/androidMain/res/values-en/strings.xml +++ b/composeApp/src/androidMain/res/values-en/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-eo/strings.xml b/composeApp/src/androidMain/res/values-eo/strings.xml index ee707caa03..b443d7390c 100644 --- a/composeApp/src/androidMain/res/values-eo/strings.xml +++ b/composeApp/src/androidMain/res/values-eo/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-es/strings.xml b/composeApp/src/androidMain/res/values-es/strings.xml index e7798aa781..66557f4d7c 100644 --- a/composeApp/src/androidMain/res/values-es/strings.xml +++ b/composeApp/src/androidMain/res/values-es/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-et/strings.xml b/composeApp/src/androidMain/res/values-et/strings.xml index 20abf3bfe7..49289c90ae 100644 --- a/composeApp/src/androidMain/res/values-et/strings.xml +++ b/composeApp/src/androidMain/res/values-et/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-fa/strings.xml b/composeApp/src/androidMain/res/values-fa/strings.xml index 4de875524b..cca7864b38 100644 --- a/composeApp/src/androidMain/res/values-fa/strings.xml +++ b/composeApp/src/androidMain/res/values-fa/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-fi/strings.xml b/composeApp/src/androidMain/res/values-fi/strings.xml index 529ba1c1c1..689a4752ad 100644 --- a/composeApp/src/androidMain/res/values-fi/strings.xml +++ b/composeApp/src/androidMain/res/values-fi/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-fil/strings.xml b/composeApp/src/androidMain/res/values-fil/strings.xml index c83a5659c0..b9dc1c2f50 100644 --- a/composeApp/src/androidMain/res/values-fil/strings.xml +++ b/composeApp/src/androidMain/res/values-fil/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-fr/strings.xml b/composeApp/src/androidMain/res/values-fr/strings.xml index 6b1cc9794b..b6bb4c8370 100644 --- a/composeApp/src/androidMain/res/values-fr/strings.xml +++ b/composeApp/src/androidMain/res/values-fr/strings.xml @@ -911,4 +911,10 @@ Volume BAS : titre précédent Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ga/strings.xml b/composeApp/src/androidMain/res/values-ga/strings.xml index 587c614dda..2ba9b7c17a 100644 --- a/composeApp/src/androidMain/res/values-ga/strings.xml +++ b/composeApp/src/androidMain/res/values-ga/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-gl/strings.xml b/composeApp/src/androidMain/res/values-gl/strings.xml index 55062ddb14..e516581ac9 100644 --- a/composeApp/src/androidMain/res/values-gl/strings.xml +++ b/composeApp/src/androidMain/res/values-gl/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-he/strings.xml b/composeApp/src/androidMain/res/values-he/strings.xml index 7df535a1e6..7a760ba3a6 100644 --- a/composeApp/src/androidMain/res/values-he/strings.xml +++ b/composeApp/src/androidMain/res/values-he/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-hi/strings.xml b/composeApp/src/androidMain/res/values-hi/strings.xml index 7a17d7b8a0..684d44e7f0 100644 --- a/composeApp/src/androidMain/res/values-hi/strings.xml +++ b/composeApp/src/androidMain/res/values-hi/strings.xml @@ -502,7 +502,7 @@ Reorder is possible only in ascending sort जानकारी बोल मिल गये %s पर - + Lyrics not found on %s, try on %s Lyrics not found on %s Lyrics tracks found on %s Lyrics tracks not found on %s @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-hu/strings.xml b/composeApp/src/androidMain/res/values-hu/strings.xml index ed273b568b..6b3a554fe9 100644 --- a/composeApp/src/androidMain/res/values-hu/strings.xml +++ b/composeApp/src/androidMain/res/values-hu/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ia/strings.xml b/composeApp/src/androidMain/res/values-ia/strings.xml index 4a08a41b33..3694c4204f 100644 --- a/composeApp/src/androidMain/res/values-ia/strings.xml +++ b/composeApp/src/androidMain/res/values-ia/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-id/strings.xml b/composeApp/src/androidMain/res/values-id/strings.xml index 70900834f4..62949a44ac 100644 --- a/composeApp/src/androidMain/res/values-id/strings.xml +++ b/composeApp/src/androidMain/res/values-id/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-in/strings.xml b/composeApp/src/androidMain/res/values-in/strings.xml index bd3c210b8d..d6745fdd5e 100644 --- a/composeApp/src/androidMain/res/values-in/strings.xml +++ b/composeApp/src/androidMain/res/values-in/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-it/strings.xml b/composeApp/src/androidMain/res/values-it/strings.xml index 1918b6a514..0432bd8998 100644 --- a/composeApp/src/androidMain/res/values-it/strings.xml +++ b/composeApp/src/androidMain/res/values-it/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-iw/strings.xml b/composeApp/src/androidMain/res/values-iw/strings.xml index 75dea031ff..03af3c8109 100644 --- a/composeApp/src/androidMain/res/values-iw/strings.xml +++ b/composeApp/src/androidMain/res/values-iw/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ja/strings.xml b/composeApp/src/androidMain/res/values-ja/strings.xml index ed72a0808c..d30907fde2 100644 --- a/composeApp/src/androidMain/res/values-ja/strings.xml +++ b/composeApp/src/androidMain/res/values-ja/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ko/strings.xml b/composeApp/src/androidMain/res/values-ko/strings.xml index 5cadb290db..1450083ce2 100644 --- a/composeApp/src/androidMain/res/values-ko/strings.xml +++ b/composeApp/src/androidMain/res/values-ko/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ml/strings.xml b/composeApp/src/androidMain/res/values-ml/strings.xml index 6427a32b46..d619a72bc1 100644 --- a/composeApp/src/androidMain/res/values-ml/strings.xml +++ b/composeApp/src/androidMain/res/values-ml/strings.xml @@ -123,7 +123,7 @@ %1$s പ്ലേബാക്ക് ഇവന്റുകൾ നീക്കം ചെയ്യുക Existing data will be overwritten. %1$s will automatically close itself after restoring the database. ഫോൾഡർ കാഷെ - + Attention by clicking on the button below, the cache location folder will be reset to the default സ്ഥലം ഫോൾഡർ ആൻഡ്രോയിഡ് 10 മുതൽ ഈ സവിശേഷത ലഭ്യമല്ലാവും കാഷെ ലൊക്കേഷൻ ഫോൾഡർ പുന: ക്രമീകരിക്കുക @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-nl/strings.xml b/composeApp/src/androidMain/res/values-nl/strings.xml index 7b730ce105..ed0ebd0ae7 100644 --- a/composeApp/src/androidMain/res/values-nl/strings.xml +++ b/composeApp/src/androidMain/res/values-nl/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-no/strings.xml b/composeApp/src/androidMain/res/values-no/strings.xml index 3909ab060f..3c8faa4f94 100644 --- a/composeApp/src/androidMain/res/values-no/strings.xml +++ b/composeApp/src/androidMain/res/values-no/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-or/strings.xml b/composeApp/src/androidMain/res/values-or/strings.xml index 7925d3c2f1..7e34e513ef 100644 --- a/composeApp/src/androidMain/res/values-or/strings.xml +++ b/composeApp/src/androidMain/res/values-or/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-pl/strings.xml b/composeApp/src/androidMain/res/values-pl/strings.xml index 0a3d351f95..6eceaab5ef 100644 --- a/composeApp/src/androidMain/res/values-pl/strings.xml +++ b/composeApp/src/androidMain/res/values-pl/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-pt-rBR/strings.xml b/composeApp/src/androidMain/res/values-pt-rBR/strings.xml index 2b0486dfa0..fced2fc1b2 100644 --- a/composeApp/src/androidMain/res/values-pt-rBR/strings.xml +++ b/composeApp/src/androidMain/res/values-pt-rBR/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-pt/strings.xml b/composeApp/src/androidMain/res/values-pt/strings.xml index fda7afa037..7203cf37d0 100644 --- a/composeApp/src/androidMain/res/values-pt/strings.xml +++ b/composeApp/src/androidMain/res/values-pt/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ro/strings.xml b/composeApp/src/androidMain/res/values-ro/strings.xml index 52caf4af4d..cf1d9802d1 100644 --- a/composeApp/src/androidMain/res/values-ro/strings.xml +++ b/composeApp/src/androidMain/res/values-ro/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ru/strings.xml b/composeApp/src/androidMain/res/values-ru/strings.xml index 31b5e16ec7..48ad864143 100644 --- a/composeApp/src/androidMain/res/values-ru/strings.xml +++ b/composeApp/src/androidMain/res/values-ru/strings.xml @@ -910,4 +910,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-si/strings.xml b/composeApp/src/androidMain/res/values-si/strings.xml index 80af37cb5b..a075c46ce6 100644 --- a/composeApp/src/androidMain/res/values-si/strings.xml +++ b/composeApp/src/androidMain/res/values-si/strings.xml @@ -909,4 +909,10 @@ CC-BY-SA 3.0 Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-sr-rCS/strings.xml b/composeApp/src/androidMain/res/values-sr-rCS/strings.xml index d0837f71fc..a763e8c904 100644 --- a/composeApp/src/androidMain/res/values-sr-rCS/strings.xml +++ b/composeApp/src/androidMain/res/values-sr-rCS/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-sr/strings.xml b/composeApp/src/androidMain/res/values-sr/strings.xml index b65a4e784d..198ea95723 100644 --- a/composeApp/src/androidMain/res/values-sr/strings.xml +++ b/composeApp/src/androidMain/res/values-sr/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-sv/strings.xml b/composeApp/src/androidMain/res/values-sv/strings.xml index 29c9863609..ec979577ed 100644 --- a/composeApp/src/androidMain/res/values-sv/strings.xml +++ b/composeApp/src/androidMain/res/values-sv/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-ta/strings.xml b/composeApp/src/androidMain/res/values-ta/strings.xml index 18e83bfd3b..fe7eec70d9 100644 --- a/composeApp/src/androidMain/res/values-ta/strings.xml +++ b/composeApp/src/androidMain/res/values-ta/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-te/strings.xml b/composeApp/src/androidMain/res/values-te/strings.xml index 52d9690e67..906a48e3fd 100644 --- a/composeApp/src/androidMain/res/values-te/strings.xml +++ b/composeApp/src/androidMain/res/values-te/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-tr/strings.xml b/composeApp/src/androidMain/res/values-tr/strings.xml index cabdf0ac65..bb087fcf16 100644 --- a/composeApp/src/androidMain/res/values-tr/strings.xml +++ b/composeApp/src/androidMain/res/values-tr/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-uk/strings.xml b/composeApp/src/androidMain/res/values-uk/strings.xml index 39b497b22e..6f9c6461a4 100644 --- a/composeApp/src/androidMain/res/values-uk/strings.xml +++ b/composeApp/src/androidMain/res/values-uk/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-vi/strings.xml b/composeApp/src/androidMain/res/values-vi/strings.xml index 248b668a9e..833b6dc6b6 100644 --- a/composeApp/src/androidMain/res/values-vi/strings.xml +++ b/composeApp/src/androidMain/res/values-vi/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-zh-rCN/strings.xml b/composeApp/src/androidMain/res/values-zh-rCN/strings.xml index b740ced7ae..1952a95a39 100644 --- a/composeApp/src/androidMain/res/values-zh-rCN/strings.xml +++ b/composeApp/src/androidMain/res/values-zh-rCN/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-zh-rTW/strings.xml b/composeApp/src/androidMain/res/values-zh-rTW/strings.xml index 531bbbb427..5a801c4b61 100644 --- a/composeApp/src/androidMain/res/values-zh-rTW/strings.xml +++ b/composeApp/src/androidMain/res/values-zh-rTW/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values-zh/strings.xml b/composeApp/src/androidMain/res/values-zh/strings.xml index a800a18b70..7da842f4d3 100644 --- a/composeApp/src/androidMain/res/values-zh/strings.xml +++ b/composeApp/src/androidMain/res/values-zh/strings.xml @@ -896,4 +896,22 @@ Update the Songs with the Missing Album ID Syncing... Auto Sync Subscribed Channels + Auto Sync Saved Albums + Save playlist to the Youtube Library + Cannot Rename Albums saved in the Youtube Music Library + YTM Library + Cannot Delete Songs from an Online Playlist + YTM Playlists + No Connection + Unlink from Youtube Library + Unlink from Youtube + Youtube Playlists are Limited to 5000 songs + songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs + songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example diff --git a/composeApp/src/androidMain/res/values/strings.xml b/composeApp/src/androidMain/res/values/strings.xml index b313f3bdea..43bb25ba38 100644 --- a/composeApp/src/androidMain/res/values/strings.xml +++ b/composeApp/src/androidMain/res/values/strings.xml @@ -908,4 +908,10 @@ Youtube Playlists are Limited to 5000 songs songs are added in the YouTube Playlist. Repeat the process if there are any Missing Songs songs will be added in the YTM playlist + Audio bass boost + Bass boost level + Audio reverb + Apply a depth effect to the audio + Audio focus + Allows automatic pause and resume playback after a call for example