Merge pull request #76 from cromefire/navbar

Improved default navbar coloring
This commit is contained in:
dkanada 2020-09-19 14:13:32 +09:00 committed by GitHub
commit 9063ecf678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 11 additions and 103 deletions

View file

@ -195,20 +195,6 @@ public class SettingsActivity extends AbsBaseActivity implements ColorChooserDia
return true; return true;
}); });
TwoStatePreference colorNavBar = findPreference(PreferenceUtil.COLORED_NAVIGATION_BAR);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
colorNavBar.setVisible(false);
} else {
colorNavBar.setChecked(ThemeStore.coloredNavigationBar(getActivity()));
colorNavBar.setOnPreferenceChangeListener((preference, newValue) -> {
ThemeStore.editTheme(getActivity())
.coloredNavigationBar((Boolean) newValue)
.commit();
getActivity().recreate();
return true;
});
}
final TwoStatePreference classicNotification = findPreference(PreferenceUtil.CLASSIC_NOTIFICATION); final TwoStatePreference classicNotification = findPreference(PreferenceUtil.CLASSIC_NOTIFICATION);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
classicNotification.setVisible(false); classicNotification.setVisible(false);

View file

@ -7,6 +7,7 @@ import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import androidx.annotation.ColorInt; import androidx.annotation.ColorInt;
import androidx.annotation.FloatRange; import androidx.annotation.FloatRange;
import androidx.core.graphics.ColorUtils;
import androidx.fragment.app.Fragment; import androidx.fragment.app.Fragment;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
@ -141,7 +142,7 @@ public abstract class AbsSlidingMusicPanelActivity extends AbsMusicServiceActivi
public void onPanelSlide(View panel, @FloatRange(from = 0, to = 1) float slideOffset) { public void onPanelSlide(View panel, @FloatRange(from = 0, to = 1) float slideOffset) {
setMiniPlayerAlphaProgress(slideOffset); setMiniPlayerAlphaProgress(slideOffset);
if (navigationBarColorAnimator != null) navigationBarColorAnimator.cancel(); if (navigationBarColorAnimator != null) navigationBarColorAnimator.cancel();
super.setNavigationbarColor((int) argbEvaluator.evaluate(slideOffset, navigationbarColor, playerFragment.getPaletteColor())); super.setNavigationbarColor(ColorUtils.blendARGB(navigationbarColor, playerFragment.getPaletteColor(), slideOffset));
} }
@Override @Override

View file

