From 4605010bf67514391d81a9927ccd4e4834218046 Mon Sep 17 00:00:00 2001 From: elpaablo Date: Thu, 12 Mar 2026 01:17:29 +0000 Subject: [PATCH 01/47] temp --- res/values/alpha_strings.xml | 9 ++ res/xml/cutout_progress_settings.xml | 106 +++++++++++------- .../CutoutProgressSettingsFragment.kt | 84 +++++++++++--- 3 files changed, 146 insertions(+), 53 deletions(-) diff --git a/res/values/alpha_strings.xml b/res/values/alpha_strings.xml index 147d73c34..9e4252b59 100644 --- a/res/values/alpha_strings.xml +++ b/res/values/alpha_strings.xml @@ -1587,6 +1587,15 @@ The progress bar dynamically switches between media and download states, ensurin Accent Rainbow Custom + Expanded mode + Size of the expanded mode + Compact size + Position + Opacity + Center split + Left + Right + Charging ring diff --git a/res/xml/cutout_progress_settings.xml b/res/xml/cutout_progress_settings.xml index 397bd0ba6..f1e54b404 100644 --- a/res/xml/cutout_progress_settings.xml +++ b/res/xml/cutout_progress_settings.xml @@ -1,6 +1,7 @@ + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt index fb6e719d6..61ccb2716 100644 --- a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt +++ b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt @@ -1,5 +1,6 @@ /* * Copyright (C) 2024-2026 Lunaris AOSP + * Copyright (C) 2026 AlphaDroid * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +19,7 @@ package com.alpha.settings.fragments.statusbar import android.os.Bundle import android.provider.Settings +import android.view.WindowManager import androidx.compose.ui.graphics.Color import androidx.preference.ListPreference import androidx.preference.Preference @@ -46,6 +48,9 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), private const val KEY_FILENAME_POSITION = "cutout_progress_filename_position" private const val KEY_FILENAME_TRUNCATE = "cutout_progress_filename_truncate" + // Dynamic Island Keys + private const val KEY_ISLAND_POSITION = "cutout_progress_island_position" + private const val DEFAULT_RING_COLOR = 0xFF2196F3.toInt() private const val DEFAULT_ERROR_COLOR = 0xFFF44336.toInt() private const val DEFAULT_FLASH_COLOR = 0xFFFFFFFF.toInt() @@ -53,6 +58,7 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), } private lateinit var ringColorModePref: ListPreference + private lateinit var islandPosPref: ListPreference private lateinit var ringColorPref: Preference private lateinit var errorColorPref: Preference @@ -69,6 +75,7 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), addPreferencesFromResource(R.xml.cutout_progress_settings) ringColorModePref = findPreference(KEY_RING_COLOR_MODE)!! + islandPosPref = findPreference(KEY_ISLAND_POSITION)!! ringColorPref = findPreference(KEY_RING_COLOR)!! errorColorPref = findPreference(KEY_ERROR_COLOR)!! @@ -83,8 +90,9 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), refreshColorSummaries() syncListPreferences() + setupIslandPositionPreference() - val storedMode = readSecureInt(KEY_RING_COLOR_MODE, COLOR_MODE_ACCENT) + val storedMode = readSystemInt(KEY_RING_COLOR_MODE, COLOR_MODE_ACCENT) ringColorModePref.value = storedMode.toString() updateColorPickerVisibility(storedMode) @@ -130,16 +138,61 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), fnameTruncPref.onPreferenceChangeListener = this } + private fun setupIslandPositionPreference() { + val windowManager = requireContext().getSystemService(WindowManager::class.java) + val windowMetrics = windowManager.currentWindowMetrics + val displayWidth = windowMetrics.bounds.width() + val cutout = windowMetrics.windowInsets.displayCutout + + var isLeftCutout = false + var isRightCutout = false + + // Detect physical hardware camera position + cutout?.boundingRects?.forEach { rect -> + if (rect.centerX() < displayWidth / 3) isLeftCutout = true + else if (rect.centerX() > displayWidth * 2 / 3) isRightCutout = true + } + + val entries = mutableListOf() + val values = mutableListOf() + + // 0 = Center Split, 1 = Left, 2 = Right + entries.add(getString(R.string.cutout_island_pos_center)) // e.g. "Center Split" + values.add("0") + + if (!isLeftCutout) { + entries.add(getString(R.string.cutout_island_pos_left)) // e.g. "Left" + values.add("1") + } + if (!isRightCutout) { + entries.add(getString(R.string.cutout_island_pos_right)) // e.g. "Right" + values.add("2") + } + + islandPosPref.entries = entries.toTypedArray() + islandPosPref.entryValues = values.toTypedArray() + + // Fallback to Center if user had an invalid selection previously saved + var currentPos = readSystemInt(KEY_ISLAND_POSITION, 0) + if ((currentPos == 1 && isLeftCutout) || (currentPos == 2 && isRightCutout)) { + currentPos = 0 + writeSystemInt(KEY_ISLAND_POSITION, currentPos) + } + + islandPosPref.value = currentPos.toString() + islandPosPref.onPreferenceChangeListener = this + } + override fun onPreferenceChange(preference: Preference, newValue: Any): Boolean { val intValue = (newValue as? String)?.toIntOrNull() ?: return false if (preference.key == KEY_RING_COLOR_MODE) { - writeSecureInt(KEY_RING_COLOR_MODE, intValue) + writeSystemInt(KEY_RING_COLOR_MODE, intValue) updateColorPickerVisibility(intValue) return true } - writeSecureInt(preference.key, intValue) + writeSystemInt(preference.key, intValue) return true } @@ -156,12 +209,12 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), fnamePosPref to 4, fnameTruncPref to 0 ).forEach { (pref, default) -> - pref.value = readSecureInt(pref.key, default).toString() + pref.value = readSystemInt(pref.key, default).toString() } } private fun showColorPicker(title: String, key: String, default: Int) { - val currentArgb = readSecureInt(key, default) + val currentArgb = readSystemInt(key, default) val currentHex = argbToHex(currentArgb) val dialog = CutoutProgressColorPickerDialogFragment.newInstance( @@ -169,28 +222,29 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), colorHex = currentHex ) dialog.setOnColorSelectedListener { color: Color -> - writeSecureInt(key, color.toArgb()) + writeSystemInt(key, color.toArgb()) refreshColorSummaries() } dialog.show(parentFragmentManager, CutoutProgressColorPickerDialogFragment.TAG) } private fun refreshColorSummaries() { - ringColorPref.summary = "#${argbToHex(readSecureInt(KEY_RING_COLOR, DEFAULT_RING_COLOR))}" - errorColorPref.summary = "#${argbToHex(readSecureInt(KEY_ERROR_COLOR, DEFAULT_ERROR_COLOR))}" - flashColorPref.summary = "#${argbToHex(readSecureInt(KEY_FLASH_COLOR, DEFAULT_FLASH_COLOR))}" - bgColorPref.summary = "#${argbToHex(readSecureInt(KEY_BG_COLOR, DEFAULT_BG_COLOR))}" + ringColorPref.summary = "#${argbToHex(readSystemInt(KEY_RING_COLOR, DEFAULT_RING_COLOR))}" + errorColorPref.summary = "#${argbToHex(readSystemInt(KEY_ERROR_COLOR, DEFAULT_ERROR_COLOR))}" + flashColorPref.summary = "#${argbToHex(readSystemInt(KEY_FLASH_COLOR, DEFAULT_FLASH_COLOR))}" + bgColorPref.summary = "#${argbToHex(readSystemInt(KEY_BG_COLOR, DEFAULT_BG_COLOR))}" } - private fun readSecureInt(key: String, default: Int): Int = - Settings.Secure.getInt(requireContext().contentResolver, key, default) + // Switched to Settings.System to match SystemUI changes + private fun readSystemInt(key: String, default: Int): Int = + Settings.System.getInt(requireContext().contentResolver, key, default) - private fun writeSecureInt(key: String, value: Int) { - Settings.Secure.putInt(requireContext().contentResolver, key, value) + private fun writeSystemInt(key: String, value: Int) { + Settings.System.putInt(requireContext().contentResolver, key, value) } private fun argbToHex(argb: Int): String = String.format("%06X", 0xFFFFFF and argb) override fun getMetricsCategory(): Int = MetricsEvent.ALPHA -} +} \ No newline at end of file From e81f3d29afa6a1706045d503a8bcd7b0ef07dd32 Mon Sep 17 00:00:00 2001 From: elpaablo Date: Fri, 13 Mar 2026 18:58:00 +0000 Subject: [PATCH 02/47] temp --- res/values/alpha_strings.xml | 1 + res/xml/cutout_progress_settings.xml | 499 +++++++++--------- .../CutoutProgressSettingsFragment.kt | 7 +- .../preferences/CustomSeekBarPreference.java | 28 +- .../settings/trampoline/AboutActivity.java | 2 +- .../settings/trampoline/ButtonsActivity.java | 2 +- .../CutoutProgressSettingsActivity.kt | 10 + .../trampoline/LockScreenActivity.java | 2 +- .../trampoline/MiscellaneousActivity.java | 2 +- .../trampoline/NotificationsActivity.java | 2 +- .../trampoline/QuickSettingsActivity.java | 2 +- .../settings/trampoline/SoundActivity.java | 2 +- .../trampoline/StatusBarActivity.java | 2 +- .../trampoline/UserInterfaceActivity.java | 2 +- 14 files changed, 285 insertions(+), 278 deletions(-) create mode 100644 src/com/alpha/settings/trampoline/CutoutProgressSettingsActivity.kt diff --git a/res/values/alpha_strings.xml b/res/values/alpha_strings.xml index 9e4252b59..1cc06ae03 100644 --- a/res/values/alpha_strings.xml +++ b/res/values/alpha_strings.xml @@ -1595,6 +1595,7 @@ The progress bar dynamically switches between media and download states, ensurin Center split Left Right + Expanded mode timeout diff --git a/res/xml/cutout_progress_settings.xml b/res/xml/cutout_progress_settings.xml index f1e54b404..7a872ea76 100644 --- a/res/xml/cutout_progress_settings.xml +++ b/res/xml/cutout_progress_settings.xml @@ -2,34 +2,45 @@ - - + + + + + + + + + + + + + + android:key="cutout_progress_cat_download" + android:title="Download progress"> + + + android:defaultValue="0" + android:dependency="cutout_progress_download_enabled" /> + android:dependency="cutout_progress_download_enabled" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + android:persistent="false" + android:dependency="cutout_progress_download_enabled" /> + android:defaultValue="true" + android:dependency="cutout_progress_download_enabled" /> + + + android:defaultValue="true" + android:dependency="cutout_progress_download_enabled" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + android:key="cutout_progress_cat_download_labels" + android:title="Download labels & badges" + android:dependency="cutout_progress_download_enabled"> - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt index 61ccb2716..64d8a13da 100644 --- a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt +++ b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt @@ -27,12 +27,14 @@ import com.android.settings.R import com.android.settings.SettingsPreferenceFragment import com.android.internal.logging.nano.MetricsProto.MetricsEvent import com.alpha.settings.utils.toArgb -import com.alpha.settings.utils.toHexString class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), Preference.OnPreferenceChangeListener { companion object { + // Feature Keys are handled natively by SystemSettingSwitchPreference + // We only need to define keys here that require manual UI manipulation (like color dialogs) + private const val KEY_RING_COLOR_MODE = "cutout_progress_ring_color_mode" private const val COLOR_MODE_ACCENT = 0 private const val COLOR_MODE_RAINBOW = 1 @@ -42,13 +44,13 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), private const val KEY_ERROR_COLOR = "cutout_progress_error_color" private const val KEY_FLASH_COLOR = "cutout_progress_finish_flash_color" private const val KEY_BG_COLOR = "cutout_progress_bg_ring_color" + private const val KEY_FINISH_STYLE = "cutout_progress_finish_style" private const val KEY_EASING = "cutout_progress_easing" private const val KEY_PERCENT_POSITION = "cutout_progress_percent_position" private const val KEY_FILENAME_POSITION = "cutout_progress_filename_position" private const val KEY_FILENAME_TRUNCATE = "cutout_progress_filename_truncate" - // Dynamic Island Keys private const val KEY_ISLAND_POSITION = "cutout_progress_island_position" private const val DEFAULT_RING_COLOR = 0xFF2196F3.toInt() @@ -235,7 +237,6 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), bgColorPref.summary = "#${argbToHex(readSystemInt(KEY_BG_COLOR, DEFAULT_BG_COLOR))}" } - // Switched to Settings.System to match SystemUI changes private fun readSystemInt(key: String, default: Int): Int = Settings.System.getInt(requireContext().contentResolver, key, default) diff --git a/src/com/alpha/settings/preferences/CustomSeekBarPreference.java b/src/com/alpha/settings/preferences/CustomSeekBarPreference.java index bc2ab2b2f..f3c4abcbb 100644 --- a/src/com/alpha/settings/preferences/CustomSeekBarPreference.java +++ b/src/com/alpha/settings/preferences/CustomSeekBarPreference.java @@ -169,13 +169,13 @@ public void onBindViewHolder(PreferenceViewHolder holder) { if (mResetImageView != null) { mResetImageView.setOnClickListener(view -> + setValue(mDefaultValue, true) + ); + mResetImageView.setOnLongClickListener(view -> { Toast.makeText(getContext(), getContext().getString(R.string.custom_seekbar_default_value_to_set, getTextValue(mDefaultValue)), - Toast.LENGTH_LONG).show() - ); - mResetImageView.setOnLongClickListener(view -> { - setValue(mDefaultValue, true); + Toast.LENGTH_LONG).show(); return true; }); } @@ -339,17 +339,23 @@ public void setDefaultValue(String newValue, boolean update) { } public void setValue(int newValue) { - mValue = getLimitedValue(newValue); - if (mSeekBar != null) - mSeekBar.setProgress(getSeekValue(mValue)); + setValue(newValue, true); } public void setValue(int newValue, boolean update) { newValue = getLimitedValue(newValue); if (mValue != newValue) { - mValue = newValue; - if (update && mSeekBar != null) - mSeekBar.setProgress(getSeekValue(mValue)); + if (update && mSeekBar != null) { + // By just setting progress, onProgressChanged handles persistence + mSeekBar.setProgress(getSeekValue(newValue)); + } else { + if (callChangeListener(newValue)) { + changeValue(newValue); + persistInt(newValue); + mValue = newValue; + updateValueViews(); + } + } } } @@ -372,4 +378,4 @@ public void setMin(int min) { public void refresh(int newValue) { setValue(newValue, mSeekBar != null); } -} +} \ No newline at end of file diff --git a/src/com/alpha/settings/trampoline/AboutActivity.java b/src/com/alpha/settings/trampoline/AboutActivity.java index 4d213ad92..f891de20e 100644 --- a/src/com/alpha/settings/trampoline/AboutActivity.java +++ b/src/com/alpha/settings/trampoline/AboutActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link About} fragment. */ public class AboutActivity extends AppCompatActivity { private static final String TAG = "AboutActivity"; diff --git a/src/com/alpha/settings/trampoline/ButtonsActivity.java b/src/com/alpha/settings/trampoline/ButtonsActivity.java index e336efe2d..b105989f7 100644 --- a/src/com/alpha/settings/trampoline/ButtonsActivity.java +++ b/src/com/alpha/settings/trampoline/ButtonsActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link Buttons} fragment. */ public class ButtonsActivity extends AppCompatActivity { private static final String TAG = "ButtonsActivity"; diff --git a/src/com/alpha/settings/trampoline/CutoutProgressSettingsActivity.kt b/src/com/alpha/settings/trampoline/CutoutProgressSettingsActivity.kt new file mode 100644 index 000000000..59c7c2c63 --- /dev/null +++ b/src/com/alpha/settings/trampoline/CutoutProgressSettingsActivity.kt @@ -0,0 +1,10 @@ +package com.alpha.settings.trampoline + +import com.android.settings.SettingsActivity +import com.alpha.settings.fragments.statusbar.CutoutProgressSettingsFragment + +class CutoutProgressSettingsActivity : SettingsActivity() { + override fun isValidFragment(fragmentName: String): Boolean { + return CutoutProgressSettingsFragment::class.java.name == fragmentName + } +} \ No newline at end of file diff --git a/src/com/alpha/settings/trampoline/LockScreenActivity.java b/src/com/alpha/settings/trampoline/LockScreenActivity.java index ce33a60ba..66f89b9f6 100644 --- a/src/com/alpha/settings/trampoline/LockScreenActivity.java +++ b/src/com/alpha/settings/trampoline/LockScreenActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link LockScreen} fragment. */ public class LockScreenActivity extends AppCompatActivity { private static final String TAG = "LockScreenActivity"; diff --git a/src/com/alpha/settings/trampoline/MiscellaneousActivity.java b/src/com/alpha/settings/trampoline/MiscellaneousActivity.java index a1e400b36..072997453 100644 --- a/src/com/alpha/settings/trampoline/MiscellaneousActivity.java +++ b/src/com/alpha/settings/trampoline/MiscellaneousActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link Miscellaneous} fragment. */ public class MiscellaneousActivity extends AppCompatActivity { private static final String TAG = "MiscellaneousActivity"; diff --git a/src/com/alpha/settings/trampoline/NotificationsActivity.java b/src/com/alpha/settings/trampoline/NotificationsActivity.java index cee7e6f36..4b3f727a8 100644 --- a/src/com/alpha/settings/trampoline/NotificationsActivity.java +++ b/src/com/alpha/settings/trampoline/NotificationsActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link Notifications} fragment. */ public class NotificationsActivity extends AppCompatActivity { private static final String TAG = "NotificationsActivity"; diff --git a/src/com/alpha/settings/trampoline/QuickSettingsActivity.java b/src/com/alpha/settings/trampoline/QuickSettingsActivity.java index db2e00f95..86617da13 100644 --- a/src/com/alpha/settings/trampoline/QuickSettingsActivity.java +++ b/src/com/alpha/settings/trampoline/QuickSettingsActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link QuickSettings} fragment. */ public class QuickSettingsActivity extends AppCompatActivity { private static final String TAG = "QuickSettingsActivity"; diff --git a/src/com/alpha/settings/trampoline/SoundActivity.java b/src/com/alpha/settings/trampoline/SoundActivity.java index 12ec07ead..084aa9c39 100644 --- a/src/com/alpha/settings/trampoline/SoundActivity.java +++ b/src/com/alpha/settings/trampoline/SoundActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link Sound} fragment. */ public class SoundActivity extends AppCompatActivity { private static final String TAG = "SoundActivity"; diff --git a/src/com/alpha/settings/trampoline/StatusBarActivity.java b/src/com/alpha/settings/trampoline/StatusBarActivity.java index 1f731fbd4..b4b7ba7bb 100644 --- a/src/com/alpha/settings/trampoline/StatusBarActivity.java +++ b/src/com/alpha/settings/trampoline/StatusBarActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link StatusBar} fragment. */ public class StatusBarActivity extends AppCompatActivity { private static final String TAG = "StatusBarActivity"; diff --git a/src/com/alpha/settings/trampoline/UserInterfaceActivity.java b/src/com/alpha/settings/trampoline/UserInterfaceActivity.java index b57301180..af85225e9 100644 --- a/src/com/alpha/settings/trampoline/UserInterfaceActivity.java +++ b/src/com/alpha/settings/trampoline/UserInterfaceActivity.java @@ -25,7 +25,7 @@ import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.settings.core.SubSettingLauncher; -/** Trampoline activity for launching the {@link FirmwareVersionSettings} fragment. */ +/** Trampoline activity for launching the {@link UserInterface} fragment. */ public class UserInterfaceActivity extends AppCompatActivity { private static final String TAG = "UserInterfaceActivity"; From 1780ea62071971a5883d8c034e0d2896f1dd9a8a Mon Sep 17 00:00:00 2001 From: Oscar Date: Thu, 12 Mar 2026 21:57:56 -0700 Subject: [PATCH 03/47] Add missing Drawable for Cutout Ring Feature --- res/drawable/ic_cutout_ring.xml | 27 +++++++++++++++++++++++++++ res/xml/alpha_settings_statusbar.xml | 1 + 2 files changed, 28 insertions(+) create mode 100644 res/drawable/ic_cutout_ring.xml diff --git a/res/drawable/ic_cutout_ring.xml b/res/drawable/ic_cutout_ring.xml new file mode 100644 index 000000000..f26109e5d --- /dev/null +++ b/res/drawable/ic_cutout_ring.xml @@ -0,0 +1,27 @@ + + + + + diff --git a/res/xml/alpha_settings_statusbar.xml b/res/xml/alpha_settings_statusbar.xml index 1ebbc3078..7bc68dbc6 100644 --- a/res/xml/alpha_settings_statusbar.xml +++ b/res/xml/alpha_settings_statusbar.xml @@ -42,6 +42,7 @@ From b8294315f9ce1860350f0666be0496c946029728 Mon Sep 17 00:00:00 2001 From: elpaablo Date: Fri, 13 Mar 2026 23:38:16 +0000 Subject: [PATCH 04/47] temp --- res/values/alpha_strings.xml | 92 +---- res/xml/cutout_progress_settings.xml | 346 +----------------- .../CutoutProgressSettingsFragment.kt | 158 +------- 3 files changed, 47 insertions(+), 549 deletions(-) diff --git a/res/values/alpha_strings.xml b/res/values/alpha_strings.xml index 1cc06ae03..b11e60b23 100644 --- a/res/values/alpha_strings.xml +++ b/res/values/alpha_strings.xml @@ -1523,86 +1523,34 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - - + + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color + Expanded mode + + Enable download progress ring + Show charging ring + Charging pulse animation + Animate a repeating pulse from center outward while charging + + Ring color mode Accent Rainbow Custom - Expanded mode - Size of the expanded mode - Compact size - Position - Opacity + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment Center split Left Right - Expanded mode timeout - - - - Charging ring - Show charging ring - Display battery level as a symmetric ring around the cutout while charging - Charging pulse animation - Animate a repeating pulse from center outward while charging + Auto-collapse timeout diff --git a/res/xml/cutout_progress_settings.xml b/res/xml/cutout_progress_settings.xml index 7a872ea76..3a4944389 100644 --- a/res/xml/cutout_progress_settings.xml +++ b/res/xml/cutout_progress_settings.xml @@ -8,17 +8,16 @@ xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" android:title="@string/cutout_progress_title"> - - - - + + + - - - - - - + + android:defaultValue="0" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - \ No newline at end of file diff --git a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt index 64d8a13da..91a64534e 100644 --- a/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt +++ b/src/com/alpha/settings/fragments/statusbar/CutoutProgressSettingsFragment.kt @@ -1,20 +1,7 @@ /* * Copyright (C) 2024-2026 Lunaris AOSP * Copyright (C) 2026 AlphaDroid - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. */ - package com.alpha.settings.fragments.statusbar import android.os.Bundle @@ -32,112 +19,47 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), Preference.OnPreferenceChangeListener { companion object { - // Feature Keys are handled natively by SystemSettingSwitchPreference - // We only need to define keys here that require manual UI manipulation (like color dialogs) - private const val KEY_RING_COLOR_MODE = "cutout_progress_ring_color_mode" - private const val COLOR_MODE_ACCENT = 0 - private const val COLOR_MODE_RAINBOW = 1 private const val COLOR_MODE_CUSTOM = 2 private const val KEY_RING_COLOR = "cutout_progress_ring_color" - private const val KEY_ERROR_COLOR = "cutout_progress_error_color" - private const val KEY_FLASH_COLOR = "cutout_progress_finish_flash_color" - private const val KEY_BG_COLOR = "cutout_progress_bg_ring_color" - - private const val KEY_FINISH_STYLE = "cutout_progress_finish_style" - private const val KEY_EASING = "cutout_progress_easing" - private const val KEY_PERCENT_POSITION = "cutout_progress_percent_position" - private const val KEY_FILENAME_POSITION = "cutout_progress_filename_position" - private const val KEY_FILENAME_TRUNCATE = "cutout_progress_filename_truncate" + private const val DEFAULT_RING_COLOR = 0xFF2196F3.toInt() private const val KEY_ISLAND_POSITION = "cutout_progress_island_position" - - private const val DEFAULT_RING_COLOR = 0xFF2196F3.toInt() - private const val DEFAULT_ERROR_COLOR = 0xFFF44336.toInt() - private const val DEFAULT_FLASH_COLOR = 0xFFFFFFFF.toInt() - private const val DEFAULT_BG_COLOR = 0xFF808080.toInt() } private lateinit var ringColorModePref: ListPreference - private lateinit var islandPosPref: ListPreference - private lateinit var ringColorPref: Preference - private lateinit var errorColorPref: Preference - private lateinit var flashColorPref: Preference - private lateinit var bgColorPref: Preference - - private lateinit var finishStylePref: ListPreference - private lateinit var easingPref: ListPreference - private lateinit var pctPosPref: ListPreference - private lateinit var fnamePosPref: ListPreference - private lateinit var fnameTruncPref: ListPreference + private lateinit var islandPosPref: ListPreference override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) { addPreferencesFromResource(R.xml.cutout_progress_settings) ringColorModePref = findPreference(KEY_RING_COLOR_MODE)!! + ringColorPref = findPreference(KEY_RING_COLOR)!! islandPosPref = findPreference(KEY_ISLAND_POSITION)!! - ringColorPref = findPreference(KEY_RING_COLOR)!! - errorColorPref = findPreference(KEY_ERROR_COLOR)!! - flashColorPref = findPreference(KEY_FLASH_COLOR)!! - bgColorPref = findPreference(KEY_BG_COLOR)!! - - finishStylePref = findPreference(KEY_FINISH_STYLE)!! - easingPref = findPreference(KEY_EASING)!! - pctPosPref = findPreference(KEY_PERCENT_POSITION)!! - fnamePosPref = findPreference(KEY_FILENAME_POSITION)!! - fnameTruncPref = findPreference(KEY_FILENAME_TRUNCATE)!! - - refreshColorSummaries() - syncListPreferences() setupIslandPositionPreference() - val storedMode = readSystemInt(KEY_RING_COLOR_MODE, COLOR_MODE_ACCENT) + val storedMode = readSystemInt(KEY_RING_COLOR_MODE, 0) ringColorModePref.value = storedMode.toString() - updateColorPickerVisibility(storedMode) - + ringColorPref.isVisible = (storedMode == COLOR_MODE_CUSTOM) ringColorModePref.onPreferenceChangeListener = this + ringColorPref.summary = "#${argbToHex(readSystemInt(KEY_RING_COLOR, DEFAULT_RING_COLOR))}" ringColorPref.setOnPreferenceClickListener { - showColorPicker( + val currentHex = argbToHex(readSystemInt(KEY_RING_COLOR, DEFAULT_RING_COLOR)) + val dialog = CutoutProgressColorPickerDialogFragment.newInstance( title = getString(R.string.cutout_progress_ring_color_title), - key = KEY_RING_COLOR, - default = DEFAULT_RING_COLOR + colorHex = currentHex ) + dialog.setOnColorSelectedListener { color: Color -> + writeSystemInt(KEY_RING_COLOR, color.toArgb()) + ringColorPref.summary = "#${argbToHex(color.toArgb())}" + } + dialog.show(parentFragmentManager, CutoutProgressColorPickerDialogFragment.TAG) true } - errorColorPref.setOnPreferenceClickListener { - showColorPicker( - title = getString(R.string.cutout_progress_error_color_title), - key = KEY_ERROR_COLOR, - default = DEFAULT_ERROR_COLOR - ) - true - } - flashColorPref.setOnPreferenceClickListener { - showColorPicker( - title = getString(R.string.cutout_progress_finish_flash_color_title), - key = KEY_FLASH_COLOR, - default = DEFAULT_FLASH_COLOR - ) - true - } - bgColorPref.setOnPreferenceClickListener { - showColorPicker( - title = getString(R.string.cutout_progress_bg_ring_color_title), - key = KEY_BG_COLOR, - default = DEFAULT_BG_COLOR - ) - true - } - - finishStylePref.onPreferenceChangeListener = this - easingPref.onPreferenceChangeListener = this - pctPosPref.onPreferenceChangeListener = this - fnamePosPref.onPreferenceChangeListener = this - fnameTruncPref.onPreferenceChangeListener = this } private fun setupIslandPositionPreference() { @@ -149,7 +71,6 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), var isLeftCutout = false var isRightCutout = false - // Detect physical hardware camera position cutout?.boundingRects?.forEach { rect -> if (rect.centerX() < displayWidth / 3) isLeftCutout = true else if (rect.centerX() > displayWidth * 2 / 3) isRightCutout = true @@ -158,23 +79,21 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), val entries = mutableListOf() val values = mutableListOf() - // 0 = Center Split, 1 = Left, 2 = Right - entries.add(getString(R.string.cutout_island_pos_center)) // e.g. "Center Split" + entries.add(getString(R.string.cutout_island_pos_center)) values.add("0") if (!isLeftCutout) { - entries.add(getString(R.string.cutout_island_pos_left)) // e.g. "Left" + entries.add(getString(R.string.cutout_island_pos_left)) values.add("1") } if (!isRightCutout) { - entries.add(getString(R.string.cutout_island_pos_right)) // e.g. "Right" + entries.add(getString(R.string.cutout_island_pos_right)) values.add("2") } islandPosPref.entries = entries.toTypedArray() islandPosPref.entryValues = values.toTypedArray() - // Fallback to Center if user had an invalid selection previously saved var currentPos = readSystemInt(KEY_ISLAND_POSITION, 0) if ((currentPos == 1 && isLeftCutout) || (currentPos == 2 && isRightCutout)) { currentPos = 0 @@ -189,54 +108,13 @@ class CutoutProgressSettingsFragment : SettingsPreferenceFragment(), val intValue = (newValue as? String)?.toIntOrNull() ?: return false if (preference.key == KEY_RING_COLOR_MODE) { - writeSystemInt(KEY_RING_COLOR_MODE, intValue) - updateColorPickerVisibility(intValue) - return true + ringColorPref.isVisible = (intValue == COLOR_MODE_CUSTOM) } writeSystemInt(preference.key, intValue) return true } - private fun updateColorPickerVisibility(mode: Int) { - val isCustom = mode == COLOR_MODE_CUSTOM - ringColorPref.isVisible = isCustom - } - - private fun syncListPreferences() { - listOf( - finishStylePref to 0, - easingPref to 0, - pctPosPref to 0, - fnamePosPref to 4, - fnameTruncPref to 0 - ).forEach { (pref, default) -> - pref.value = readSystemInt(pref.key, default).toString() - } - } - - private fun showColorPicker(title: String, key: String, default: Int) { - val currentArgb = readSystemInt(key, default) - val currentHex = argbToHex(currentArgb) - - val dialog = CutoutProgressColorPickerDialogFragment.newInstance( - title = title, - colorHex = currentHex - ) - dialog.setOnColorSelectedListener { color: Color -> - writeSystemInt(key, color.toArgb()) - refreshColorSummaries() - } - dialog.show(parentFragmentManager, CutoutProgressColorPickerDialogFragment.TAG) - } - - private fun refreshColorSummaries() { - ringColorPref.summary = "#${argbToHex(readSystemInt(KEY_RING_COLOR, DEFAULT_RING_COLOR))}" - errorColorPref.summary = "#${argbToHex(readSystemInt(KEY_ERROR_COLOR, DEFAULT_ERROR_COLOR))}" - flashColorPref.summary = "#${argbToHex(readSystemInt(KEY_FLASH_COLOR, DEFAULT_FLASH_COLOR))}" - bgColorPref.summary = "#${argbToHex(readSystemInt(KEY_BG_COLOR, DEFAULT_BG_COLOR))}" - } - private fun readSystemInt(key: String, default: Int): Int = Settings.System.getInt(requireContext().contentResolver, key, default) From 637cb042de8614618a8117a3b7df248a031c96c1 Mon Sep 17 00:00:00 2001 From: elpaablo Date: Sat, 14 Mar 2026 12:06:52 +0000 Subject: [PATCH 05/47] Update AlphaSettings summaries --- res/values/alpha_strings.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/res/values/alpha_strings.xml b/res/values/alpha_strings.xml index b11e60b23..014470b51 100644 --- a/res/values/alpha_strings.xml +++ b/res/values/alpha_strings.xml @@ -31,13 +31,13 @@ Display User Interface UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid From 385cd75c21d3e637189ceb4e55244effb114894e Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:46:03 +0000 Subject: [PATCH 06/47] New Crowdin updates (#127) * New translations alpha_strings.xml (French) * New translations alpha_strings.xml (Spanish) * New translations alpha_strings.xml (Bulgarian) * New translations alpha_strings.xml (Czech) * New translations alpha_strings.xml (German) * New translations alpha_strings.xml (Greek) * New translations alpha_strings.xml (Hungarian) * New translations alpha_strings.xml (Italian) * New translations alpha_strings.xml (Polish) * New translations alpha_strings.xml (Portuguese) * New translations alpha_strings.xml (Russian) * New translations alpha_strings.xml (Albanian) * New translations alpha_strings.xml (Turkish) * New translations alpha_strings.xml (Chinese Simplified) * New translations alpha_strings.xml (Chinese Traditional) * New translations alpha_strings.xml (Vietnamese) * New translations alpha_strings.xml (Portuguese, Brazilian) * New translations alpha_strings.xml (Indonesian) * New translations alpha_strings.xml (Hindi) * New translations alpha_strings.xml (Romanian) * New translations alpha_strings.xml (French) * New translations alpha_strings.xml (Spanish) * New translations alpha_strings.xml (Bulgarian) * New translations alpha_strings.xml (Czech) * New translations alpha_strings.xml (German) * New translations alpha_strings.xml (Greek) * New translations alpha_strings.xml (Hungarian) * New translations alpha_strings.xml (Italian) * New translations alpha_strings.xml (Polish) * New translations alpha_strings.xml (Portuguese) * New translations alpha_strings.xml (Russian) * New translations alpha_strings.xml (Albanian) * New translations alpha_strings.xml (Turkish) * New translations alpha_strings.xml (Chinese Simplified) * New translations alpha_strings.xml (Chinese Traditional) * New translations alpha_strings.xml (Vietnamese) * New translations alpha_strings.xml (Portuguese, Brazilian) * New translations alpha_strings.xml (Indonesian) * New translations alpha_strings.xml (Hindi) * New translations alpha_strings.xml (Romanian) * New translations alpha_strings.xml (French) * New translations alpha_strings.xml (Spanish) * New translations alpha_strings.xml (Bulgarian) * New translations alpha_strings.xml (Czech) * New translations alpha_strings.xml (German) * New translations alpha_strings.xml (Greek) * New translations alpha_strings.xml (Hungarian) * New translations alpha_strings.xml (Italian) * New translations alpha_strings.xml (Polish) * New translations alpha_strings.xml (Portuguese) * New translations alpha_strings.xml (Russian) * New translations alpha_strings.xml (Albanian) * New translations alpha_strings.xml (Turkish) * New translations alpha_strings.xml (Chinese Simplified) * New translations alpha_strings.xml (Chinese Traditional) * New translations alpha_strings.xml (Vietnamese) * New translations alpha_strings.xml (Portuguese, Brazilian) * New translations alpha_strings.xml (Indonesian) * New translations alpha_strings.xml (Hindi) * New translations alpha_strings.xml (Romanian) --- res/values-bg-rBG/alpha_strings.xml | 91 ++++++++--------------------- res/values-cs-rCZ/alpha_strings.xml | 91 ++++++++--------------------- res/values-de-rDE/alpha_strings.xml | 91 ++++++++--------------------- res/values-el-rGR/alpha_strings.xml | 91 ++++++++--------------------- res/values-es-rES/alpha_strings.xml | 91 ++++++++--------------------- res/values-fr-rFR/alpha_strings.xml | 91 ++++++++--------------------- res/values-hi-rIN/alpha_strings.xml | 91 ++++++++--------------------- res/values-hu-rHU/alpha_strings.xml | 91 ++++++++--------------------- res/values-in-rID/alpha_strings.xml | 91 ++++++++--------------------- res/values-it-rIT/alpha_strings.xml | 91 ++++++++--------------------- res/values-pl-rPL/alpha_strings.xml | 91 ++++++++--------------------- res/values-pt-rBR/alpha_strings.xml | 91 ++++++++--------------------- res/values-pt-rPT/alpha_strings.xml | 91 ++++++++--------------------- res/values-ro-rRO/alpha_strings.xml | 91 ++++++++--------------------- res/values-ru-rRU/alpha_strings.xml | 91 ++++++++--------------------- res/values-sq-rAL/alpha_strings.xml | 91 ++++++++--------------------- res/values-tr-rTR/alpha_strings.xml | 91 ++++++++--------------------- res/values-vi-rVN/alpha_strings.xml | 91 ++++++++--------------------- res/values-zh-rCN/alpha_strings.xml | 91 ++++++++--------------------- res/values-zh-rTW/alpha_strings.xml | 91 ++++++++--------------------- 20 files changed, 500 insertions(+), 1320 deletions(-) diff --git a/res/values-bg-rBG/alpha_strings.xml b/res/values-bg-rBG/alpha_strings.xml index ffd013ca2..51c943204 100644 --- a/res/values-bg-rBG/alpha_strings.xml +++ b/res/values-bg-rBG/alpha_strings.xml @@ -30,13 +30,13 @@ Дисплей Потребителски интерфейс UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Дъга - По избор - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Дъга + По избор + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Ляво + Дясно + Auto-collapse timeout diff --git a/res/values-cs-rCZ/alpha_strings.xml b/res/values-cs-rCZ/alpha_strings.xml index bce51cc99..ceac5fbee 100644 --- a/res/values-cs-rCZ/alpha_strings.xml +++ b/res/values-cs-rCZ/alpha_strings.xml @@ -30,13 +30,13 @@ Zobrazení Uživatelské rozhraní UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1279,73 +1279,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Duha - Vlastní - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Duha + Vlastní + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + levé + pravé + Auto-collapse timeout diff --git a/res/values-de-rDE/alpha_strings.xml b/res/values-de-rDE/alpha_strings.xml index 48a4ebc1a..3ee2e0819 100644 --- a/res/values-de-rDE/alpha_strings.xml +++ b/res/values-de-rDE/alpha_strings.xml @@ -30,13 +30,13 @@ Bildschirm Benutzeroberfläche UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Strichbreite - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Regenbogen - Benutzerdefiniert - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Regenbogen + Benutzerdefiniert + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Linker Rand + Rechter Rand + Auto-collapse timeout diff --git a/res/values-el-rGR/alpha_strings.xml b/res/values-el-rGR/alpha_strings.xml index 8444cfe01..31c248058 100644 --- a/res/values-el-rGR/alpha_strings.xml +++ b/res/values-el-rGR/alpha_strings.xml @@ -30,13 +30,13 @@ Εμφάνιση Περιβάλλον χρήστη UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Ουράνιο τόξο - Προσαρμοσμένο - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Ουράνιο τόξο + Προσαρμοσμένο + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Αριστερά + Δεξιά + Auto-collapse timeout diff --git a/res/values-es-rES/alpha_strings.xml b/res/values-es-rES/alpha_strings.xml index 9820dfbd9..7dfbfa18c 100644 --- a/res/values-es-rES/alpha_strings.xml +++ b/res/values-es-rES/alpha_strings.xml @@ -30,13 +30,13 @@ Pantalla Interfaz de usuario UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1272,73 +1272,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Ancho del trazo - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Arcoiris - Personalizado - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Arcoiris + Personalizado + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Izquierda + Derecha + Auto-collapse timeout diff --git a/res/values-fr-rFR/alpha_strings.xml b/res/values-fr-rFR/alpha_strings.xml index f35b304fc..b54003768 100644 --- a/res/values-fr-rFR/alpha_strings.xml +++ b/res/values-fr-rFR/alpha_strings.xml @@ -30,13 +30,13 @@ Affichage Interface utilisateur UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1272,73 +1272,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Arc-en-ciel - Personnalisée - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Arc-en-ciel + Personnalisée + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + gauche + droit + Auto-collapse timeout diff --git a/res/values-hi-rIN/alpha_strings.xml b/res/values-hi-rIN/alpha_strings.xml index 7f2937433..54482925c 100644 --- a/res/values-hi-rIN/alpha_strings.xml +++ b/res/values-hi-rIN/alpha_strings.xml @@ -30,13 +30,13 @@ Display User Interface UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Rainbow - Custom - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Rainbow + Custom + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Left + Right + Auto-collapse timeout diff --git a/res/values-hu-rHU/alpha_strings.xml b/res/values-hu-rHU/alpha_strings.xml index 6e3af9150..4e8dcc36c 100644 --- a/res/values-hu-rHU/alpha_strings.xml +++ b/res/values-hu-rHU/alpha_strings.xml @@ -30,13 +30,13 @@ Kijelző Felhasználói felület Kezelőfelület - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1273,73 +1273,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Körvonal-szélesség - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Szivárvány - Egyéni - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Szivárvány + Egyéni + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Bal + Jobb + Auto-collapse timeout diff --git a/res/values-in-rID/alpha_strings.xml b/res/values-in-rID/alpha_strings.xml index 50f352c2b..23cd81136 100644 --- a/res/values-in-rID/alpha_strings.xml +++ b/res/values-in-rID/alpha_strings.xml @@ -30,13 +30,13 @@ Tampilan Antarmuka Pengguna Antarmuka - Monet, gaya, paket ikon - Ikon, jam, baterai, lalu lintas jaringan + Monet, styles + Icons, clock, battery, network traffic Ubin, tata letak, penggeser kecerahan Tombol perangkat keras dan menu daya Visualisasi, info cuaca, gaya jam Peringatan, pemberitahuan, lampu notifikasi - Volume bertahap, panel volume, getaran + Volume panel, vibration Ruang Game, pemalsuan, lain-lain. Tentang AlphaDroid @@ -1269,73 +1269,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Tebal garis - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Pelangi - Kustom - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Pelangi + Kustom + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Kiri + Kanan + Auto-collapse timeout diff --git a/res/values-it-rIT/alpha_strings.xml b/res/values-it-rIT/alpha_strings.xml index 37c55c454..9f35a522b 100644 --- a/res/values-it-rIT/alpha_strings.xml +++ b/res/values-it-rIT/alpha_strings.xml @@ -30,13 +30,13 @@ Schermo Interfaccia utente UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1272,73 +1272,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Spessore tratto - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Arcobaleno - Personalizzato - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Arcobaleno + Personalizzato + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Sinistra + Destra + Auto-collapse timeout diff --git a/res/values-pl-rPL/alpha_strings.xml b/res/values-pl-rPL/alpha_strings.xml index 43f0325be..29191e999 100644 --- a/res/values-pl-rPL/alpha_strings.xml +++ b/res/values-pl-rPL/alpha_strings.xml @@ -30,13 +30,13 @@ Ekran Interfejs użytkownika UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1279,73 +1279,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Szerokość obrysu - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Tęcza - Własny - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Tęcza + Własny + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Lewa + Prawa + Auto-collapse timeout diff --git a/res/values-pt-rBR/alpha_strings.xml b/res/values-pt-rBR/alpha_strings.xml index 6a95e629f..39129b591 100644 --- a/res/values-pt-rBR/alpha_strings.xml +++ b/res/values-pt-rBR/alpha_strings.xml @@ -30,13 +30,13 @@ Tela Interface do Usuário Interface do Usuário - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Largura do traço - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Arco-íris - Personalizado - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Arco-íris + Personalizado + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Esquerda + Direita + Auto-collapse timeout diff --git a/res/values-pt-rPT/alpha_strings.xml b/res/values-pt-rPT/alpha_strings.xml index f46230fa7..6dd370509 100644 --- a/res/values-pt-rPT/alpha_strings.xml +++ b/res/values-pt-rPT/alpha_strings.xml @@ -30,13 +30,13 @@ Ecrã Interface de utilizador Interface do utilizador - Monet, estilos, pacotes de ícones - Ícones, relógio, bateria, tráfego de rede + Monet, styles + Icons, clock, battery, network traffic Painéis, esquema, controle deslizante de brilho Botões físicos e menu de energia Modo suspensão, pulsação, UDFPS, tempo Alertas, notificações heads-up, luzes - Níveis de volume, painel de volume, vibração + Volume panel, vibration Espaço de Jogos, máscara de integridade, vários. Acerca de AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Espessura do traçado - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Arco-íris - Personalizada - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Arco-íris + Personalizada + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Esquerda + Direita + Auto-collapse timeout diff --git a/res/values-ro-rRO/alpha_strings.xml b/res/values-ro-rRO/alpha_strings.xml index e1068db8a..9d4260acb 100644 --- a/res/values-ro-rRO/alpha_strings.xml +++ b/res/values-ro-rRO/alpha_strings.xml @@ -30,13 +30,13 @@ Afișaj Interfață utilizator UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1274,73 +1274,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Lățimea conturului - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Curcubeu - Personalizat - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Curcubeu + Personalizat + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Stânga + Drepta + Auto-collapse timeout diff --git a/res/values-ru-rRU/alpha_strings.xml b/res/values-ru-rRU/alpha_strings.xml index c3170a4b2..5c75acd86 100644 --- a/res/values-ru-rRU/alpha_strings.xml +++ b/res/values-ru-rRU/alpha_strings.xml @@ -30,13 +30,13 @@ Экран Пользовательский интерфейс UI - Моне, стили, наборы иконок - Значки, часы, батарея, сетевой трафик + Monet, styles + Icons, clock, battery, network traffic Плитки, расположение элементов, ползунок яркости Аппаратные кнопки и меню питания Режим сна, импульсный режим, UDFPS, погода Предупреждения, всплывающие уведомления, световые сигналы - Шаги регулировки громкости, панель регулировки громкости, вибрация + Volume panel, vibration Игровое пространство, подмена, прочее. О AlphaDroid @@ -1277,73 +1277,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Толщина линии - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Радуга - Свой - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Радуга + Свой + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + слева + справа + Auto-collapse timeout diff --git a/res/values-sq-rAL/alpha_strings.xml b/res/values-sq-rAL/alpha_strings.xml index 134d87a52..2767923fd 100644 --- a/res/values-sq-rAL/alpha_strings.xml +++ b/res/values-sq-rAL/alpha_strings.xml @@ -30,13 +30,13 @@ Display User Interface UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Stroke width - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Rainbow - Custom - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Rainbow + Custom + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Left + Right + Auto-collapse timeout diff --git a/res/values-tr-rTR/alpha_strings.xml b/res/values-tr-rTR/alpha_strings.xml index c31ff914b..0aa070a6d 100644 --- a/res/values-tr-rTR/alpha_strings.xml +++ b/res/values-tr-rTR/alpha_strings.xml @@ -30,13 +30,13 @@ Ekran Arayüz Arayüz - Monet, styles, icon packs - Simgeler, saat, pil, ağ trafiği + Monet, styles + Icons, clock, battery, network traffic Kutucuklar, düzen, parlaklık kaydırıcısı Donanım düğmeleri ve güç menüsü Doze, pulse, UDFPS, hava durumu Uyarılar, ön uyarı, ışıklar - Ses seviyesi kademeleri, ses paneli, titreşim + Volume panel, vibration Oyun alanı, sahtekarlık, çeşitli konular. AlphaDroid Hakkında @@ -1271,73 +1271,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Vurgu genişliği - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Gökkuşağı - Özel - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Gökkuşağı + Özel + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Sol + Sağ + Auto-collapse timeout diff --git a/res/values-vi-rVN/alpha_strings.xml b/res/values-vi-rVN/alpha_strings.xml index efb51be00..e3eefc534 100644 --- a/res/values-vi-rVN/alpha_strings.xml +++ b/res/values-vi-rVN/alpha_strings.xml @@ -30,13 +30,13 @@ Hiển thị Giao diện người dùng UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1270,73 +1270,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - Độ rộng viền - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - Cầu vồng - Tùy chỉnh - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + Cầu vồng + Tùy chỉnh + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + Trái + Phải + Auto-collapse timeout diff --git a/res/values-zh-rCN/alpha_strings.xml b/res/values-zh-rCN/alpha_strings.xml index 6fe7b93e4..adcfceb0d 100644 --- a/res/values-zh-rCN/alpha_strings.xml +++ b/res/values-zh-rCN/alpha_strings.xml @@ -30,13 +30,13 @@ 显示 用户界面 界面 - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1270,73 +1270,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - 边框宽度 - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - 彩虹 - 自定义 - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + 彩虹 + 自定义 + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + 左侧 + 右侧 + Auto-collapse timeout diff --git a/res/values-zh-rTW/alpha_strings.xml b/res/values-zh-rTW/alpha_strings.xml index 5a83ecf15..5fb1f9b81 100644 --- a/res/values-zh-rTW/alpha_strings.xml +++ b/res/values-zh-rTW/alpha_strings.xml @@ -30,13 +30,13 @@ 顯示 介面 UI - Monet, styles, icon packs - Icons, clock, battery, netowrk traffic + Monet, styles + Icons, clock, battery, network traffic Tiles, layout, brightness slider Hardware buttons and power menu Doze, pulse, UDFPS, weather Alerts, heads up, lights - Volume steps, volume panel, vibration + Volume panel, vibration Game Space, spoofing, misc. About AlphaDroid @@ -1268,73 +1268,32 @@ The progress bar dynamically switches between media and download states, ensurin Reset to defaults Reset all styles Reset all style parameters to defaults - + Cutout Progress Ring Show progress ring around punch hole - Enable cutout progress ring - Show a progress ring around the camera cutout during downloads + + Features Appearance - Behaviour - Background ring - Finish animation - Ring geometry - Labels - Download count badge - Ring custom color - Error color - Finish flash color - Background ring color - Ring opacity - 線條粗細 - Ring gap (cutout clearance) - Clockwise direction - Fill the ring clockwise; disable for counter-clockwise - Minimum display time - Keep ring visible for a minimum duration so brief downloads don\'t flash - Minimum duration - Progress easing - Show background ring - Draw a faint full ring behind the progress arc - Background ring opacity - Finish animation style - Hold duration - Exit duration - Use flash color on finish - Briefly flash the ring with the finish flash color when complete - Completion pulse - Brief brightness pulse before the finish animation - Capsule / pill mode - Use a pill-shaped path renderer (for elongated cutouts) - Horizontal scale - Vertical scale - Horizontal offset - Vertical offset - Show percentage - Display current download progress as a percentage label - Percentage text size - Bold percentage - Percentage position - Show filename - Display the name of the file being downloaded - Filename text size - Bold filename - Filename position - Max filename length - Filename truncation - Show download count badge - Show a pill badge with the number of active downloads - Badge text size - Badge horizontal offset - Badge vertical offset - Ring color - Choose color - Accent - 彩虹 - 自訂 - - Charging ring + Expanded mode + + Enable download progress ring Show charging ring - Display battery level as a symmetric ring around the cutout while charging Charging pulse animation Animate a repeating pulse from center outward while charging + + Ring color mode + Accent + 彩虹 + 自訂 + Custom ring color + Ring thickness + Show background track + + Compact layout + Wrap around the camera cutout instead of dropping below it + Island alignment + Center split + 左側 + 右側 + Auto-collapse timeout From 1a3e68b0fb5e54200aa68ef4a5fefa5c2593e021 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:58:09 +0000 Subject: [PATCH 07/47] New translations alpha_strings.xml (Indonesian) --- res/values-in-rID/alpha_strings.xml | 150 ++++++++++++++-------------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/res/values-in-rID/alpha_strings.xml b/res/values-in-rID/alpha_strings.xml index 23cd81136..967eae8ea 100644 --- a/res/values-in-rID/alpha_strings.xml +++ b/res/values-in-rID/alpha_strings.xml @@ -30,13 +30,13 @@ Tampilan Antarmuka Pengguna Antarmuka - Monet, styles - Icons, clock, battery, network traffic + Monet, gaya + Ikon, jam, baterai, lalu lintas jaringan Ubin, tata letak, penggeser kecerahan Tombol perangkat keras dan menu daya Visualisasi, info cuaca, gaya jam Peringatan, pemberitahuan, lampu notifikasi - Volume panel, vibration + Panel volume, getaran Ruang Game, pemalsuan, lain-lain. Tentang AlphaDroid @@ -816,19 +816,19 @@ Baris Setelan Cepat (lanskap) Latar belakang keping - Select custom background chip behind clock - Solid color accent + Pilih chip latar belakang kustom di belakang jam + Aksen warna padat Garis besar - Solid color accent gradient - Solid gradient side - Solid accent gradient sharp - Gradient void - Neumorph gradient - Sharp gradient stroke - Accent transperent - Gradient light - Sharp gradient corner - Gradient void light + Aksen warna padat bergradasi + Gradien samping padat + Gradien warna aksen padat dan tajam + Gradien ruang kosong + Gradien neumorph + Gradien garis tajam + Aksen transparan + Gradien terang + Gradien pojok tajam + Gradien ruang kosong terang Pengaturan cuaca Atur paket ikon dan servis cuaca @@ -1079,7 +1079,7 @@ Beberapa layar mungkin tampak mati. Retro VU meter Gelombang minimal Kelap-kelip - Matrix + Matriks Pemberitahuan transparan Set translucent background for notifications @@ -1099,34 +1099,34 @@ Beberapa layar mungkin tampak mati. Tidak ada sertifikat yang ditentukan. Koneksi Anda tidak akan bersifat pribadi. - Multi audio focus - Allow multiple apps to play audio simultaneously + Fokus audio multi + Izinkan beberapa aplikasi memutar audio secara bersamaan - Clear query - Language picker page - Search regions - Search region page + Bersihkan kueri + Halaman pemilihan bahasa + Telusuri wilayah + Halaman pencarian wilayah - Mobile data usage cycle type - Monthly - Weekly - Daily - Less than 1 hour left + Jenis siklus penggunaan data seluler + Bulanan + Mingguan + Harian + Kurang dari 1 jam lagi {count, plural, - =1 {# hour left} - other {# hours left} + =1 {# satu jam tersisa} + other {# beberapa jam lagi} } - Usage cycle reset day - Day of each week:\n1 = Monday - Usage cycle reset hour - Hour of each day: + Reset ulang hari siklus penggunaan + Hari dalam seminggu:\n1 = Senin + Reset ulang jam siklus penggunaan + Jam setiap hari: - Status bar action chip - Customize action chip to show progress indicator - Ongoing action chip - Display progress indicator for ongoing actions like downloads - Media progress - Display media playback progress + Chip aksi bilah status + Sesuaikan chip aksi untuk menampilkan indikator kemajuan + Chip aksi berkelanjutan + Tampilkan indikator kemajuan untuk tindakan yang sedang berlangsung seperti pengunduhan + Kemajuan media + Menampilkan kemajuan pemutaran media \"The status bar action chip provides real-time updates for both media playback and active downloads/uploads. Media Progress: @@ -1144,12 +1144,12 @@ Download/Upload Progress: The progress bar dynamically switches between media and download states, ensuring you always have the most relevant information at a glance.\" - Compact progress indicator - Use a compact circular indicator for ongoing actions - Media chip background color - System accent color - App icon color - Album art color + Indikator kemajuan ringkas + Gunakan indikator melingkar yang ringkas untuk tindakan yang sedang berlangsung + Warna latar belakang chip media + Warna aksen sistem + Warna ikon aplikasi + Warna sampul album Pengaturan Alpha @@ -1200,7 +1200,7 @@ The progress bar dynamically switches between media and download states, ensurin Tim AlphaDroid Donasi untuk mendukung server hosting, keaktifan situs serta pemanajemenan secara keseluruhan - AlphaDroid build server provider. Tap to visit their channel. + AlphaDroid adalah penyedia server build. Ketuk untuk mengunjungi saluran mereka. Pembaruan Periksa dan unduh pembaruan terbaru @@ -1243,7 +1243,7 @@ The progress bar dynamically switches between media and download states, ensurin Mesin tampilan Mesin Tampilan Realitas - Boost standard Android color modes with custom display enhancements + Tingkatkan mode warna Android standar dengan peningkatan tampilan khusus Mesin X-Realita Tampilan Jelas Tampilan Triluminous @@ -1252,8 +1252,8 @@ The progress bar dynamically switches between media and download states, ensurin Abaikan tanda jendela aman Hapus batasan keamanan tangkapan layar dan rekaman layar. Hal ini mungkin praktis dalam beberapa kasus tetapi dapat menyebabkan kebocoran privasi. - Hide screen capture status - Hide screen capture status from apps + Sembunyikan status tangkapan layar + Sembunyikan status tangkapan layar dari aplikasi Sembunyikan status developer Sembunyikan status developer dari aplikasi @@ -1262,39 +1262,39 @@ The progress bar dynamically switches between media and download states, ensurin Ikon notifikasi Maksimal ikon notifikasi terlihat di bilah status - UI Style - Customize QS tiles and brightness slider appearance - Light theme - Dark theme - Reset to defaults - Reset all styles - Reset all style parameters to defaults + Gaya Antarmuka Pengguna + Sesuaikan tampilan ubin Setelan Cepat dan penggeser kecerahan + Tema terang + Tema gelap + Setel ulang ke bawaan + Atur ulang semua gaya + Atur ulang semua parameter gaya ke nilai default - Cutout Progress Ring - Show progress ring around punch hole + Cincin Kemajuan + Tunjukkan lingkaran kemajuan di sekitar lubang punch - Features - Appearance - Expanded mode + Fitur + Penampilan + Mode diperluas - Enable download progress ring - Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging + Aktifkan cincin kemajuan unduhan + Tampilkan cincin pengisian daya + Animasi denyut pengisian + Animasikan denyut berulang dari tengah ke luar saat mengisi daya - Ring color mode - Accent + Mode warna cincin + Aksen Pelangi Kustom - Custom ring color - Ring thickness - Show background track + Warna cincin kustom + Ketebalan cincin + Tampilkan trek latar belakang - Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment - Center split + Tata letak ringkas + Lilitkan di sekeliling lubang kamera, jangan sampai jatuh di bawahnya + Penataan Island + Belahan tengah Kiri Kanan - Auto-collapse timeout + Batas waktu penutupan otomatis From dcc3098c6b00ea0477369860bca7772c01c6a3ec Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:21 +0000 Subject: [PATCH 08/47] New translations alpha_strings.xml (French) --- res/values-fr-rFR/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-fr-rFR/alpha_strings.xml b/res/values-fr-rFR/alpha_strings.xml index b54003768..a5451ba21 100644 --- a/res/values-fr-rFR/alpha_strings.xml +++ b/res/values-fr-rFR/alpha_strings.xml @@ -1282,8 +1282,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1292,6 +1290,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 65f839879df0a0dc4ecc6f36a8fe5fb16e7193db Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:23 +0000 Subject: [PATCH 09/47] New translations alpha_strings.xml (Spanish) --- res/values-es-rES/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-es-rES/alpha_strings.xml b/res/values-es-rES/alpha_strings.xml index 7dfbfa18c..7370ded70 100644 --- a/res/values-es-rES/alpha_strings.xml +++ b/res/values-es-rES/alpha_strings.xml @@ -1282,8 +1282,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1292,6 +1290,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 8d56397ad92a9a6e307bba0c6ed9af3f2101393b Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:24 +0000 Subject: [PATCH 10/47] New translations alpha_strings.xml (Bulgarian) --- res/values-bg-rBG/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-bg-rBG/alpha_strings.xml b/res/values-bg-rBG/alpha_strings.xml index 51c943204..71d9819d2 100644 --- a/res/values-bg-rBG/alpha_strings.xml +++ b/res/values-bg-rBG/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 71dc50d961df376aab77ecb3f989949f14ccc164 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:25 +0000 Subject: [PATCH 11/47] New translations alpha_strings.xml (Czech) --- res/values-cs-rCZ/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-cs-rCZ/alpha_strings.xml b/res/values-cs-rCZ/alpha_strings.xml index ceac5fbee..1f15142db 100644 --- a/res/values-cs-rCZ/alpha_strings.xml +++ b/res/values-cs-rCZ/alpha_strings.xml @@ -1289,8 +1289,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1299,6 +1297,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 9036af9fe066e599934acd7a16e7fc42f4819995 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:26 +0000 Subject: [PATCH 12/47] New translations alpha_strings.xml (German) --- res/values-de-rDE/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-de-rDE/alpha_strings.xml b/res/values-de-rDE/alpha_strings.xml index 3ee2e0819..7d73417de 100644 --- a/res/values-de-rDE/alpha_strings.xml +++ b/res/values-de-rDE/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From a4a567e5f5ae3f0220b4c03cae15bd2cd1749d1b Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:28 +0000 Subject: [PATCH 13/47] New translations alpha_strings.xml (Greek) --- res/values-el-rGR/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-el-rGR/alpha_strings.xml b/res/values-el-rGR/alpha_strings.xml index 31c248058..34b750215 100644 --- a/res/values-el-rGR/alpha_strings.xml +++ b/res/values-el-rGR/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 7d212fdd199b5467d7bdc7e2b3f625e6576609c8 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:29 +0000 Subject: [PATCH 14/47] New translations alpha_strings.xml (Hungarian) --- res/values-hu-rHU/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-hu-rHU/alpha_strings.xml b/res/values-hu-rHU/alpha_strings.xml index 4e8dcc36c..223aa4960 100644 --- a/res/values-hu-rHU/alpha_strings.xml +++ b/res/values-hu-rHU/alpha_strings.xml @@ -1283,8 +1283,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1293,6 +1291,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From c60d6b7b71aec264cfe13bda916974a3505a77b6 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:31 +0000 Subject: [PATCH 15/47] New translations alpha_strings.xml (Italian) --- res/values-it-rIT/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-it-rIT/alpha_strings.xml b/res/values-it-rIT/alpha_strings.xml index 9f35a522b..6b0cfa65a 100644 --- a/res/values-it-rIT/alpha_strings.xml +++ b/res/values-it-rIT/alpha_strings.xml @@ -1282,8 +1282,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1292,6 +1290,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 29cd11147a61b7b7bc4f74482e70cd3dfb0af286 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:32 +0000 Subject: [PATCH 16/47] New translations alpha_strings.xml (Polish) --- res/values-pl-rPL/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-pl-rPL/alpha_strings.xml b/res/values-pl-rPL/alpha_strings.xml index 29191e999..810d3c954 100644 --- a/res/values-pl-rPL/alpha_strings.xml +++ b/res/values-pl-rPL/alpha_strings.xml @@ -1289,8 +1289,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1299,6 +1297,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 2e286af7d5907a0f9765d9ed628cd42e219e6e37 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:33 +0000 Subject: [PATCH 17/47] New translations alpha_strings.xml (Portuguese) --- res/values-pt-rPT/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-pt-rPT/alpha_strings.xml b/res/values-pt-rPT/alpha_strings.xml index 6dd370509..5f09b0074 100644 --- a/res/values-pt-rPT/alpha_strings.xml +++ b/res/values-pt-rPT/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 4a47ba6f40bc0b8272c9a7ce9c188cc7dd305462 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:34 +0000 Subject: [PATCH 18/47] New translations alpha_strings.xml (Russian) --- res/values-ru-rRU/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-ru-rRU/alpha_strings.xml b/res/values-ru-rRU/alpha_strings.xml index 5c75acd86..cf82b49ab 100644 --- a/res/values-ru-rRU/alpha_strings.xml +++ b/res/values-ru-rRU/alpha_strings.xml @@ -1287,8 +1287,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1297,6 +1295,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 2620a9c4d47685c63e9e9ef1633aa492df66b76e Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:35 +0000 Subject: [PATCH 19/47] New translations alpha_strings.xml (Albanian) --- res/values-sq-rAL/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-sq-rAL/alpha_strings.xml b/res/values-sq-rAL/alpha_strings.xml index 2767923fd..905f822e1 100644 --- a/res/values-sq-rAL/alpha_strings.xml +++ b/res/values-sq-rAL/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 4ad133bdc2a271850dc370fdda19982113af3e89 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:37 +0000 Subject: [PATCH 20/47] New translations alpha_strings.xml (Turkish) --- res/values-tr-rTR/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-tr-rTR/alpha_strings.xml b/res/values-tr-rTR/alpha_strings.xml index 0aa070a6d..0a8a06c21 100644 --- a/res/values-tr-rTR/alpha_strings.xml +++ b/res/values-tr-rTR/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 07e18dc3ab162d87b5c72e2a36f8c84d5fdfcfa2 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:38 +0000 Subject: [PATCH 21/47] New translations alpha_strings.xml (Chinese Simplified) --- res/values-zh-rCN/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-zh-rCN/alpha_strings.xml b/res/values-zh-rCN/alpha_strings.xml index adcfceb0d..ee7a61b53 100644 --- a/res/values-zh-rCN/alpha_strings.xml +++ b/res/values-zh-rCN/alpha_strings.xml @@ -1280,8 +1280,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1290,6 +1288,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From f993930b8e7da91099caa31f2a0b70a1b5cd20d6 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:39 +0000 Subject: [PATCH 22/47] New translations alpha_strings.xml (Chinese Traditional) --- res/values-zh-rTW/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-zh-rTW/alpha_strings.xml b/res/values-zh-rTW/alpha_strings.xml index 5fb1f9b81..2139ec7f9 100644 --- a/res/values-zh-rTW/alpha_strings.xml +++ b/res/values-zh-rTW/alpha_strings.xml @@ -1278,8 +1278,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1288,6 +1286,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 31929982fb57ca014ce45459a055bcb73e327e9b Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:41 +0000 Subject: [PATCH 23/47] New translations alpha_strings.xml (Vietnamese) --- res/values-vi-rVN/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-vi-rVN/alpha_strings.xml b/res/values-vi-rVN/alpha_strings.xml index e3eefc534..70a7a1b3c 100644 --- a/res/values-vi-rVN/alpha_strings.xml +++ b/res/values-vi-rVN/alpha_strings.xml @@ -1280,8 +1280,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1290,6 +1288,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 4bb7174e1feabeeed63ab662d5268c376500eba3 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:42 +0000 Subject: [PATCH 24/47] New translations alpha_strings.xml (Portuguese, Brazilian) --- res/values-pt-rBR/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-pt-rBR/alpha_strings.xml b/res/values-pt-rBR/alpha_strings.xml index 39129b591..52db6bb2c 100644 --- a/res/values-pt-rBR/alpha_strings.xml +++ b/res/values-pt-rBR/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From b21eb48531ec067cd14feff62faa8f6fb0af551f Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:43 +0000 Subject: [PATCH 25/47] New translations alpha_strings.xml (Indonesian) --- res/values-in-rID/alpha_strings.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/res/values-in-rID/alpha_strings.xml b/res/values-in-rID/alpha_strings.xml index 967eae8ea..c8365d367 100644 --- a/res/values-in-rID/alpha_strings.xml +++ b/res/values-in-rID/alpha_strings.xml @@ -1278,9 +1278,7 @@ The progress bar dynamically switches between media and download states, ensurin Mode diperluas Aktifkan cincin kemajuan unduhan - Tampilkan cincin pengisian daya - Animasi denyut pengisian - Animasikan denyut berulang dari tengah ke luar saat mengisi daya + Show charging ring Mode warna cincin Aksen @@ -1289,6 +1287,8 @@ The progress bar dynamically switches between media and download states, ensurin Warna cincin kustom Ketebalan cincin Tampilkan trek latar belakang + Animasi denyut pengisian + Animasikan denyut berulang dari tengah ke luar saat mengisi daya Tata letak ringkas Lilitkan di sekeliling lubang kamera, jangan sampai jatuh di bawahnya From 40d7fb25c20695b66076458f5b09a94f1c50cbea Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:45 +0000 Subject: [PATCH 26/47] New translations alpha_strings.xml (Hindi) --- res/values-hi-rIN/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-hi-rIN/alpha_strings.xml b/res/values-hi-rIN/alpha_strings.xml index 54482925c..5f9df82ef 100644 --- a/res/values-hi-rIN/alpha_strings.xml +++ b/res/values-hi-rIN/alpha_strings.xml @@ -1281,8 +1281,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1291,6 +1289,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 0592ea26cac67621103a6c7d87f21ad59bc27c6f Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:20:46 +0000 Subject: [PATCH 27/47] New translations alpha_strings.xml (Romanian) --- res/values-ro-rRO/alpha_strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values-ro-rRO/alpha_strings.xml b/res/values-ro-rRO/alpha_strings.xml index 9d4260acb..8fb0243d7 100644 --- a/res/values-ro-rRO/alpha_strings.xml +++ b/res/values-ro-rRO/alpha_strings.xml @@ -1284,8 +1284,6 @@ The progress bar dynamically switches between media and download states, ensurin Enable download progress ring Show charging ring - Charging pulse animation - Animate a repeating pulse from center outward while charging Ring color mode Accent @@ -1294,6 +1292,8 @@ The progress bar dynamically switches between media and download states, ensurin Custom ring color Ring thickness Show background track + Charging pulse animation + Animate a repeating pulse from center outward while charging Compact layout Wrap around the camera cutout instead of dropping below it From 37f99d67edff2b832ceb0a831ee16680c6969439 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:38 +0000 Subject: [PATCH 28/47] New translations alpha_strings.xml (French) --- res/values-fr-rFR/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-fr-rFR/alpha_strings.xml b/res/values-fr-rFR/alpha_strings.xml index a5451ba21..465c853e2 100644 --- a/res/values-fr-rFR/alpha_strings.xml +++ b/res/values-fr-rFR/alpha_strings.xml @@ -1138,7 +1138,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1288,16 +1288,18 @@ The progress bar dynamically switches between media and download states, ensurin Arc-en-ciel Personnalisée Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split gauche droit + Opacité de l\'arrière-plan Auto-collapse timeout From e0602237cfe20431161f502ae4eb0159892e8f82 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:39 +0000 Subject: [PATCH 29/47] New translations alpha_strings.xml (Spanish) --- res/values-es-rES/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-es-rES/alpha_strings.xml b/res/values-es-rES/alpha_strings.xml index 7370ded70..7623671f7 100644 --- a/res/values-es-rES/alpha_strings.xml +++ b/res/values-es-rES/alpha_strings.xml @@ -1138,7 +1138,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1288,16 +1288,18 @@ The progress bar dynamically switches between media and download states, ensurin Arcoiris Personalizado Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Izquierda Derecha + Opacidad del fondo Auto-collapse timeout From 6a413257a367af4d63b9f518b88bc188839ad803 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:40 +0000 Subject: [PATCH 30/47] New translations alpha_strings.xml (Bulgarian) --- res/values-bg-rBG/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-bg-rBG/alpha_strings.xml b/res/values-bg-rBG/alpha_strings.xml index 71d9819d2..625bf71f6 100644 --- a/res/values-bg-rBG/alpha_strings.xml +++ b/res/values-bg-rBG/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Дъга По избор Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Ляво Дясно + Прозрачност на фона Auto-collapse timeout From f7e1ddabdd4dcfaf5b4b8a3a296e382ff34ff978 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:42 +0000 Subject: [PATCH 31/47] New translations alpha_strings.xml (Czech) --- res/values-cs-rCZ/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-cs-rCZ/alpha_strings.xml b/res/values-cs-rCZ/alpha_strings.xml index 1f15142db..f8a19bdcb 100644 --- a/res/values-cs-rCZ/alpha_strings.xml +++ b/res/values-cs-rCZ/alpha_strings.xml @@ -1145,7 +1145,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1295,16 +1295,18 @@ The progress bar dynamically switches between media and download states, ensurin Duha Vlastní Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split levé pravé + Průhlednost pozadí Auto-collapse timeout From 2fa4219ae228343794b7ee2d1c06b615ec27e215 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:44 +0000 Subject: [PATCH 32/47] New translations alpha_strings.xml (German) --- res/values-de-rDE/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-de-rDE/alpha_strings.xml b/res/values-de-rDE/alpha_strings.xml index 7d73417de..833aa49dc 100644 --- a/res/values-de-rDE/alpha_strings.xml +++ b/res/values-de-rDE/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Regenbogen Benutzerdefiniert Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Linker Rand Rechter Rand + Hintergrunddeckkraft Auto-collapse timeout From 26029b3ea3f11b51abdfbb0e555fafc43a442248 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:46 +0000 Subject: [PATCH 33/47] New translations alpha_strings.xml (Greek) --- res/values-el-rGR/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-el-rGR/alpha_strings.xml b/res/values-el-rGR/alpha_strings.xml index 34b750215..359e5b20d 100644 --- a/res/values-el-rGR/alpha_strings.xml +++ b/res/values-el-rGR/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Ουράνιο τόξο Προσαρμοσμένο Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Αριστερά Δεξιά + Αδιαφάνεια φόντου Auto-collapse timeout From 9da5a33e9a5c97885df280c271b437369988a794 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:47 +0000 Subject: [PATCH 34/47] New translations alpha_strings.xml (Hungarian) --- res/values-hu-rHU/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-hu-rHU/alpha_strings.xml b/res/values-hu-rHU/alpha_strings.xml index 223aa4960..27f5c4a63 100644 --- a/res/values-hu-rHU/alpha_strings.xml +++ b/res/values-hu-rHU/alpha_strings.xml @@ -1139,7 +1139,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1289,16 +1289,18 @@ The progress bar dynamically switches between media and download states, ensurin Szivárvány Egyéni Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Bal Jobb + Háttérátlátszóság Auto-collapse timeout From 21e5038d618ffe581c572cc1a9e5cbc37a667503 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:49 +0000 Subject: [PATCH 35/47] New translations alpha_strings.xml (Italian) --- res/values-it-rIT/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-it-rIT/alpha_strings.xml b/res/values-it-rIT/alpha_strings.xml index 6b0cfa65a..eae6f7995 100644 --- a/res/values-it-rIT/alpha_strings.xml +++ b/res/values-it-rIT/alpha_strings.xml @@ -1138,7 +1138,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1288,16 +1288,18 @@ The progress bar dynamically switches between media and download states, ensurin Arcobaleno Personalizzato Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Sinistra Destra + Opacità sfondo Auto-collapse timeout From 2656b2049054f7914bd747e3ca0f7ba558a89055 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:50 +0000 Subject: [PATCH 36/47] New translations alpha_strings.xml (Polish) --- res/values-pl-rPL/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-pl-rPL/alpha_strings.xml b/res/values-pl-rPL/alpha_strings.xml index 810d3c954..962c423ad 100644 --- a/res/values-pl-rPL/alpha_strings.xml +++ b/res/values-pl-rPL/alpha_strings.xml @@ -1145,7 +1145,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1295,16 +1295,18 @@ The progress bar dynamically switches between media and download states, ensurin Tęcza Własny Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Lewa Prawa + Nieprzezroczystość tła Auto-collapse timeout From 5009e25a3408075a87396d2249494f8903f11842 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:51 +0000 Subject: [PATCH 37/47] New translations alpha_strings.xml (Portuguese) --- res/values-pt-rPT/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-pt-rPT/alpha_strings.xml b/res/values-pt-rPT/alpha_strings.xml index 5f09b0074..3f9d9e1d2 100644 --- a/res/values-pt-rPT/alpha_strings.xml +++ b/res/values-pt-rPT/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Arco-íris Personalizada Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Esquerda Direita + Opacidade do fundo Auto-collapse timeout From 0079cc8ae5da1eb60439ffd5edf210ae122e567e Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:53 +0000 Subject: [PATCH 38/47] New translations alpha_strings.xml (Russian) --- res/values-ru-rRU/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-ru-rRU/alpha_strings.xml b/res/values-ru-rRU/alpha_strings.xml index cf82b49ab..473115759 100644 --- a/res/values-ru-rRU/alpha_strings.xml +++ b/res/values-ru-rRU/alpha_strings.xml @@ -1143,7 +1143,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1293,16 +1293,18 @@ The progress bar dynamically switches between media and download states, ensurin Радуга Свой Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split слева справа + Прозрачность фона Auto-collapse timeout From 83cf3f3dacc6816612fcdd7998adb72fbe6f2ea9 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:54 +0000 Subject: [PATCH 39/47] New translations alpha_strings.xml (Albanian) --- res/values-sq-rAL/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-sq-rAL/alpha_strings.xml b/res/values-sq-rAL/alpha_strings.xml index 905f822e1..c78532b6c 100644 --- a/res/values-sq-rAL/alpha_strings.xml +++ b/res/values-sq-rAL/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Rainbow Custom Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Left Right + Background opacity Auto-collapse timeout From 8a4c1cf70c9bca837413b9e25ec21c54da37232b Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:55 +0000 Subject: [PATCH 40/47] New translations alpha_strings.xml (Turkish) --- res/values-tr-rTR/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-tr-rTR/alpha_strings.xml b/res/values-tr-rTR/alpha_strings.xml index 0a8a06c21..aace49e00 100644 --- a/res/values-tr-rTR/alpha_strings.xml +++ b/res/values-tr-rTR/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Gökkuşağı Özel Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Sol Sağ + Arka plan şeffaflığı Auto-collapse timeout From 646f753d23473f6eb85480ffbd47985d1259b4d1 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:57 +0000 Subject: [PATCH 41/47] New translations alpha_strings.xml (Chinese Simplified) --- res/values-zh-rCN/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-zh-rCN/alpha_strings.xml b/res/values-zh-rCN/alpha_strings.xml index ee7a61b53..baffd6042 100644 --- a/res/values-zh-rCN/alpha_strings.xml +++ b/res/values-zh-rCN/alpha_strings.xml @@ -1136,7 +1136,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1286,16 +1286,18 @@ The progress bar dynamically switches between media and download states, ensurin 彩虹 自定义 Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split 左侧 右侧 + 背景不透明度 Auto-collapse timeout From eec76d1c25909c8d0d0e90db004115d1d57a1b77 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:58 +0000 Subject: [PATCH 42/47] New translations alpha_strings.xml (Chinese Traditional) --- res/values-zh-rTW/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-zh-rTW/alpha_strings.xml b/res/values-zh-rTW/alpha_strings.xml index 2139ec7f9..00645fe3b 100644 --- a/res/values-zh-rTW/alpha_strings.xml +++ b/res/values-zh-rTW/alpha_strings.xml @@ -1134,7 +1134,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1284,16 +1284,18 @@ The progress bar dynamically switches between media and download states, ensurin 彩虹 自訂 Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split 左側 右側 + 背景透明度 Auto-collapse timeout From d5dd037396e79de03f30f1fb2135d19c83ebe000 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:35:59 +0000 Subject: [PATCH 43/47] New translations alpha_strings.xml (Vietnamese) --- res/values-vi-rVN/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-vi-rVN/alpha_strings.xml b/res/values-vi-rVN/alpha_strings.xml index 70a7a1b3c..7a2bdcb8b 100644 --- a/res/values-vi-rVN/alpha_strings.xml +++ b/res/values-vi-rVN/alpha_strings.xml @@ -1136,7 +1136,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1286,16 +1286,18 @@ The progress bar dynamically switches between media and download states, ensurin Cầu vồng Tùy chỉnh Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Trái Phải + Độ mờ của nền Auto-collapse timeout From 27a57b21e36044eaea265e80c7e6a40ae89d32d0 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:36:00 +0000 Subject: [PATCH 44/47] New translations alpha_strings.xml (Portuguese, Brazilian) --- res/values-pt-rBR/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-pt-rBR/alpha_strings.xml b/res/values-pt-rBR/alpha_strings.xml index 52db6bb2c..74d5fb845 100644 --- a/res/values-pt-rBR/alpha_strings.xml +++ b/res/values-pt-rBR/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Arco-íris Personalizado Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Esquerda Direita + Opacidade de fundo Auto-collapse timeout From cc3f782e5e03f790ae50fd31dec52bed1b920f76 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:36:02 +0000 Subject: [PATCH 45/47] New translations alpha_strings.xml (Indonesian) --- res/values-in-rID/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-in-rID/alpha_strings.xml b/res/values-in-rID/alpha_strings.xml index c8365d367..e8e4e74c9 100644 --- a/res/values-in-rID/alpha_strings.xml +++ b/res/values-in-rID/alpha_strings.xml @@ -1135,7 +1135,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1285,16 +1285,18 @@ The progress bar dynamically switches between media and download states, ensurin Pelangi Kustom Warna cincin kustom + Ring opacity Ketebalan cincin Tampilkan trek latar belakang Animasi denyut pengisian Animasikan denyut berulang dari tengah ke luar saat mengisi daya Tata letak ringkas - Lilitkan di sekeliling lubang kamera, jangan sampai jatuh di bawahnya - Penataan Island + Wrap around the camera cutout + Compact layout alignment Belahan tengah Kiri Kanan + Transparansi Latar Belakang Batas waktu penutupan otomatis From 9451b22af4e8db5ba60c1549526998cd690f9bb4 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:36:03 +0000 Subject: [PATCH 46/47] New translations alpha_strings.xml (Hindi) --- res/values-hi-rIN/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-hi-rIN/alpha_strings.xml b/res/values-hi-rIN/alpha_strings.xml index 5f9df82ef..344ab7d3d 100644 --- a/res/values-hi-rIN/alpha_strings.xml +++ b/res/values-hi-rIN/alpha_strings.xml @@ -1137,7 +1137,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1287,16 +1287,18 @@ The progress bar dynamically switches between media and download states, ensurin Rainbow Custom Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Left Right + Background opacity Auto-collapse timeout From a4c3c3eab0edbf8c2a369be425b5e1bdb667eef3 Mon Sep 17 00:00:00 2001 From: elpaablo <63260027+elpaablo@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:36:04 +0000 Subject: [PATCH 47/47] New translations alpha_strings.xml (Romanian) --- res/values-ro-rRO/alpha_strings.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/res/values-ro-rRO/alpha_strings.xml b/res/values-ro-rRO/alpha_strings.xml index 8fb0243d7..02dbf5665 100644 --- a/res/values-ro-rRO/alpha_strings.xml +++ b/res/values-ro-rRO/alpha_strings.xml @@ -1140,7 +1140,7 @@ Media Progress: • Double tap toggles play/pause. • Swipe left skips to the previous track. • Swipe right skips to the next track. -• Long press opens the media app. +• Long press opens the media app. Download/Upload Progress: • Shows progress for ongoing downloads and uploads. @@ -1290,16 +1290,18 @@ The progress bar dynamically switches between media and download states, ensurin Curcubeu Personalizat Custom ring color + Ring opacity Ring thickness Show background track Charging pulse animation Animate a repeating pulse from center outward while charging Compact layout - Wrap around the camera cutout instead of dropping below it - Island alignment + Wrap around the camera cutout + Compact layout alignment Center split Stânga Drepta + Opacitate fundal Auto-collapse timeout