@ -69,11 +69,7 @@ public abstract class AbsThemeActivity extends ATHToolbarActivity {
} }
public void setNavigationbarColor(int color) { public void setNavigationbarColor(int color) {
if (ThemeStore.coloredNavigationBar(this)) { ATH.setNavigationbarColor(this, color);
ATH.setNavigationbarColor(this, color);
} else {
ATH.setNavigationbarColor(this, Color.BLACK);
}
} }
public void setNavigationbarColorAuto() { public void setNavigationbarColorAuto() {

View file

@ -176,7 +176,6 @@ public class CardPlayerFragment extends AbsPlayerFragment implements PlayerAlbum
} }
} }
@SuppressWarnings("ConstantConditions")
private void updateCurrentSong() { private void updateCurrentSong() {
impl.updateCurrentSong(MusicPlayerRemote.getCurrentSong()); impl.updateCurrentSong(MusicPlayerRemote.getCurrentSong());
} }
@ -243,7 +242,7 @@ public class CardPlayerFragment extends AbsPlayerFragment implements PlayerAlbum
@Override @Override
protected void toggleFavorite(Song song) { protected void toggleFavorite(Song song) {
super.toggleFavorite(song); super.toggleFavorite(song);
if (song.id == MusicPlayerRemote.getCurrentSong().id) { if (song.id.equals(MusicPlayerRemote.getCurrentSong().id)) {
if (song.favorite) { if (song.favorite) {
playerAlbumCoverFragment.showHeartAnimation(); playerAlbumCoverFragment.showHeartAnimation();
} }

View file

@ -176,7 +176,6 @@ public class FlatPlayerFragment extends AbsPlayerFragment implements PlayerAlbum
} }
} }
@SuppressWarnings("ConstantConditions")
private void updateCurrentSong() { private void updateCurrentSong() {
impl.updateCurrentSong(MusicPlayerRemote.getCurrentSong()); impl.updateCurrentSong(MusicPlayerRemote.getCurrentSong());
} }
@ -243,7 +242,7 @@ public class FlatPlayerFragment extends AbsPlayerFragment implements PlayerAlbum
@Override @Override
protected void toggleFavorite(Song song) { protected void toggleFavorite(Song song) {
super.toggleFavorite(song); super.toggleFavorite(song);
if (song.id == MusicPlayerRemote.getCurrentSong().id) { if (song.id.equals(MusicPlayerRemote.getCurrentSong().id)) {
if (song.favorite) { if (song.favorite) {
playerAlbumCoverFragment.showHeartAnimation(); playerAlbumCoverFragment.showHeartAnimation();
} }

View file

@ -59,7 +59,6 @@ public final class PreferenceUtil {
public static final String GENERAL_THEME = "general_theme"; public static final String GENERAL_THEME = "general_theme";
public static final String PRIMARY_COLOR = "primary_color"; public static final String PRIMARY_COLOR = "primary_color";
public static final String ACCENT_COLOR = "accent_color"; public static final String ACCENT_COLOR = "accent_color";
public static final String COLORED_NAVIGATION_BAR = "colored_navigation_bar";
public static final String COLORED_SHORTCUTS = "colored_shortcuts"; public static final String COLORED_SHORTCUTS = "colored_shortcuts";
public static final String CLASSIC_NOTIFICATION = "classic_notification"; public static final String CLASSIC_NOTIFICATION = "classic_notification";

View file

@ -78,10 +78,10 @@
android:id="@+id/playing_queue_card" android:id="@+id/playing_queue_card"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="-8dp" android:layout_marginBottom="16dp"
android:layout_marginStart="16dp" android:layout_marginStart="16dp"
android:layout_marginEnd="16dp" android:layout_marginEnd="16dp"
android:layout_marginTop="0dp" android:layout_marginTop="16dp"
app:cardBackgroundColor="?cardBackgroundColor" app:cardBackgroundColor="?cardBackgroundColor"
app:cardElevation="@dimen/card_elevation" app:cardElevation="@dimen/card_elevation"
app:cardUseCompatPadding="false"> app:cardUseCompatPadding="false">

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">المكتبة</string> <string name="pref_header_library">المكتبة</string>
<string name="pref_header_lockscreen">شاشة القفل</string> <string name="pref_header_lockscreen">شاشة القفل</string>
<string name="pref_header_notification">الإشعار</string> <string name="pref_header_notification">الإشعار</string>
<string name="pref_title_navigation_bar">شريط تنقل ملون</string>
<string name="pref_title_app_shortcuts">اختصارات تطبيق ملونة</string> <string name="pref_title_app_shortcuts">اختصارات تطبيق ملونة</string>
<string name="pref_title_album_art_on_lockscreen">عرض غلاف الألبوم</string> <string name="pref_title_album_art_on_lockscreen">عرض غلاف الألبوم</string>
<string name="pref_title_blurred_album_art">تغييم صورة الألبوم</string> <string name="pref_title_blurred_album_art">تغييم صورة الألبوم</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">استعمال تصميم الإشعار الكلاسيكي.</string> <string name="pref_summary_classic_notification">استعمال تصميم الإشعار الكلاسيكي.</string>
<string name="pref_summary_colored_notification">"\u062a\u0644\u0648\u064a\u0646 \u0627\u0644\u0625\u0634\u0639\u0627\u0631 \u0628\u0644\u0648\u0646 \u063a\u0644\u0627\u0641 \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0628\u0627\u0631\u0632."</string> <string name="pref_summary_colored_notification">"\u062a\u0644\u0648\u064a\u0646 \u0627\u0644\u0625\u0634\u0639\u0627\u0631 \u0628\u0644\u0648\u0646 \u063a\u0644\u0627\u0641 \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0628\u0627\u0631\u0632."</string>
<string name="pref_summary_gapless_playback">"قد يسبب مشاكل في التشغيل على بعض الأجهزة."</string> <string name="pref_summary_gapless_playback">"قد يسبب مشاكل في التشغيل على بعض الأجهزة."</string>
<string name="pref_summary_colored_navigation_bar">تلوين شريط التنقل باللون الأساسي.</string>
<string name="pref_summary_colored_app_shortcuts">تلوين اختصارات التطبيق باللون الأساسي.</string> <string name="pref_summary_colored_app_shortcuts">تلوين اختصارات التطبيق باللون الأساسي.</string>
<string name="pref_summary_audio_ducking">الإشعارات، التنقل، إلخ.</string> <string name="pref_summary_audio_ducking">الإشعارات، التنقل، إلخ.</string>
<string name="pref_summary_remember_last_tab">الذهاب إلى آخر لسان مفتوح عند التشغيل</string> <string name="pref_summary_remember_last_tab">الذهاب إلى آخر لسان مفتوح عند التشغيل</string>

View file

@ -59,7 +59,6 @@
<string name="pref_title_general_theme">Главна тема</string> <string name="pref_title_general_theme">Главна тема</string>
<string name="pref_header_audio">Аудио</string> <string name="pref_header_audio">Аудио</string>
<string name="pref_header_lockscreen">Заключен екран</string> <string name="pref_header_lockscreen">Заключен екран</string>
<string name="pref_title_navigation_bar">Оцветени навигационни бутони</string>
<string name="pref_title_app_shortcuts">Оцветяване на бутоните</string> <string name="pref_title_app_shortcuts">Оцветяване на бутоните</string>
<string name="pref_title_album_art_on_lockscreen">Покажи обложката на албум</string> <string name="pref_title_album_art_on_lockscreen">Покажи обложката на албум</string>
<string name="pref_title_blurred_album_art">Размажи обложката</string> <string name="pref_title_blurred_album_art">Размажи обложката</string>
@ -85,7 +84,6 @@
<string name="pref_summary_blurred_album_art">Замъглява обложката при заключен екран. Би могло да създаде проблеми с апликации и известия създадени от трети лица.</string> <string name="pref_summary_blurred_album_art">Замъглява обложката при заключен екран. Би могло да създаде проблеми с апликации и известия създадени от трети лица.</string>
<string name="pref_summary_colored_notification">"\u041e\u0446\u0432\u0435\u0442\u044f\u0432\u0430 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u0442\u043e \u0432 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u0446\u0432\u044f\u0442 \u043e\u0442 \u043e\u0431\u043b\u043e\u0436\u043a\u0430\u0442\u0430."</string> <string name="pref_summary_colored_notification">"\u041e\u0446\u0432\u0435\u0442\u044f\u0432\u0430 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u0442\u043e \u0432 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u0446\u0432\u044f\u0442 \u043e\u0442 \u043e\u0431\u043b\u043e\u0436\u043a\u0430\u0442\u0430."</string>
<string name="pref_summary_gapless_playback">"Би могло да създаде проблеми с възпроизвеждането при някои устройства."</string> <string name="pref_summary_gapless_playback">"Би могло да създаде проблеми с възпроизвеждането при някои устройства."</string>
<string name="pref_summary_colored_navigation_bar">Оцветява навигационната лента в главният цвят на апликацията.</string>
<string name="pref_summary_colored_app_shortcuts">Оцветява бутоните в главният цвят на апликацията.</string> <string name="pref_summary_colored_app_shortcuts">Оцветява бутоните в главният цвят на апликацията.</string>
<string name="pref_summary_audio_ducking">Известия, навигация etc.</string> <string name="pref_summary_audio_ducking">Известия, навигация etc.</string>
<string name="last_added">Последно добавени</string> <string name="last_added">Последно добавени</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Knihovna</string> <string name="pref_header_library">Knihovna</string>
<string name="pref_header_lockscreen">Odemykací obrazovka</string> <string name="pref_header_lockscreen">Odemykací obrazovka</string>
<string name="pref_header_notification">Oznámení</string> <string name="pref_header_notification">Oznámení</string>
<string name="pref_title_navigation_bar">Barevné záhlaví</string>
<string name="pref_title_app_shortcuts">Barevné zkratky aplikace</string> <string name="pref_title_app_shortcuts">Barevné zkratky aplikace</string>
<string name="pref_title_album_art_on_lockscreen">Zobrazit obal alba</string> <string name="pref_title_album_art_on_lockscreen">Zobrazit obal alba</string>
<string name="pref_title_blurred_album_art">Rozostřit obal alba</string> <string name="pref_title_blurred_album_art">Rozostřit obal alba</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Použije klasický vzhled oznámení.</string> <string name="pref_summary_classic_notification">Použije klasický vzhled oznámení.</string>
<string name="pref_summary_colored_notification">"Zbarv\u00ed ozn\u00e1men\u00ed do barev podle obalu alba."</string> <string name="pref_summary_colored_notification">"Zbarv\u00ed ozn\u00e1men\u00ed do barev podle obalu alba."</string>
<string name="pref_summary_gapless_playback">"Může způsobit problémy s přehráváním u některých zařízení."</string> <string name="pref_summary_gapless_playback">"Může způsobit problémy s přehráváním u některých zařízení."</string>
<string name="pref_summary_colored_navigation_bar">Barvy navigačního panelu v primární barvě</string>
<string name="pref_summary_colored_app_shortcuts">Zbarví zkratky aplikace primární barvou</string> <string name="pref_summary_colored_app_shortcuts">Zbarví zkratky aplikace primární barvou</string>
<string name="pref_summary_audio_ducking">Oznámení, navigace atd.</string> <string name="pref_summary_audio_ducking">Oznámení, navigace atd.</string>
<string name="pref_summary_remember_last_tab">Přejděte na poslední otevřenou kartu při spuštění</string> <string name="pref_summary_remember_last_tab">Přejděte na poslední otevřenou kartu při spuštění</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Bibliothek</string> <string name="pref_header_library">Bibliothek</string>
<string name="pref_header_lockscreen">Sperrbildschirm</string> <string name="pref_header_lockscreen">Sperrbildschirm</string>
<string name="pref_header_notification">Benachrichtigung</string> <string name="pref_header_notification">Benachrichtigung</string>
<string name="pref_title_navigation_bar">Farbige Navigationsleiste</string>
<string name="pref_title_app_shortcuts">Gefärbte App-Shortcuts</string> <string name="pref_title_app_shortcuts">Gefärbte App-Shortcuts</string>
<string name="pref_title_album_art_on_lockscreen">Album Cover anzeigen</string> <string name="pref_title_album_art_on_lockscreen">Album Cover anzeigen</string>
<string name="pref_title_blurred_album_art">Album Cover weichzeichnen</string> <string name="pref_title_blurred_album_art">Album Cover weichzeichnen</string>
@ -96,7 +95,6 @@
<string name="pref_summary_classic_notification">Das klassische Benachrichtigungsdesign verwenden.</string> <string name="pref_summary_classic_notification">Das klassische Benachrichtigungsdesign verwenden.</string>
<string name="pref_summary_colored_notification">"Die Benachrichtigung ist in der Farbe des Album Covers gef\u00e4rbt."</string> <string name="pref_summary_colored_notification">"Die Benachrichtigung ist in der Farbe des Album Covers gef\u00e4rbt."</string>
<string name="pref_summary_gapless_playback">"Kann bei einigen Geräten Wiedergabeprobleme verursachen."</string> <string name="pref_summary_gapless_playback">"Kann bei einigen Geräten Wiedergabeprobleme verursachen."</string>
<string name="pref_summary_colored_navigation_bar">Färbt die Navigationsleiste mit der Hauptfarbe.</string>
<string name="pref_summary_colored_app_shortcuts">Färbt die App-Shortcuts mit der Hauptfarbe.</string> <string name="pref_summary_colored_app_shortcuts">Färbt die App-Shortcuts mit der Hauptfarbe.</string>
<string name="pref_summary_audio_ducking">Benachrichtigungen, Navigation etc.</string> <string name="pref_summary_audio_ducking">Benachrichtigungen, Navigation etc.</string>
<string name="pref_summary_remember_last_tab">Zuletzt geöffneten Tab beim Start anzeigen</string> <string name="pref_summary_remember_last_tab">Zuletzt geöffneten Tab beim Start anzeigen</string>

View file

@ -61,7 +61,6 @@
<string name="pref_header_library">Βιβλιοθήκη</string> <string name="pref_header_library">Βιβλιοθήκη</string>
<string name="pref_header_lockscreen">Οθόνη κλειδώματος</string> <string name="pref_header_lockscreen">Οθόνη κλειδώματος</string>
<string name="pref_header_notification">Ειδοποιήσεις</string> <string name="pref_header_notification">Ειδοποιήσεις</string>
<string name="pref_title_navigation_bar">Έγχρωμη μπάρα πλοήγησης</string>
<string name="pref_title_app_shortcuts">Χρωματιστές συντομεύσεις εφαρμογής</string> <string name="pref_title_app_shortcuts">Χρωματιστές συντομεύσεις εφαρμογής</string>
<string name="pref_title_album_art_on_lockscreen">Εμφάνιση album art</string> <string name="pref_title_album_art_on_lockscreen">Εμφάνιση album art</string>
<string name="pref_title_blurred_album_art">Θάμπωμα πορτρέτων καλλιτεχνών</string> <string name="pref_title_blurred_album_art">Θάμπωμα πορτρέτων καλλιτεχνών</string>
@ -88,7 +87,6 @@
<string name="pref_summary_blurred_album_art">Το θωριασμένο album εξώφυλλο στην οθόνη κλειδώματος μπορεί να δημιουργήσει προβλήματα με τρίτες εφαρμογές και συντομιεύσεις.</string> <string name="pref_summary_blurred_album_art">Το θωριασμένο album εξώφυλλο στην οθόνη κλειδώματος μπορεί να δημιουργήσει προβλήματα με τρίτες εφαρμογές και συντομιεύσεις.</string>
<string name="pref_summary_colored_notification">"\u03a7\u03c1\u03c9\u03bc\u03b1\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03c0\u03ac\u03c1\u03b1 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 album art \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b1\u03b3\u03bf\u03c5\u03b4\u03b9\u03bf\u03cd"</string> <string name="pref_summary_colored_notification">"\u03a7\u03c1\u03c9\u03bc\u03b1\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03c0\u03ac\u03c1\u03b1 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 album art \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b1\u03b3\u03bf\u03c5\u03b4\u03b9\u03bf\u03cd"</string>
<string name="pref_summary_gapless_playback">"Μπορεί να δημιουργίσει θέματα αναπαραγωγής σε μερικές συσκευές."</string> <string name="pref_summary_gapless_playback">"Μπορεί να δημιουργίσει θέματα αναπαραγωγής σε μερικές συσκευές."</string>
<string name="pref_summary_colored_navigation_bar">Χρωματίζει την μπάρα πλοήγησης στο πρωτεύον χρώμα</string>
<string name="pref_summary_colored_app_shortcuts">Χρωματίζει τις συντομεύσεις της εφαρμογής στο κυρίως χρώμα.</string> <string name="pref_summary_colored_app_shortcuts">Χρωματίζει τις συντομεύσεις της εφαρμογής στο κυρίως χρώμα.</string>
<string name="pref_summary_audio_ducking">Ειδοποιήσεις, πλοήγηση κ.λπ.</string> <string name="pref_summary_audio_ducking">Ειδοποιήσεις, πλοήγηση κ.λπ.</string>
<string name="last_added">Προστέθηκαν τελευταία</string> <string name="last_added">Προστέθηκαν τελευταία</string>

View file

@ -60,7 +60,6 @@
<string name="pref_header_audio">Audio</string> <string name="pref_header_audio">Audio</string>
<string name="pref_header_lockscreen">Lockscreen</string> <string name="pref_header_lockscreen">Lockscreen</string>
<string name="pref_header_notification">Notification</string> <string name="pref_header_notification">Notification</string>
<string name="pref_title_navigation_bar">Colored navigation bar</string>
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string> <string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
<string name="pref_title_album_art_on_lockscreen">Show album cover</string> <string name="pref_title_album_art_on_lockscreen">Show album cover</string>
<string name="pref_title_blurred_album_art">Blur album cover</string> <string name="pref_title_blurred_album_art">Blur album cover</string>
@ -88,7 +87,6 @@
<string name="pref_summary_classic_notification">Use the classic notification design.</string> <string name="pref_summary_classic_notification">Use the classic notification design.</string>
<string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string> <string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string>
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string> <string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string> <string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string> <string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
<string name="last_added">Last added</string> <string name="last_added">Last added</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Library</string> <string name="pref_header_library">Library</string>
<string name="pref_header_lockscreen">Lockscreen</string> <string name="pref_header_lockscreen">Lockscreen</string>
<string name="pref_header_notification">Notification</string> <string name="pref_header_notification">Notification</string>
<string name="pref_title_navigation_bar">Coloured navigation bar</string>
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string> <string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
<string name="pref_title_album_art_on_lockscreen">Show album cover</string> <string name="pref_title_album_art_on_lockscreen">Show album cover</string>
<string name="pref_title_blurred_album_art">Blur album cover</string> <string name="pref_title_blurred_album_art">Blur album cover</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Use the classic notification design.</string> <string name="pref_summary_classic_notification">Use the classic notification design.</string>
<string name="pref_summary_colored_notification">"Colours the notification in the album cover\u2019s vibrant colour."</string> <string name="pref_summary_colored_notification">"Colours the notification in the album cover\u2019s vibrant colour."</string>
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string> <string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
<string name="pref_summary_colored_navigation_bar">Colours the navigation bar in the primary colour.</string>
<string name="pref_summary_colored_app_shortcuts">Colours the app shortcuts in the primary colour.</string> <string name="pref_summary_colored_app_shortcuts">Colours the app shortcuts in the primary colour.</string>
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string> <string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
<string name="pref_summary_remember_last_tab">Go to the last opened tab on launch</string> <string name="pref_summary_remember_last_tab">Go to the last opened tab on launch</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Biblioteca</string> <string name="pref_header_library">Biblioteca</string>
<string name="pref_header_lockscreen">Pantalla de bloqueo</string> <string name="pref_header_lockscreen">Pantalla de bloqueo</string>
<string name="pref_header_notification">Notificación</string> <string name="pref_header_notification">Notificación</string>
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
<string name="pref_title_app_shortcuts">Atajos coloreados de la aplicación</string> <string name="pref_title_app_shortcuts">Atajos coloreados de la aplicación</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string> <string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
<string name="pref_title_blurred_album_art">Desenfocar carátula de álbum</string> <string name="pref_title_blurred_album_art">Desenfocar carátula de álbum</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Utilizar el diseño clásico de notificación.</string> <string name="pref_summary_classic_notification">Utilizar el diseño clásico de notificación.</string>
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string> <string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string> <string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
<string name="pref_summary_colored_navigation_bar">Colorea la barra de navegación con el color principal.</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal</string> <string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal</string>
<string name="pref_summary_audio_ducking">Notificaciones, navegación etc.</string> <string name="pref_summary_audio_ducking">Notificaciones, navegación etc.</string>
<string name="pref_summary_remember_last_tab">Ir a la última pestaña abierta en el lanzamiento</string> <string name="pref_summary_remember_last_tab">Ir a la última pestaña abierta en el lanzamiento</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Biblioteca</string> <string name="pref_header_library">Biblioteca</string>
<string name="pref_header_lockscreen">Pantalla de bloqueo</string> <string name="pref_header_lockscreen">Pantalla de bloqueo</string>
<string name="pref_header_notification">Notificación</string> <string name="pref_header_notification">Notificación</string>
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
<string name="pref_title_app_shortcuts">Accesos directos coloreados</string> <string name="pref_title_app_shortcuts">Accesos directos coloreados</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string> <string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
<string name="pref_title_blurred_album_art">Desenfocar imagen de álbum</string> <string name="pref_title_blurred_album_art">Desenfocar imagen de álbum</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Usar el diseño de notificación clásico.</string> <string name="pref_summary_classic_notification">Usar el diseño de notificación clásico.</string>
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string> <string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string> <string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
<string name="pref_summary_colored_navigation_bar">Colorea la barra de navegación con el color principal.</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal.</string> <string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal.</string>
<string name="pref_summary_audio_ducking">Notificaciones, navegación, etc.</string> <string name="pref_summary_audio_ducking">Notificaciones, navegación, etc.</string>
<string name="pref_summary_remember_last_tab">Ir a la última pestaña abierta al iniciar</string> <string name="pref_summary_remember_last_tab">Ir a la última pestaña abierta al iniciar</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Kirjasto</string> <string name="pref_header_library">Kirjasto</string>
<string name="pref_header_lockscreen">Lukitusnäyttö</string> <string name="pref_header_lockscreen">Lukitusnäyttö</string>
<string name="pref_header_notification">Ilmoitukset</string> <string name="pref_header_notification">Ilmoitukset</string>
<string name="pref_title_navigation_bar">Värillinen navigaatiopalkki</string>
<string name="pref_title_app_shortcuts">Värilliset sovelluksen pikavalinnat</string> <string name="pref_title_app_shortcuts">Värilliset sovelluksen pikavalinnat</string>
<string name="pref_title_album_art_on_lockscreen">Näytä albumin kansi</string> <string name="pref_title_album_art_on_lockscreen">Näytä albumin kansi</string>
<string name="pref_title_blurred_album_art">Sumenna albumin kansi</string> <string name="pref_title_blurred_album_art">Sumenna albumin kansi</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Käytä klassista ilmoituksen ulkonäköä.</string> <string name="pref_summary_classic_notification">Käytä klassista ilmoituksen ulkonäköä.</string>
<string name="pref_summary_colored_notification">"V\u00e4ritt\u00e4\u00e4 ilmoituksen albumin eloisalla v\u00e4rill\u00e4."</string> <string name="pref_summary_colored_notification">"V\u00e4ritt\u00e4\u00e4 ilmoituksen albumin eloisalla v\u00e4rill\u00e4."</string>
<string name="pref_summary_gapless_playback">"Saattaa aiheuttaa toisto-ongelmia joillain laitteilla."</string> <string name="pref_summary_gapless_playback">"Saattaa aiheuttaa toisto-ongelmia joillain laitteilla."</string>
<string name="pref_summary_colored_navigation_bar">Värittää navigaatiopalkin päävärillä.</string>
<string name="pref_summary_colored_app_shortcuts">Värittää sovelluksen pikavalinnat päävärillä.</string> <string name="pref_summary_colored_app_shortcuts">Värittää sovelluksen pikavalinnat päävärillä.</string>
<string name="pref_summary_audio_ducking">Ilmoitukset, liikkuminen jne.</string> <string name="pref_summary_audio_ducking">Ilmoitukset, liikkuminen jne.</string>
<string name="pref_summary_remember_last_tab">Palauttaa käynnistyessään viimeksi avoinna olleen välilehden.</string> <string name="pref_summary_remember_last_tab">Palauttaa käynnistyessään viimeksi avoinna olleen välilehden.</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Bibliothèque</string> <string name="pref_header_library">Bibliothèque</string>
<string name="pref_header_lockscreen">Écran de verrouillage</string> <string name="pref_header_lockscreen">Écran de verrouillage</string>
<string name="pref_header_notification">Notification</string> <string name="pref_header_notification">Notification</string>
<string name="pref_title_navigation_bar">Barre de navigation colorée</string>
<string name="pref_title_app_shortcuts">Raccourcis de l\'application colorés</string> <string name="pref_title_app_shortcuts">Raccourcis de l\'application colorés</string>
<string name="pref_title_album_art_on_lockscreen">Afficher la pochette d\'album</string> <string name="pref_title_album_art_on_lockscreen">Afficher la pochette d\'album</string>
<string name="pref_title_blurred_album_art">Flouter la pochette d\'album</string> <string name="pref_title_blurred_album_art">Flouter la pochette d\'album</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Utiliser le style de notification classique.</string> <string name="pref_summary_classic_notification">Utiliser le style de notification classique.</string>
<string name="pref_summary_colored_notification">"Colore la notification en fonction de la pochette de l'album."</string> <string name="pref_summary_colored_notification">"Colore la notification en fonction de la pochette de l'album."</string>
<string name="pref_summary_gapless_playback">"Peut causer des problèmes de lecture sur certains appareils."</string> <string name="pref_summary_gapless_playback">"Peut causer des problèmes de lecture sur certains appareils."</string>
<string name="pref_summary_colored_navigation_bar">Colore la barre de navigation en fonction de la couleur principale.</string>
<string name="pref_summary_colored_app_shortcuts">Colore les raccourcis de l\'application selon la couleur primaire.</string> <string name="pref_summary_colored_app_shortcuts">Colore les raccourcis de l\'application selon la couleur primaire.</string>
<string name="pref_summary_audio_ducking">Réduire le volume pour les notifications et autre sons système.</string> <string name="pref_summary_audio_ducking">Réduire le volume pour les notifications et autre sons système.</string>
<string name="pref_summary_remember_last_tab">Aller à la dernière catégorie ouverte lors du lancement.</string> <string name="pref_summary_remember_last_tab">Aller à la dernière catégorie ouverte lors du lancement.</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">ספרייה</string> <string name="pref_header_library">ספרייה</string>
<string name="pref_header_lockscreen">מסך נעילה</string> <string name="pref_header_lockscreen">מסך נעילה</string>
<string name="pref_header_notification">התראות</string> <string name="pref_header_notification">התראות</string>
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string> <string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string> <string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string> <string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string> <string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string> <string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string> <string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string> <string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string> <string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
<string name="pref_summary_remember_last_tab">עבור לכרטיסייה האחרונה שהייתה פתוחה בהפעלה</string> <string name="pref_summary_remember_last_tab">עבור לכרטיסייה האחרונה שהייתה פתוחה בהפעלה</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Biblioteka</string> <string name="pref_header_library">Biblioteka</string>
<string name="pref_header_lockscreen">Zaključani zaslon</string> <string name="pref_header_lockscreen">Zaključani zaslon</string>
<string name="pref_header_notification">Obavijest</string> <string name="pref_header_notification">Obavijest</string>
<string name="pref_title_navigation_bar">Obojena navigacijska traka</string>
<string name="pref_title_app_shortcuts">Obojani prečaci</string> <string name="pref_title_app_shortcuts">Obojani prečaci</string>
<string name="pref_title_album_art_on_lockscreen">Prikaži omot albuma na zaklj. zaslonu</string> <string name="pref_title_album_art_on_lockscreen">Prikaži omot albuma na zaklj. zaslonu</string>
<string name="pref_title_blurred_album_art">Zamagli omot albuma</string> <string name="pref_title_blurred_album_art">Zamagli omot albuma</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Koristi klasični dizajn obavijesti.</string> <string name="pref_summary_classic_notification">Koristi klasični dizajn obavijesti.</string>
<string name="pref_summary_colored_notification">"Obavijesti su obojene istaknutom bojom omota albuma."</string> <string name="pref_summary_colored_notification">"Obavijesti su obojene istaknutom bojom omota albuma."</string>
<string name="pref_summary_gapless_playback">"Na nekim uređajima može uzrokovati probleme s reproduciranjem."</string> <string name="pref_summary_gapless_playback">"Na nekim uređajima može uzrokovati probleme s reproduciranjem."</string>
<string name="pref_summary_colored_navigation_bar">Boja navigacijsku traku primarnom bojom.</string>
<string name="pref_summary_colored_app_shortcuts">Boja prečace aplikacije u primarnu boju.</string> <string name="pref_summary_colored_app_shortcuts">Boja prečace aplikacije u primarnu boju.</string>
<string name="pref_summary_audio_ducking">Obavijesti, navigacija itd.</string> <string name="pref_summary_audio_ducking">Obavijesti, navigacija itd.</string>
<string name="pref_summary_remember_last_tab">Pri pokretanju otvori zadnje otvorenu karticu</string> <string name="pref_summary_remember_last_tab">Pri pokretanju otvori zadnje otvorenu karticu</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Könyvtár</string> <string name="pref_header_library">Könyvtár</string>
<string name="pref_header_lockscreen">Zárképernyő</string> <string name="pref_header_lockscreen">Zárképernyő</string>
<string name="pref_header_notification">Értesítés</string> <string name="pref_header_notification">Értesítés</string>
<string name="pref_title_navigation_bar">Színezett navigációs sáv</string>
<string name="pref_title_app_shortcuts">Színezett alkalmazás hivatkozások</string> <string name="pref_title_app_shortcuts">Színezett alkalmazás hivatkozások</string>
<string name="pref_title_album_art_on_lockscreen">Albumborító megjelenítése</string> <string name="pref_title_album_art_on_lockscreen">Albumborító megjelenítése</string>
<string name="pref_title_blurred_album_art">Albumborító elhomályosítása</string> <string name="pref_title_blurred_album_art">Albumborító elhomályosítása</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Használja a klasszikus értesítési dizájn.</string> <string name="pref_summary_classic_notification">Használja a klasszikus értesítési dizájn.</string>
<string name="pref_summary_colored_notification">"\u00c9rtes\u00edt\u00e9sek sz\u00ednez\u00e9se az albumbor\u00edt\u00f3 sz\u00edn\u00e9vel."</string> <string name="pref_summary_colored_notification">"\u00c9rtes\u00edt\u00e9sek sz\u00ednez\u00e9se az albumbor\u00edt\u00f3 sz\u00edn\u00e9vel."</string>
<string name="pref_summary_gapless_playback">"Lejátszási problémákat okozhat néhány eszközön."</string> <string name="pref_summary_gapless_playback">"Lejátszási problémákat okozhat néhány eszközön."</string>
<string name="pref_summary_colored_navigation_bar">Navigációs sáv színezése az alapértelmezett színnel.</string>
<string name="pref_summary_colored_app_shortcuts">Az alkalmazás hivatkozások színezése az elsődleges szín szerint.</string> <string name="pref_summary_colored_app_shortcuts">Az alkalmazás hivatkozások színezése az elsődleges szín szerint.</string>
<string name="pref_summary_audio_ducking">Beérkező értesítéskor a lejátszás hangereje lecsökken, majd az értesítés végén visszaáll az eredeti hangerőre.</string> <string name="pref_summary_audio_ducking">Beérkező értesítéskor a lejátszás hangereje lecsökken, majd az értesítés végén visszaáll az eredeti hangerőre.</string>
<string name="pref_summary_remember_last_tab">Menjen az utolsó megnyitott fülre az indításkor</string> <string name="pref_summary_remember_last_tab">Menjen az utolsó megnyitott fülre az indításkor</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Pustaka</string> <string name="pref_header_library">Pustaka</string>
<string name="pref_header_lockscreen">Layar kunci</string> <string name="pref_header_lockscreen">Layar kunci</string>
<string name="pref_header_notification">Notifikasi</string> <string name="pref_header_notification">Notifikasi</string>
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string> <string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string> <string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
<string name="pref_title_blurred_album_art">Buramkan sampul album</string> <string name="pref_title_blurred_album_art">Buramkan sampul album</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string> <string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string> <string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string> <string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string> <string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string> <string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
<string name="pref_summary_remember_last_tab">Pergi ke tab yang terakhir saat aplikasi dibuka</string> <string name="pref_summary_remember_last_tab">Pergi ke tab yang terakhir saat aplikasi dibuka</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Pustaka</string> <string name="pref_header_library">Pustaka</string>
<string name="pref_header_lockscreen">Layar kunci</string> <string name="pref_header_lockscreen">Layar kunci</string>
<string name="pref_header_notification">Notifikasi</string> <string name="pref_header_notification">Notifikasi</string>
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string> <string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string> <string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
<string name="pref_title_blurred_album_art">Buramkan sampul album</string> <string name="pref_title_blurred_album_art">Buramkan sampul album</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string> <string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string> <string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string> <string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string> <string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string> <string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
<string name="pref_summary_remember_last_tab">Pergi ke tab yang terakhir saat aplikasi dibuka</string> <string name="pref_summary_remember_last_tab">Pergi ke tab yang terakhir saat aplikasi dibuka</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Libreria</string> <string name="pref_header_library">Libreria</string>
<string name="pref_header_lockscreen">Schermata di blocco</string> <string name="pref_header_lockscreen">Schermata di blocco</string>
<string name="pref_header_notification">Notifica</string> <string name="pref_header_notification">Notifica</string>
<string name="pref_title_navigation_bar">Barra di navigazione colorata</string>
<string name="pref_title_app_shortcuts">Scorciatoie app colorate</string> <string name="pref_title_app_shortcuts">Scorciatoie app colorate</string>
<string name="pref_title_album_art_on_lockscreen">Mostra copertina album nella schermata di blocco</string> <string name="pref_title_album_art_on_lockscreen">Mostra copertina album nella schermata di blocco</string>
<string name="pref_title_blurred_album_art">Sfoca la copertina</string> <string name="pref_title_blurred_album_art">Sfoca la copertina</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Usa il design di notifica classico.</string> <string name="pref_summary_classic_notification">Usa il design di notifica classico.</string>
<string name="pref_summary_colored_notification">"La notifica \u00e8 colorata secondo la gamma di colori della copertina."</string> <string name="pref_summary_colored_notification">"La notifica \u00e8 colorata secondo la gamma di colori della copertina."</string>
<string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi."</string> <string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi."</string>
<string name="pref_summary_colored_navigation_bar">Colora la barra di navigazione del colore principale.</string>
<string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore principale.</string> <string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore principale.</string>
<string name="pref_summary_audio_ducking">Notifiche, navigazione ecc.</string> <string name="pref_summary_audio_ducking">Notifiche, navigazione ecc.</string>
<string name="pref_summary_remember_last_tab">All\'avvio vai all\'ultima scheda aperta</string> <string name="pref_summary_remember_last_tab">All\'avvio vai all\'ultima scheda aperta</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">ספרייה</string> <string name="pref_header_library">ספרייה</string>
<string name="pref_header_lockscreen">מסך נעילה</string> <string name="pref_header_lockscreen">מסך נעילה</string>
<string name="pref_header_notification">התראות</string> <string name="pref_header_notification">התראות</string>
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string> <string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string> <string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string> <string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string> <string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string> <string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string> <string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string> <string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string> <string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
<string name="pref_summary_remember_last_tab">עבור לכרטיסייה האחרונה שהייתה פתוחה בהפעלה</string> <string name="pref_summary_remember_last_tab">עבור לכרטיסייה האחרונה שהייתה פתוחה בהפעלה</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">ライブラリ</string> <string name="pref_header_library">ライブラリ</string>
<string name="pref_header_lockscreen">ロック画面</string> <string name="pref_header_lockscreen">ロック画面</string>
<string name="pref_header_notification">通知</string> <string name="pref_header_notification">通知</string>
<string name="pref_title_navigation_bar">ナビゲーションバーに色を付ける</string>
<string name="pref_title_app_shortcuts">アプリのショートカットに色を付ける</string> <string name="pref_title_app_shortcuts">アプリのショートカットに色を付ける</string>
<string name="pref_title_album_art_on_lockscreen">アルバムアートを表示する</string> <string name="pref_title_album_art_on_lockscreen">アルバムアートを表示する</string>
<string name="pref_title_blurred_album_art">アルバムアートにぼかし効果をかける</string> <string name="pref_title_blurred_album_art">アルバムアートにぼかし効果をかける</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">旧式の通知デザインを使用します。</string> <string name="pref_summary_classic_notification">旧式の通知デザインを使用します。</string>
<string name="pref_summary_colored_notification">"\u901a\u77e5\u306e\u8272\u3092\u30a2\u30eb\u30d0\u30e0\u30a2\u30fc\u30c8\u304b\u3089\u62bd\u51fa\u3057\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059\u3002"</string> <string name="pref_summary_colored_notification">"\u901a\u77e5\u306e\u8272\u3092\u30a2\u30eb\u30d0\u30e0\u30a2\u30fc\u30c8\u304b\u3089\u62bd\u51fa\u3057\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059\u3002"</string>
<string name="pref_summary_gapless_playback">"一部の端末では再生に問題が生じる可能性があります。"</string> <string name="pref_summary_gapless_playback">"一部の端末では再生に問題が生じる可能性があります。"</string>
<string name="pref_summary_colored_navigation_bar">ナビゲーションバーの背景色をメインカラーに変更します。</string>
<string name="pref_summary_colored_app_shortcuts">アプリのショートカットの色をメインカラーに変更します。</string> <string name="pref_summary_colored_app_shortcuts">アプリのショートカットの色をメインカラーに変更します。</string>
<string name="pref_summary_audio_ducking">通知やナビなどです。</string> <string name="pref_summary_audio_ducking">通知やナビなどです。</string>
<string name="pref_summary_remember_last_tab">アプリ起動時に最後に開いていたタブを開く</string> <string name="pref_summary_remember_last_tab">アプリ起動時に最後に開いていたタブを開く</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">보관함</string> <string name="pref_header_library">보관함</string>
<string name="pref_header_lockscreen">잠금 화면</string> <string name="pref_header_lockscreen">잠금 화면</string>
<string name="pref_header_notification">알림</string> <string name="pref_header_notification">알림</string>
<string name="pref_title_navigation_bar">내비게이션 바 색상 틴트</string>
<string name="pref_title_app_shortcuts">앱 바로가기 색칠</string> <string name="pref_title_app_shortcuts">앱 바로가기 색칠</string>
<string name="pref_title_album_art_on_lockscreen">앨범 커버 보이기</string> <string name="pref_title_album_art_on_lockscreen">앨범 커버 보이기</string>
<string name="pref_title_blurred_album_art">앨범 커버 블러 효과</string> <string name="pref_title_blurred_album_art">앨범 커버 블러 효과</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">클래식 알림 디자인 사용</string> <string name="pref_summary_classic_notification">클래식 알림 디자인 사용</string>
<string name="pref_summary_colored_notification">"\uc54c\ub9bc \ucee8\ud2b8\ub864\uc744 \uc568\ubc94 \uc544\ud2b8\uc758 \uc8fc \uc0c9\uc0c1\uc73c\ub85c \uce60\ud569\ub2c8\ub2e4."</string> <string name="pref_summary_colored_notification">"\uc54c\ub9bc \ucee8\ud2b8\ub864\uc744 \uc568\ubc94 \uc544\ud2b8\uc758 \uc8fc \uc0c9\uc0c1\uc73c\ub85c \uce60\ud569\ub2c8\ub2e4."</string>
<string name="pref_summary_gapless_playback">"일부 기기에서 곡 전환 관련 문제가 발생할 수 있습니다."</string> <string name="pref_summary_gapless_playback">"일부 기기에서 곡 전환 관련 문제가 발생할 수 있습니다."</string>
<string name="pref_summary_colored_navigation_bar">하단바가 색깔을 주 색상으로 색칠합니다.</string>
<string name="pref_summary_colored_app_shortcuts">주 색상으로 앱 바로가기 색칠</string> <string name="pref_summary_colored_app_shortcuts">주 색상으로 앱 바로가기 색칠</string>
<string name="pref_summary_audio_ducking">알림 소리, 버튼음 등</string> <string name="pref_summary_audio_ducking">알림 소리, 버튼음 등</string>
<string name="pref_summary_remember_last_tab">마지막으로 연 탭으로 시작</string> <string name="pref_summary_remember_last_tab">마지막으로 연 탭으로 시작</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Bibliotheek</string> <string name="pref_header_library">Bibliotheek</string>
<string name="pref_header_lockscreen">Vergrendelscherm</string> <string name="pref_header_lockscreen">Vergrendelscherm</string>
<string name="pref_header_notification">Melding</string> <string name="pref_header_notification">Melding</string>
<string name="pref_title_navigation_bar">Gekleurde navigatiebalk</string>
<string name="pref_title_app_shortcuts">Gekleurde app-snelkoppelingen</string> <string name="pref_title_app_shortcuts">Gekleurde app-snelkoppelingen</string>
<string name="pref_title_album_art_on_lockscreen">Toon albumhoes</string> <string name="pref_title_album_art_on_lockscreen">Toon albumhoes</string>
<string name="pref_title_blurred_album_art">Vervaag albumhoes</string> <string name="pref_title_blurred_album_art">Vervaag albumhoes</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Gebruik de klassieke meldingsweergave.</string> <string name="pref_summary_classic_notification">Gebruik de klassieke meldingsweergave.</string>
<string name="pref_summary_colored_notification">"Kleurt de melding met het palet van de albumhoes."</string> <string name="pref_summary_colored_notification">"Kleurt de melding met het palet van de albumhoes."</string>
<string name="pref_summary_gapless_playback">"Verwijdert de pauzes tussen nummers. Dit kan afspeelfouten veroorzaken."</string> <string name="pref_summary_gapless_playback">"Verwijdert de pauzes tussen nummers. Dit kan afspeelfouten veroorzaken."</string>
<string name="pref_summary_colored_navigation_bar">Kleurt de navigatiebalk in de primaire kleur.</string>
<string name="pref_summary_colored_app_shortcuts">Kleurt de app-snelkoppelingen in de primaire kleur.</string> <string name="pref_summary_colored_app_shortcuts">Kleurt de app-snelkoppelingen in de primaire kleur.</string>
<string name="pref_summary_audio_ducking">Notificaties, navigatie, etc.</string> <string name="pref_summary_audio_ducking">Notificaties, navigatie, etc.</string>
<string name="pref_summary_remember_last_tab">Ga naar het laatst geopende tabblad bij opstarten</string> <string name="pref_summary_remember_last_tab">Ga naar het laatst geopende tabblad bij opstarten</string>

View file

@ -36,7 +36,6 @@
<string name="dark_theme_name">Mørk</string> <string name="dark_theme_name">Mørk</string>
<string name="pref_title_general_theme">Generelt tema</string> <string name="pref_title_general_theme">Generelt tema</string>
<string name="pref_header_audio">Audio</string> <string name="pref_header_audio">Audio</string>
<string name="pref_title_navigation_bar">Farga navigasjonslinje</string>
<string name="delete_action">Slett</string> <string name="delete_action">Slett</string>
<string name="rename_action">Gje nytt namn</string> <string name="rename_action">Gje nytt namn</string>
<string name="primary_color">Primærfarge</string> <string name="primary_color">Primærfarge</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Biblioteka</string> <string name="pref_header_library">Biblioteka</string>
<string name="pref_header_lockscreen">Ekran blokady</string> <string name="pref_header_lockscreen">Ekran blokady</string>
<string name="pref_header_notification">Powiadomienie</string> <string name="pref_header_notification">Powiadomienie</string>
<string name="pref_title_navigation_bar">Kolorowy pasek nawigacyjny</string>
<string name="pref_title_app_shortcuts">Kolorowe skróty aplikacji</string> <string name="pref_title_app_shortcuts">Kolorowe skróty aplikacji</string>
<string name="pref_title_album_art_on_lockscreen">Pokazuj okładki albumów</string> <string name="pref_title_album_art_on_lockscreen">Pokazuj okładki albumów</string>
<string name="pref_title_blurred_album_art">Rozmywanie okładki albumu</string> <string name="pref_title_blurred_album_art">Rozmywanie okładki albumu</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Używaj klasycznego stylu powiadomienia.</string> <string name="pref_summary_classic_notification">Używaj klasycznego stylu powiadomienia.</string>
<string name="pref_summary_colored_notification">"Odtwarzacz w pasku powiadomie\u0144 ma tonacj\u0119 ok\u0142adki albumu"</string> <string name="pref_summary_colored_notification">"Odtwarzacz w pasku powiadomie\u0144 ma tonacj\u0119 ok\u0142adki albumu"</string>
<string name="pref_summary_gapless_playback">"Na niektórych urządzeniach mogą wystąpić problemy z odtwarzaniem"</string> <string name="pref_summary_gapless_playback">"Na niektórych urządzeniach mogą wystąpić problemy z odtwarzaniem"</string>
<string name="pref_summary_colored_navigation_bar">Kolory paska nawigacyjnego będą odpowiadały kolorowi podstawowemu</string>
<string name="pref_summary_colored_app_shortcuts">Kolory skrótów aplikacji w kolorze podstawowym</string> <string name="pref_summary_colored_app_shortcuts">Kolory skrótów aplikacji w kolorze podstawowym</string>
<string name="pref_summary_audio_ducking">Notyfikacje, nawigacja, itp.</string> <string name="pref_summary_audio_ducking">Notyfikacje, nawigacja, itp.</string>
<string name="pref_summary_remember_last_tab">Idź do ostatniej otwartej zakładki przy starcie</string> <string name="pref_summary_remember_last_tab">Idź do ostatniej otwartej zakładki przy starcie</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Biblioteca</string> <string name="pref_header_library">Biblioteca</string>
<string name="pref_header_lockscreen">Bloqueio de tela</string> <string name="pref_header_lockscreen">Bloqueio de tela</string>
<string name="pref_header_notification">Notificação</string> <string name="pref_header_notification">Notificação</string>
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
<string name="pref_title_app_shortcuts">Atalhos de app coloridos</string> <string name="pref_title_app_shortcuts">Atalhos de app coloridos</string>
<string name="pref_title_album_art_on_lockscreen">Visualizar capa do álbum</string> <string name="pref_title_album_art_on_lockscreen">Visualizar capa do álbum</string>
<string name="pref_title_blurred_album_art">Capa de álbum esmaecida</string> <string name="pref_title_blurred_album_art">Capa de álbum esmaecida</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Usar o design de notificação clássico.</string> <string name="pref_summary_classic_notification">Usar o design de notificação clássico.</string>
<string name="pref_summary_colored_notification">"A notifica\u00e7\u00e3o \u00e9 colorida com a cor mais vibrante do \u00e1lbum."</string> <string name="pref_summary_colored_notification">"A notifica\u00e7\u00e3o \u00e9 colorida com a cor mais vibrante do \u00e1lbum."</string>
<string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos."</string> <string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos."</string>
<string name="pref_summary_colored_navigation_bar">Cores da barra de navegação na cor primária.</string>
<string name="pref_summary_colored_app_shortcuts">Colore os atalhos do app com a cor primária.</string> <string name="pref_summary_colored_app_shortcuts">Colore os atalhos do app com a cor primária.</string>
<string name="pref_summary_audio_ducking">Notificações, navegação, etc.</string> <string name="pref_summary_audio_ducking">Notificações, navegação, etc.</string>
<string name="pref_summary_remember_last_tab">Ir para a última aba aberta ao iniciar</string> <string name="pref_summary_remember_last_tab">Ir para a última aba aberta ao iniciar</string>

View file

@ -56,7 +56,6 @@
<string name="pref_title_general_theme">Tema geral</string> <string name="pref_title_general_theme">Tema geral</string>
<string name="pref_header_audio">Áudio</string> <string name="pref_header_audio">Áudio</string>
<string name="pref_header_lockscreen">Ecrã de Bloqueio</string> <string name="pref_header_lockscreen">Ecrã de Bloqueio</string>
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar capa do álbum</string> <string name="pref_title_album_art_on_lockscreen">Mostrar capa do álbum</string>
<string name="pref_title_blurred_album_art">Desfocar capa do álbum</string> <string name="pref_title_blurred_album_art">Desfocar capa do álbum</string>
<string name="pref_title_colored_notification">Notificação colorida</string> <string name="pref_title_colored_notification">Notificação colorida</string>
@ -80,7 +79,6 @@
<string name="pref_summary_blurred_album_art">Desfoca a capa do álbum no ecrã de bloqueio. Pode causar problemas com aplicações de terceiros e widgets.</string> <string name="pref_summary_blurred_album_art">Desfoca a capa do álbum no ecrã de bloqueio. Pode causar problemas com aplicações de terceiros e widgets.</string>
<string name="pref_summary_colored_notification">"Colorir a notifica\u00e7\u00e3o na cor viva da capa de \u00e1lbum."</string> <string name="pref_summary_colored_notification">"Colorir a notifica\u00e7\u00e3o na cor viva da capa de \u00e1lbum."</string>
<string name="pref_summary_gapless_playback">"Pode causar problemas na reprodução em alguns dispositivos."</string> <string name="pref_summary_gapless_playback">"Pode causar problemas na reprodução em alguns dispositivos."</string>
<string name="pref_summary_colored_navigation_bar">Colorir a barra de navegação na cor primária.</string>
<string name="pref_summary_audio_ducking">Notificações, navegação etc.</string> <string name="pref_summary_audio_ducking">Notificações, navegação etc.</string>
<string name="last_added">Últimas adições</string> <string name="last_added">Últimas adições</string>
<string name="my_top_tracks">As minhas faixas favoritas</string> <string name="my_top_tracks">As minhas faixas favoritas</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Bibliotecă</string> <string name="pref_header_library">Bibliotecă</string>
<string name="pref_header_lockscreen">Ecran blocat</string> <string name="pref_header_lockscreen">Ecran blocat</string>
<string name="pref_header_notification">Notificare</string> <string name="pref_header_notification">Notificare</string>
<string name="pref_title_navigation_bar">Bară de navigare colorată</string>
<string name="pref_title_app_shortcuts">Comenzi rapide colorate</string> <string name="pref_title_app_shortcuts">Comenzi rapide colorate</string>
<string name="pref_title_album_art_on_lockscreen">Arată coperta de album</string> <string name="pref_title_album_art_on_lockscreen">Arată coperta de album</string>
<string name="pref_title_blurred_album_art">Blurează coperta de album</string> <string name="pref_title_blurred_album_art">Blurează coperta de album</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Utilizați designul clasic de notificare.</string> <string name="pref_summary_classic_notification">Utilizați designul clasic de notificare.</string>
<string name="pref_summary_colored_notification">"Coloreaz\u0103 bara de notificare cu cea mai vibrant\u0103 culoare a copertei de album."</string> <string name="pref_summary_colored_notification">"Coloreaz\u0103 bara de notificare cu cea mai vibrant\u0103 culoare a copertei de album."</string>
<string name="pref_summary_gapless_playback">"Poate cauza probleme de redare pe unele dispozitive."</string> <string name="pref_summary_gapless_playback">"Poate cauza probleme de redare pe unele dispozitive."</string>
<string name="pref_summary_colored_navigation_bar">Colorare bară de navigare în culoarea primară.</string>
<string name="pref_summary_colored_app_shortcuts">Colorarea comenzilor rapide ale aplicației în culoarea primară.</string> <string name="pref_summary_colored_app_shortcuts">Colorarea comenzilor rapide ale aplicației în culoarea primară.</string>
<string name="pref_summary_audio_ducking">Notificări, navigație etc.</string> <string name="pref_summary_audio_ducking">Notificări, navigație etc.</string>
<string name="pref_summary_remember_last_tab">Accesați ultima filă deschisă la lansare</string> <string name="pref_summary_remember_last_tab">Accesați ultima filă deschisă la lansare</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">Библиотека</string> <string name="pref_header_library">Библиотека</string>
<string name="pref_header_lockscreen">Экран блокировки</string> <string name="pref_header_lockscreen">Экран блокировки</string>
<string name="pref_header_notification">Уведомления</string> <string name="pref_header_notification">Уведомления</string>
<string name="pref_title_navigation_bar">Цветная панель управления</string>
<string name="pref_title_app_shortcuts">Цветные шорткаты</string> <string name="pref_title_app_shortcuts">Цветные шорткаты</string>
<string name="pref_title_album_art_on_lockscreen">Показывать обложку альбома</string> <string name="pref_title_album_art_on_lockscreen">Показывать обложку альбома</string>
<string name="pref_title_blurred_album_art">Размытая обложка альбома</string> <string name="pref_title_blurred_album_art">Размытая обложка альбома</string>
@ -95,7 +94,6 @@
<string name="pref_summary_classic_notification">Использовать классический дизайн уведомления.</string> <string name="pref_summary_classic_notification">Использовать классический дизайн уведомления.</string>
<string name="pref_summary_colored_notification">"\u041e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u0442\u043e\u043d \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430."</string> <string name="pref_summary_colored_notification">"\u041e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u0442\u043e\u043d \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430."</string>
<string name="pref_summary_gapless_playback">"Может вызвать проблемы с воспроизведением на некоторых устройствах."</string> <string name="pref_summary_gapless_playback">"Может вызвать проблемы с воспроизведением на некоторых устройствах."</string>
<string name="pref_summary_colored_navigation_bar">Окрашивает панель навигации в основной цвет.</string>
<string name="pref_summary_colored_app_shortcuts">Окрашивает шорткаты в основной цвет.</string> <string name="pref_summary_colored_app_shortcuts">Окрашивает шорткаты в основной цвет.</string>
<string name="pref_summary_audio_ducking">Уведомления, навигация, т.д.</string> <string name="pref_summary_audio_ducking">Уведомления, навигация, т.д.</string>
<string name="pref_summary_remember_last_tab">Перейти на последнюю открытую вкладку при запуске</string> <string name="pref_summary_remember_last_tab">Перейти на последнюю открытую вкладку при запуске</string>

View file

@ -42,11 +42,9 @@ Vill du radera spellistan <b>%1$s</b>?
<string name="dark_theme_name">Mörk</string> <string name="dark_theme_name">Mörk</string>
<string name="pref_title_general_theme">Allmänt tema</string> <string name="pref_title_general_theme">Allmänt tema</string>
<string name="pref_header_audio">Ljud</string> <string name="pref_header_audio">Ljud</string>
<string name="pref_title_navigation_bar">Färgad navigeringslist</string>
<string name="delete_action">Radera</string> <string name="delete_action">Radera</string>
<string name="rename_action">Döp om</string> <string name="rename_action">Döp om</string>
<string name="primary_color">Grundfärg</string> <string name="primary_color">Grundfärg</string>
<string name="no_playlists">Inga spellistor</string> <string name="no_playlists">Inga spellistor</string>
<string name="song">Låt</string> <string name="song">Låt</string>
<string name="pref_summary_colored_navigation_bar">I vilken vy navigeringslisten skall vara färgad</string>
</resources> </resources>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Kitaplık</string> <string name="pref_header_library">Kitaplık</string>
<string name="pref_header_lockscreen">Kilit ekranı</string> <string name="pref_header_lockscreen">Kilit ekranı</string>
<string name="pref_header_notification">Bildirim</string> <string name="pref_header_notification">Bildirim</string>
<string name="pref_title_navigation_bar">Renkli gezinme çubuğu</string>
<string name="pref_title_app_shortcuts">Renkli uygulama kısayolları</string> <string name="pref_title_app_shortcuts">Renkli uygulama kısayolları</string>
<string name="pref_title_album_art_on_lockscreen">Albüm kapağını göster</string> <string name="pref_title_album_art_on_lockscreen">Albüm kapağını göster</string>
<string name="pref_title_blurred_album_art">Bulanık albüm kapağı</string> <string name="pref_title_blurred_album_art">Bulanık albüm kapağı</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Klasik bildirim tasarımını kullan.</string> <string name="pref_summary_classic_notification">Klasik bildirim tasarımını kullan.</string>
<string name="pref_summary_colored_notification">"Bildirimler alb\u00fcm kapa\u011f\u0131n\u0131n canl\u0131 renkleriyle renklendirilir."</string> <string name="pref_summary_colored_notification">"Bildirimler alb\u00fcm kapa\u011f\u0131n\u0131n canl\u0131 renkleriyle renklendirilir."</string>
<string name="pref_summary_gapless_playback">"Bazı cihazlarda oynatma sorunlarına neden olabilir."</string> <string name="pref_summary_gapless_playback">"Bazı cihazlarda oynatma sorunlarına neden olabilir."</string>
<string name="pref_summary_colored_navigation_bar">Gezinme çubuğunu ana renk ile renklendir.</string>
<string name="pref_summary_colored_app_shortcuts">Uygulama kısayollarını ana renk ile renklendir.</string> <string name="pref_summary_colored_app_shortcuts">Uygulama kısayollarını ana renk ile renklendir.</string>
<string name="pref_summary_audio_ducking">Bildirimler, gezinme vb.</string> <string name="pref_summary_audio_ducking">Bildirimler, gezinme vb.</string>
<string name="pref_summary_remember_last_tab">Başlatıldığında son açılan sekmeye git</string> <string name="pref_summary_remember_last_tab">Başlatıldığında son açılan sekmeye git</string>

View file

@ -62,7 +62,6 @@
<string name="pref_header_library">Бібліотека</string> <string name="pref_header_library">Бібліотека</string>
<string name="pref_header_lockscreen">Екран блокування</string> <string name="pref_header_lockscreen">Екран блокування</string>
<string name="pref_header_notification">Сповіщення</string> <string name="pref_header_notification">Сповіщення</string>
<string name="pref_title_navigation_bar">Кольорова панель навігації</string>
<string name="pref_title_app_shortcuts">Кольорові ярлики додатків</string> <string name="pref_title_app_shortcuts">Кольорові ярлики додатків</string>
<string name="pref_title_album_art_on_lockscreen">Показати обкладинку альбому</string> <string name="pref_title_album_art_on_lockscreen">Показати обкладинку альбому</string>
<string name="pref_title_blurred_album_art">Розмити обкладинку альбому</string> <string name="pref_title_blurred_album_art">Розмити обкладинку альбому</string>
@ -93,7 +92,6 @@
<string name="pref_summary_classic_notification">Використовувати класичне оформлення сповіщення.</string> <string name="pref_summary_classic_notification">Використовувати класичне оформлення сповіщення.</string>
<string name="pref_summary_colored_notification">"\u0424\u0430\u0440\u0431\u0443\u0454 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u0430\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u043e\u0431\u043a\u043b\u0430\u0434\u0438\u043d\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0443."</string> <string name="pref_summary_colored_notification">"\u0424\u0430\u0440\u0431\u0443\u0454 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u0430\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u043e\u0431\u043a\u043b\u0430\u0434\u0438\u043d\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0443."</string>
<string name="pref_summary_gapless_playback">"Може викликати проблеми з відтворенням на деяких пристроях."</string> <string name="pref_summary_gapless_playback">"Може викликати проблеми з відтворенням на деяких пристроях."</string>
<string name="pref_summary_colored_navigation_bar">Фарбує панель навігації у переважний колір.</string>
<string name="pref_summary_colored_app_shortcuts">Фарбує ярлики додатків у переважний колір.</string> <string name="pref_summary_colored_app_shortcuts">Фарбує ярлики додатків у переважний колір.</string>
<string name="pref_summary_audio_ducking">Повiдомлення, навiгацiя, т.д.</string> <string name="pref_summary_audio_ducking">Повiдомлення, навiгацiя, т.д.</string>
<string name="pref_summary_remember_last_tab">Перейдіть до останньої відкритої вкладки, щоб запустити</string> <string name="pref_summary_remember_last_tab">Перейдіть до останньої відкритої вкладки, щоб запустити</string>

View file

@ -3,16 +3,19 @@
<style name="Theme.Phonograph" parent="Theme.Phonograph.Base"> <style name="Theme.Phonograph" parent="Theme.Phonograph.Base">
<item name="android:statusBarColor">@android:color/transparent</item> <item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSharedElementsUseOverlay">false</item> <item name="android:windowSharedElementsUseOverlay">false</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
</style> </style>
<style name="Theme.Phonograph.Light" parent="Theme.Phonograph.Base.Light"> <style name="Theme.Phonograph.Light" parent="Theme.Phonograph.Base.Light">
<item name="android:statusBarColor">@android:color/transparent</item> <item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSharedElementsUseOverlay">false</item> <item name="android:windowSharedElementsUseOverlay">false</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
</style> </style>
<style name="Theme.Phonograph.Black" parent="Theme.Phonograph.Base.Black"> <style name="Theme.Phonograph.Black" parent="Theme.Phonograph.Base.Black">
<item name="android:statusBarColor">@android:color/transparent</item> <item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSharedElementsUseOverlay">false</item> <item name="android:windowSharedElementsUseOverlay">false</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
</style> </style>
<style name="Theme.Phonograph.Notification" parent="@android:style/TextAppearance.Material.Notification" /> <style name="Theme.Phonograph.Notification" parent="@android:style/TextAppearance.Material.Notification" />

View file

@ -60,7 +60,6 @@
<string name="pref_header_audio">Âm thanh</string> <string name="pref_header_audio">Âm thanh</string>
<string name="pref_header_lockscreen">Màn hình khóa</string> <string name="pref_header_lockscreen">Màn hình khóa</string>
<string name="pref_header_notification">Thông báo</string> <string name="pref_header_notification">Thông báo</string>
<string name="pref_title_navigation_bar">Màu thanh điều hướng</string>
<string name="pref_title_app_shortcuts">Màu sắc biểu tượng ứng dụng</string> <string name="pref_title_app_shortcuts">Màu sắc biểu tượng ứng dụng</string>
<string name="pref_title_album_art_on_lockscreen">Hiện bìa album</string> <string name="pref_title_album_art_on_lockscreen">Hiện bìa album</string>
<string name="pref_title_blurred_album_art">Làm mờ bìa album</string> <string name="pref_title_blurred_album_art">Làm mờ bìa album</string>
@ -88,7 +87,6 @@
<string name="pref_summary_classic_notification">Sử dụng thiết kế thông báo cổ điển.</string> <string name="pref_summary_classic_notification">Sử dụng thiết kế thông báo cổ điển.</string>
<string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc r\u1ef1c r\u1ee1 cho c\u00e1c th\u00f4ng b\u00e1o trong b\u00eca album."</string> <string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc r\u1ef1c r\u1ee1 cho c\u00e1c th\u00f4ng b\u00e1o trong b\u00eca album."</string>
<string name="pref_summary_gapless_playback">"Có thể gây ra các vấn đề phát trên một số thiết bị."</string> <string name="pref_summary_gapless_playback">"Có thể gây ra các vấn đề phát trên một số thiết bị."</string>
<string name="pref_summary_colored_navigation_bar">Màu sắc thanh điều hướng trong các màu cơ bản.</string>
<string name="pref_summary_colored_app_shortcuts">Màu sắc chủ đạo của biểu tượng ứng dụng.</string> <string name="pref_summary_colored_app_shortcuts">Màu sắc chủ đạo của biểu tượng ứng dụng.</string>
<string name="pref_summary_audio_ducking">Thông báo, điều hướng, vv.</string> <string name="pref_summary_audio_ducking">Thông báo, điều hướng, vv.</string>
<string name="last_added">Được thêm sau cùng</string> <string name="last_added">Được thêm sau cùng</string>

View file

@ -63,7 +63,6 @@
<string name="pref_header_library">媒体库</string> <string name="pref_header_library">媒体库</string>
<string name="pref_header_lockscreen">锁屏</string> <string name="pref_header_lockscreen">锁屏</string>
<string name="pref_header_notification">通知</string> <string name="pref_header_notification">通知</string>
<string name="pref_title_navigation_bar">着色导航栏</string>
<string name="pref_title_app_shortcuts">着色应用快捷方式</string> <string name="pref_title_app_shortcuts">着色应用快捷方式</string>
<string name="pref_title_album_art_on_lockscreen">显示专辑封面</string> <string name="pref_title_album_art_on_lockscreen">显示专辑封面</string>
<string name="pref_title_blurred_album_art">专辑封面模糊化</string> <string name="pref_title_blurred_album_art">专辑封面模糊化</string>
@ -94,7 +93,6 @@
<string name="pref_summary_classic_notification">使用经典通知样式。</string> <string name="pref_summary_classic_notification">使用经典通知样式。</string>
<string name="pref_summary_colored_notification">"\u4f7f\u7528\u4e0e\u4e13\u8f91\u5c01\u9762\u76f8\u5339\u914d\u7684\u989c\u8272\u7740\u8272\u901a\u77e5\u80cc\u666f\u8272\u3002"</string> <string name="pref_summary_colored_notification">"\u4f7f\u7528\u4e0e\u4e13\u8f91\u5c01\u9762\u76f8\u5339\u914d\u7684\u989c\u8272\u7740\u8272\u901a\u77e5\u80cc\u666f\u8272\u3002"</string>
<string name="pref_summary_gapless_playback">"在某些设备上会造成播放问题。"</string> <string name="pref_summary_gapless_playback">"在某些设备上会造成播放问题。"</string>
<string name="pref_summary_colored_navigation_bar">用主色调着色导航栏。</string>
<string name="pref_summary_colored_app_shortcuts">用主色调着色应用快捷方式。</string> <string name="pref_summary_colored_app_shortcuts">用主色调着色应用快捷方式。</string>
<string name="pref_summary_audio_ducking">通知、导航等</string> <string name="pref_summary_audio_ducking">通知、导航等</string>
<string name="pref_summary_remember_last_tab">启动时跳转到最后打开页面</string> <string name="pref_summary_remember_last_tab">启动时跳转到最后打开页面</string>

View file

@ -64,7 +64,6 @@
<string name="pref_header_library">音樂庫</string> <string name="pref_header_library">音樂庫</string>
<string name="pref_header_lockscreen">鎖定螢幕</string> <string name="pref_header_lockscreen">鎖定螢幕</string>
<string name="pref_header_notification">通知</string> <string name="pref_header_notification">通知</string>
<string name="pref_title_navigation_bar">彩色的導航列</string>
<string name="pref_title_app_shortcuts">彩色的應用快捷方式</string> <string name="pref_title_app_shortcuts">彩色的應用快捷方式</string>
<string name="pref_title_album_art_on_lockscreen">顯示專輯封面</string> <string name="pref_title_album_art_on_lockscreen">顯示專輯封面</string>
<string name="pref_title_blurred_album_art">將專輯圖片模糊化</string> <string name="pref_title_blurred_album_art">將專輯圖片模糊化</string>
@ -96,7 +95,6 @@
<string name="pref_summary_classic_notification">使用經典通知樣式</string> <string name="pref_summary_classic_notification">使用經典通知樣式</string>
<string name="pref_summary_colored_notification">"\u72c0\u614b\u5217\u984f\u8272\u8207\u5c08\u8f2f\u5716\u7247\u984f\u8272\u4e00\u81f4"</string> <string name="pref_summary_colored_notification">"\u72c0\u614b\u5217\u984f\u8272\u8207\u5c08\u8f2f\u5716\u7247\u984f\u8272\u4e00\u81f4"</string>
<string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string> <string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string>
<string name="pref_summary_colored_navigation_bar">將專輯封面的主色調設為導航列的顏色。</string>
<string name="pref_summary_colored_app_shortcuts">將主色調設為應用快捷方式的顏色</string> <string name="pref_summary_colored_app_shortcuts">將主色調設為應用快捷方式的顏色</string>
<string name="pref_summary_audio_ducking">通知鈴聲、導航語音等。</string> <string name="pref_summary_audio_ducking">通知鈴聲、導航語音等。</string>
<string name="pref_summary_remember_last_tab">開啟時顯示最後使用的頁面</string> <string name="pref_summary_remember_last_tab">開啟時顯示最後使用的頁面</string>

View file

@ -111,7 +111,6 @@
<string name="colored_footers">Colored footers</string> <string name="colored_footers">Colored footers</string>
<string name="pref_title_general_theme">General Theme</string> <string name="pref_title_general_theme">General Theme</string>
<string name="pref_title_now_playing_screen_appearance">Appearance</string> <string name="pref_title_now_playing_screen_appearance">Appearance</string>
<string name="pref_title_navigation_bar">Colored Navigation Bar</string>
<string name="pref_title_app_shortcuts">Colored Shortcuts</string> <string name="pref_title_app_shortcuts">Colored Shortcuts</string>
<string name="pref_title_album_art_on_lockscreen">Show Album Cover</string> <string name="pref_title_album_art_on_lockscreen">Show Album Cover</string>
<string name="pref_title_blurred_album_art">Blur Album Cover</string> <string name="pref_title_blurred_album_art">Blur Album Cover</string>
@ -137,7 +136,6 @@
<string name="pref_summary_audio_ducking">Decrease the volume for notifications and other system sounds.</string> <string name="pref_summary_audio_ducking">Decrease the volume for notifications and other system sounds.</string>
<string name="pref_summary_gapless_playback">"This can cause playback issues on some devices."</string> <string name="pref_summary_gapless_playback">"This can cause playback issues on some devices."</string>
<string name="pref_summary_remember_shuffle">Shuffle mode will stay on when selecting a new list of songs for the queue.</string> <string name="pref_summary_remember_shuffle">Shuffle mode will stay on when selecting a new list of songs for the queue.</string>
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
<string name="pref_summary_remember_queue">Save the queue when closing the app so it can persist across sessions.</string> <string name="pref_summary_remember_queue">Save the queue when closing the app so it can persist across sessions.</string>
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string> <string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
<string name="pref_summary_remember_last_tab">Go to the last opened tab on launch.</string> <string name="pref_summary_remember_last_tab">Go to the last opened tab on launch.</string>

View file

@ -27,14 +27,6 @@
android:summary="@string/accent_color_desc" android:summary="@string/accent_color_desc"
android:title="@string/accent_color" /> android:title="@string/accent_color" />
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
app:iconSpaceReserved="false"
android:defaultValue="true"
android:key="colored_navigation_bar"
android:persistent="false"
android:summary="@string/pref_summary_colored_navigation_bar"
android:title="@string/pref_title_navigation_bar" />
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference <com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
app:iconSpaceReserved="false" app:iconSpaceReserved="false"
android:defaultValue="true" android:defaultValue="true"