Constants names
Proper namings
Bottom tabs slide animation
Added home album list style change
This commit is contained in:
Hemanth S 2020-09-25 01:51:32 +05:30
parent b9c12e20dd
commit 9850341d4c
81 changed files with 291 additions and 231 deletions

View file

@ -76,6 +76,8 @@ const val BLURRED_ALBUM_ART = "blurred_album_art"
const val NEW_BLUR_AMOUNT = "new_blur_amount" const val NEW_BLUR_AMOUNT = "new_blur_amount"
const val TOGGLE_HEADSET = "toggle_headset" const val TOGGLE_HEADSET = "toggle_headset"
const val GENERAL_THEME = "general_theme" const val GENERAL_THEME = "general_theme"
const val ACCENT_COLOR = "accent_color"
const val SHOULD_COLOR_APP_SHORTCUTS = "should_color_app_shortcuts"
const val CIRCULAR_ALBUM_ART = "circular_album_art" const val CIRCULAR_ALBUM_ART = "circular_album_art"
const val USER_NAME = "user_name" const val USER_NAME = "user_name"
const val TOGGLE_FULL_SCREEN = "toggle_full_screen" const val TOGGLE_FULL_SCREEN = "toggle_full_screen"
@ -87,6 +89,7 @@ const val BANNER_IMAGE_PATH = "banner_image_path"
const val ADAPTIVE_COLOR_APP = "adaptive_color_app" const val ADAPTIVE_COLOR_APP = "adaptive_color_app"
const val TOGGLE_SEPARATE_LINE = "toggle_separate_line" const val TOGGLE_SEPARATE_LINE = "toggle_separate_line"
const val HOME_ARTIST_GRID_STYLE = "home_artist_grid_style" const val HOME_ARTIST_GRID_STYLE = "home_artist_grid_style"
const val HOME_ALBUM_GRID_STYLE = "home_album_grid_style"
const val TOGGLE_ADD_CONTROLS = "toggle_add_controls" const val TOGGLE_ADD_CONTROLS = "toggle_add_controls"
const val ALBUM_COVER_STYLE = "album_cover_style_id" const val ALBUM_COVER_STYLE = "album_cover_style_id"
const val ALBUM_COVER_TRANSFORM = "album_cover_transform" const val ALBUM_COVER_TRANSFORM = "album_cover_transform"
@ -127,6 +130,7 @@ const val ALBUM_ARTISTS_ONLY = "album_artists_only"
const val ALBUM_DETAIL_SONG_SORT_ORDER = "album_detail_song_sort_order" const val ALBUM_DETAIL_SONG_SORT_ORDER = "album_detail_song_sort_order"
const val LYRICS_OPTIONS = "lyrics_tab_position" const val LYRICS_OPTIONS = "lyrics_tab_position"
const val CHOOSE_EQUALIZER = "choose_equalizer" const val CHOOSE_EQUALIZER = "choose_equalizer"
const val EQUALIZER = "equalizer"
const val TOGGLE_SHUFFLE = "toggle_shuffle" const val TOGGLE_SHUFFLE = "toggle_shuffle"
const val SONG_GRID_STYLE = "song_grid_style" const val SONG_GRID_STYLE = "song_grid_style"
const val PAUSE_ON_ZERO_VOLUME = "pause_on_zero_volume" const val PAUSE_ON_ZERO_VOLUME = "pause_on_zero_volume"

View file

@ -8,16 +8,13 @@ import android.view.ViewTreeObserver
import android.widget.FrameLayout import android.widget.FrameLayout
import androidx.annotation.LayoutRes import androidx.annotation.LayoutRes
import androidx.core.view.ViewCompat import androidx.core.view.ViewCompat
import androidx.core.view.isGone
import androidx.core.view.isVisible import androidx.core.view.isVisible
import androidx.fragment.app.Fragment import androidx.fragment.app.Fragment
import code.name.monkey.appthemehelper.util.ATHUtil import code.name.monkey.appthemehelper.util.ATHUtil
import code.name.monkey.appthemehelper.util.ColorUtil import code.name.monkey.appthemehelper.util.ColorUtil
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.RetroBottomSheetBehavior import code.name.monkey.retromusic.RetroBottomSheetBehavior
import code.name.monkey.retromusic.extensions.hide import code.name.monkey.retromusic.extensions.*
import code.name.monkey.retromusic.extensions.show
import code.name.monkey.retromusic.extensions.whichFragment
import code.name.monkey.retromusic.fragments.LibraryViewModel import code.name.monkey.retromusic.fragments.LibraryViewModel
import code.name.monkey.retromusic.fragments.MiniPlayerFragment import code.name.monkey.retromusic.fragments.MiniPlayerFragment
import code.name.monkey.retromusic.fragments.NowPlayingScreen import code.name.monkey.retromusic.fragments.NowPlayingScreen
@ -322,43 +319,35 @@ abstract class AbsSlidingMusicPanelActivity : AbsMusicServiceActivity() {
val isQueueEmpty = MusicPlayerRemote.playingQueue.isEmpty() val isQueueEmpty = MusicPlayerRemote.playingQueue.isEmpty()
when (state) { when (state) {
EXPAND -> { EXPAND -> {
println("EXPAND")
expandPanel() expandPanel()
} }
HIDE -> { HIDE -> {
println("HIDE")
ViewCompat.setElevation(slidingPanel, 0f) ViewCompat.setElevation(slidingPanel, 0f)
ViewCompat.setElevation(bottomNavigationView, 10f) ViewCompat.setElevation(bottomNavigationView, 10f)
bottomSheetBehavior.isHideable = true bottomSheetBehavior.isHideable = true
bottomSheetBehavior.setPeekHeight(0, false) bottomSheetBehavior.peekHeightAnimate(0)
bottomNavigationView.translateXAnimate(0f)
bottomSheetBehavior.state = STATE_COLLAPSED bottomSheetBehavior.state = STATE_COLLAPSED
} }
COLLAPSED_WITH -> { COLLAPSED_WITH -> {
println("COLLAPSED_WITH")
val heightOfBar = bottomNavigationView.height val heightOfBar = bottomNavigationView.height
val height = if (isQueueEmpty) 0 else (heightOfBar * 2) - 24
ViewCompat.setElevation(bottomNavigationView, 10f) ViewCompat.setElevation(bottomNavigationView, 10f)
ViewCompat.setElevation(slidingPanel, 10f) ViewCompat.setElevation(slidingPanel, 10f)
bottomSheetBehavior.isHideable = false bottomSheetBehavior.isHideable = false
bottomSheetBehavior.setPeekHeight( bottomSheetBehavior.peekHeightAnimate(height)
if (isQueueEmpty) 0 else (heightOfBar * 2) - 24, bottomNavigationView.translateXAnimate(0f)
false
)
bottomNavigationView.isVisible = true
} }
COLLAPSED_WITHOUT -> { COLLAPSED_WITHOUT -> {
println("COLLAPSED_WITHOUT")
val heightOfBar = bottomNavigationView.height val heightOfBar = bottomNavigationView.height
val height = if (isQueueEmpty) 0 else heightOfBar - 24
ViewCompat.setElevation(bottomNavigationView, 10f) ViewCompat.setElevation(bottomNavigationView, 10f)
ViewCompat.setElevation(slidingPanel, 10f) ViewCompat.setElevation(slidingPanel, 10f)
bottomSheetBehavior.isHideable = false bottomSheetBehavior.isHideable = false
bottomSheetBehavior.setPeekHeight( bottomSheetBehavior.peekHeightAnimate(height)
if (isQueueEmpty) 0 else heightOfBar - 24, bottomNavigationView.translateXAnimate(150f)
false
)
bottomNavigationView.isGone = true
} }
else -> { else -> {
println("ELSE")
bottomSheetBehavior.isHideable = true bottomSheetBehavior.isHideable = true
bottomSheetBehavior.peekHeight = 0 bottomSheetBehavior.peekHeight = 0
collapsePanel() collapsePanel()

View file

@ -225,10 +225,10 @@ class HomeAdapter(
} }
fun artistsAdapter(artists: List<Artist>) = fun artistsAdapter(artists: List<Artist>) =
ArtistAdapter(activity, artists, PreferenceUtil.homeGridStyle, null, this) ArtistAdapter(activity, artists, PreferenceUtil.homeArtistGridStyle, null, this)
fun albumAdapter(albums: List<Album>) = fun albumAdapter(albums: List<Album>) =
AlbumAdapter(activity, albums, R.layout.item_image, null, this) AlbumAdapter(activity, albums, PreferenceUtil.homeAlbumGridStyle, null, this)
fun gridLayoutManager() = GridLayoutManager(activity, 1, GridLayoutManager.HORIZONTAL, false) fun gridLayoutManager() = GridLayoutManager(activity, 1, GridLayoutManager.HORIZONTAL, false)
fun linearLayoutManager() = LinearLayoutManager(activity, LinearLayoutManager.HORIZONTAL, false) fun linearLayoutManager() = LinearLayoutManager(activity, LinearLayoutManager.HORIZONTAL, false)

View file

@ -98,14 +98,14 @@ class AlbumCoverPagerAdapter(
private fun showLyricsDialog() { private fun showLyricsDialog() {
lifecycleScope.launch(Dispatchers.IO) { lifecycleScope.launch(Dispatchers.IO) {
val data: String = MusicUtil.getLyrics(song) ?: "No lyrics found" val data: String? = MusicUtil.getLyrics(song)
withContext(Dispatchers.Main) { withContext(Dispatchers.Main) {
MaterialAlertDialogBuilder( MaterialAlertDialogBuilder(
requireContext(), requireContext(),
R.style.ThemeOverlay_MaterialComponents_Dialog_Alert R.style.ThemeOverlay_MaterialComponents_Dialog_Alert
).apply { ).apply {
setTitle(song.title) setTitle(song.title)
setMessage(data) setMessage(if (data.isNullOrEmpty()) "No lyrics found" else data)
setNegativeButton(R.string.synced_lyrics) { _, _ -> setNegativeButton(R.string.synced_lyrics) { _, _ ->
NavigationUtil.goToLyrics(requireActivity()) NavigationUtil.goToLyrics(requireActivity())
} }

View file

@ -20,6 +20,8 @@ import android.view.View
import android.view.ViewGroup import android.view.ViewGroup
import android.widget.EditText import android.widget.EditText
import androidx.annotation.LayoutRes import androidx.annotation.LayoutRes
import androidx.core.animation.doOnEnd
import androidx.core.animation.doOnStart
import code.name.monkey.appthemehelper.ThemeStore import code.name.monkey.appthemehelper.ThemeStore
import code.name.monkey.appthemehelper.util.TintHelper import code.name.monkey.appthemehelper.util.TintHelper
import com.google.android.material.bottomsheet.BottomSheetBehavior import com.google.android.material.bottomsheet.BottomSheetBehavior
@ -50,9 +52,20 @@ fun EditText.appHandleColor(): EditText {
fun View.translateXAnimate(value: Float) { fun View.translateXAnimate(value: Float) {
println("translateXAnimate $value")
ObjectAnimator.ofFloat(this, "translationY", value) ObjectAnimator.ofFloat(this, "translationY", value)
.apply { .apply {
duration = 300 duration = 300
doOnStart {
if (value == 0f) {
show()
}
}
doOnEnd {
if (value != 0f) {
hide()
}
}
start() start()
} }
} }

View file

@ -63,7 +63,6 @@ abstract class AbsSettingsFragment : ATEPreferenceFragmentCompat() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
setDivider(ColorDrawable(Color.TRANSPARENT)) setDivider(ColorDrawable(Color.TRANSPARENT))
//listView.setBackgroundColor(ATHUtil.resolveColor(requireContext(), R.attr.colorSurface))
listView.overScrollMode = View.OVER_SCROLL_NEVER listView.overScrollMode = View.OVER_SCROLL_NEVER
listView.setPadding(0, 0, 0, 0) listView.setPadding(0, 0, 0, 0)
listView.setPaddingRelative(0, 0, 0, 0) listView.setPaddingRelative(0, 0, 0, 0)

View file

@ -18,6 +18,7 @@ import android.content.Intent
import android.media.audiofx.AudioEffect import android.media.audiofx.AudioEffect
import android.os.Bundle import android.os.Bundle
import androidx.preference.Preference import androidx.preference.Preference
import code.name.monkey.retromusic.EQUALIZER
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.util.NavigationUtil import code.name.monkey.retromusic.util.NavigationUtil
@ -28,14 +29,14 @@ import code.name.monkey.retromusic.util.NavigationUtil
class AudioSettings : AbsSettingsFragment() { class AudioSettings : AbsSettingsFragment() {
override fun invalidateSettings() { override fun invalidateSettings() {
val findPreference: Preference = findPreference("equalizer")!! val findPreference: Preference? = findPreference(EQUALIZER)
if (!hasEqualizer()) { if (!hasEqualizer()) {
findPreference.isEnabled = false findPreference?.isEnabled = false
findPreference.summary = resources.getString(R.string.no_equalizer) findPreference?.summary = resources.getString(R.string.no_equalizer)
} else { } else {
findPreference.isEnabled = true findPreference?.isEnabled = true
} }
findPreference.setOnPreferenceClickListener { findPreference?.setOnPreferenceClickListener {
NavigationUtil.openEqualizer(requireActivity()) NavigationUtil.openEqualizer(requireActivity())
true true
} }

View file

@ -17,6 +17,7 @@ package code.name.monkey.retromusic.fragments.settings
import android.os.Bundle import android.os.Bundle
import android.view.View import android.view.View
import androidx.preference.Preference import androidx.preference.Preference
import code.name.monkey.retromusic.AUTO_DOWNLOAD_IMAGES_POLICY
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.R
/** /**
@ -25,7 +26,7 @@ import code.name.monkey.retromusic.R
class ImageSettingFragment : AbsSettingsFragment() { class ImageSettingFragment : AbsSettingsFragment() {
override fun invalidateSettings() { override fun invalidateSettings() {
val autoDownloadImagesPolicy: Preference = findPreference("auto_download_images_policy")!! val autoDownloadImagesPolicy: Preference = findPreference(AUTO_DOWNLOAD_IMAGES_POLICY)!!
setSummary(autoDownloadImagesPolicy) setSummary(autoDownloadImagesPolicy)
autoDownloadImagesPolicy.setOnPreferenceChangeListener { _, o -> autoDownloadImagesPolicy.setOnPreferenceChangeListener { _, o ->
setSummary(autoDownloadImagesPolicy, o) setSummary(autoDownloadImagesPolicy, o)
@ -39,7 +40,7 @@ class ImageSettingFragment : AbsSettingsFragment() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
val preference: Preference? = findPreference("auto_download_images_policy") val preference: Preference? = findPreference(AUTO_DOWNLOAD_IMAGES_POLICY)
preference?.let { setSummary(it) } preference?.let { setSummary(it) }
} }
} }

View file

@ -21,6 +21,7 @@ import android.os.Bundle
import androidx.preference.Preference import androidx.preference.Preference
import androidx.preference.TwoStatePreference import androidx.preference.TwoStatePreference
import code.name.monkey.retromusic.CLASSIC_NOTIFICATION import code.name.monkey.retromusic.CLASSIC_NOTIFICATION
import code.name.monkey.retromusic.COLORED_NOTIFICATION
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.util.PreferenceUtil import code.name.monkey.retromusic.util.PreferenceUtil
@ -34,7 +35,7 @@ class NotificationSettingsFragment : AbsSettingsFragment(),
override fun onSharedPreferenceChanged(sharedPreferences: SharedPreferences?, key: String?) { override fun onSharedPreferenceChanged(sharedPreferences: SharedPreferences?, key: String?) {
if (key == CLASSIC_NOTIFICATION) { if (key == CLASSIC_NOTIFICATION) {
if (VERSION.SDK_INT >= VERSION_CODES.O) { if (VERSION.SDK_INT >= VERSION_CODES.O) {
findPreference<Preference>("colored_notification")?.isEnabled = findPreference<Preference>(COLORED_NOTIFICATION)?.isEnabled =
sharedPreferences?.getBoolean(key, false)!! sharedPreferences?.getBoolean(key, false)!!
} }
} }
@ -42,7 +43,7 @@ class NotificationSettingsFragment : AbsSettingsFragment(),
override fun invalidateSettings() { override fun invalidateSettings() {
val classicNotification: TwoStatePreference? = findPreference("classic_notification") val classicNotification: TwoStatePreference? = findPreference(CLASSIC_NOTIFICATION)
if (VERSION.SDK_INT < VERSION_CODES.N) { if (VERSION.SDK_INT < VERSION_CODES.N) {
classicNotification?.isVisible = false classicNotification?.isVisible = false
} else { } else {
@ -57,7 +58,7 @@ class NotificationSettingsFragment : AbsSettingsFragment(),
} }
} }
val coloredNotification: TwoStatePreference? = findPreference("colored_notification") val coloredNotification: TwoStatePreference? = findPreference(COLORED_NOTIFICATION)
if (VERSION.SDK_INT >= VERSION_CODES.O) { if (VERSION.SDK_INT >= VERSION_CODES.O) {
coloredNotification?.isEnabled = PreferenceUtil.isClassicNotification coloredNotification?.isEnabled = PreferenceUtil.isClassicNotification
} else { } else {

View file

@ -33,8 +33,8 @@ class NowPlayingSettingsFragment : AbsSettingsFragment(),
updateNowPlayingScreenSummary() updateNowPlayingScreenSummary()
updateAlbumCoverStyleSummary() updateAlbumCoverStyleSummary()
val carouselEffect: TwoStatePreference = findPreference("carousel_effect")!! val carouselEffect: TwoStatePreference? = findPreference(CAROUSEL_EFFECT)
carouselEffect.setOnPreferenceChangeListener { _, newValue -> carouselEffect?.setOnPreferenceChangeListener { _, newValue ->
if (newValue as Boolean && !App.isProVersion()) { if (newValue as Boolean && !App.isProVersion()) {
showProToastAndNavigate(getString(R.string.pref_title_toggle_carousel_effect)) showProToastAndNavigate(getString(R.string.pref_title_toggle_carousel_effect))
return@setOnPreferenceChangeListener false return@setOnPreferenceChangeListener false
@ -60,7 +60,7 @@ class NowPlayingSettingsFragment : AbsSettingsFragment(),
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
PreferenceUtil.registerOnSharedPreferenceChangedListener(this) PreferenceUtil.registerOnSharedPreferenceChangedListener(this)
val preference: Preference? = findPreference("album_cover_transform") val preference: Preference? = findPreference(ALBUM_COVER_TRANSFORM)
preference?.setOnPreferenceChangeListener { albumPrefs, newValue -> preference?.setOnPreferenceChangeListener { albumPrefs, newValue ->
setSummary(albumPrefs, newValue) setSummary(albumPrefs, newValue)
true true

View file

@ -18,6 +18,8 @@ import android.os.Bundle
import android.view.View import android.view.View
import androidx.preference.Preference import androidx.preference.Preference
import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
import code.name.monkey.retromusic.LANGUAGE_NAME
import code.name.monkey.retromusic.LAST_ADDED_CUTOFF
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.fragments.LibraryViewModel import code.name.monkey.retromusic.fragments.LibraryViewModel
import code.name.monkey.retromusic.fragments.ReloadType.HomeSections import code.name.monkey.retromusic.fragments.ReloadType.HomeSections
@ -29,8 +31,9 @@ import org.koin.androidx.viewmodel.ext.android.sharedViewModel
class OtherSettingsFragment : AbsSettingsFragment() { class OtherSettingsFragment : AbsSettingsFragment() {
private val libraryViewModel by sharedViewModel<LibraryViewModel>() private val libraryViewModel by sharedViewModel<LibraryViewModel>()
override fun invalidateSettings() { override fun invalidateSettings() {
val languagePreference: ATEListPreference? = findPreference("language_name") val languagePreference: ATEListPreference? = findPreference(LANGUAGE_NAME)
languagePreference?.setOnPreferenceChangeListener { _, _ -> languagePreference?.setOnPreferenceChangeListener { _, _ ->
requireActivity().recreate() requireActivity().recreate()
return@setOnPreferenceChangeListener true return@setOnPreferenceChangeListener true
@ -43,13 +46,13 @@ class OtherSettingsFragment : AbsSettingsFragment() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
val preference: Preference? = findPreference("last_added_interval") val preference: Preference? = findPreference(LAST_ADDED_CUTOFF)
preference?.setOnPreferenceChangeListener { lastAdded, newValue -> preference?.setOnPreferenceChangeListener { lastAdded, newValue ->
setSummary(lastAdded, newValue) setSummary(lastAdded, newValue)
libraryViewModel.forceReload(HomeSections) libraryViewModel.forceReload(HomeSections)
true true
} }
val languagePreference: Preference? = findPreference("language_name") val languagePreference: Preference? = findPreference(LANGUAGE_NAME)
languagePreference?.setOnPreferenceChangeListener { prefs, newValue -> languagePreference?.setOnPreferenceChangeListener { prefs, newValue ->
setSummary(prefs, newValue) setSummary(prefs, newValue)
true true

View file

@ -18,13 +18,13 @@ import android.os.Bundle
import android.view.View import android.view.View
import androidx.preference.TwoStatePreference import androidx.preference.TwoStatePreference
import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
import code.name.monkey.retromusic.R import code.name.monkey.retromusic.*
class PersonalizeSettingsFragment : AbsSettingsFragment() { class PersonalizeSettingsFragment : AbsSettingsFragment() {
override fun invalidateSettings() { override fun invalidateSettings() {
val toggleFullScreen: TwoStatePreference = findPreference("toggle_full_screen")!! val toggleFullScreen: TwoStatePreference? = findPreference(TOGGLE_FULL_SCREEN)
toggleFullScreen.setOnPreferenceChangeListener { _, _ -> toggleFullScreen?.setOnPreferenceChangeListener { _, _ ->
requireActivity().recreate() requireActivity().recreate()
true true
} }
@ -36,12 +36,17 @@ class PersonalizeSettingsFragment : AbsSettingsFragment() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
val homeArtistStyle: ATEListPreference? = findPreference("home_artist_grid_style") val homeArtistStyle: ATEListPreference? = findPreference(HOME_ARTIST_GRID_STYLE)
homeArtistStyle?.setOnPreferenceChangeListener { preference, newValue -> homeArtistStyle?.setOnPreferenceChangeListener { preference, newValue ->
setSummary(preference, newValue) setSummary(preference, newValue)
true true
} }
val tabTextMode: ATEListPreference? = findPreference("tab_text_mode") val homeAlbumStyle: ATEListPreference? = findPreference(HOME_ALBUM_GRID_STYLE)
homeAlbumStyle?.setOnPreferenceChangeListener { preference, newValue ->
setSummary(preference, newValue)
true
}
val tabTextMode: ATEListPreference? = findPreference(TAB_TEXT_MODE)
tabTextMode?.setOnPreferenceChangeListener { prefs, newValue -> tabTextMode?.setOnPreferenceChangeListener { prefs, newValue ->
setSummary(prefs, newValue) setSummary(prefs, newValue)
true true

View file

@ -23,9 +23,7 @@ import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEColorPreference
import code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference import code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
import code.name.monkey.appthemehelper.util.ColorUtil import code.name.monkey.appthemehelper.util.ColorUtil
import code.name.monkey.appthemehelper.util.VersionUtils import code.name.monkey.appthemehelper.util.VersionUtils
import code.name.monkey.retromusic.App import code.name.monkey.retromusic.*
import code.name.monkey.retromusic.DESATURATED_COLOR
import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.appshortcuts.DynamicShortcutManager import code.name.monkey.retromusic.appshortcuts.DynamicShortcutManager
import code.name.monkey.retromusic.util.PreferenceUtil import code.name.monkey.retromusic.util.PreferenceUtil
import com.afollestad.materialdialogs.color.ColorChooserDialog import com.afollestad.materialdialogs.color.ColorChooserDialog
@ -36,7 +34,7 @@ import com.afollestad.materialdialogs.color.ColorChooserDialog
class ThemeSettingsFragment : AbsSettingsFragment() { class ThemeSettingsFragment : AbsSettingsFragment() {
override fun invalidateSettings() { override fun invalidateSettings() {
val generalTheme: Preference? = findPreference("general_theme") val generalTheme: Preference? = findPreference(GENERAL_THEME)
generalTheme?.let { generalTheme?.let {
setSummary(it) setSummary(it)
it.setOnPreferenceChangeListener { _, newValue -> it.setOnPreferenceChangeListener { _, newValue ->
@ -53,11 +51,10 @@ class ThemeSettingsFragment : AbsSettingsFragment() {
} }
} }
val accentColorPref: ATEColorPreference = findPreference("accent_color")!! val accentColorPref: ATEColorPreference? = findPreference(ACCENT_COLOR)
val accentColor = ThemeStore.accentColor(requireContext()) val accentColor = ThemeStore.accentColor(requireContext())
accentColorPref.setColor(accentColor, ColorUtil.darkenColor(accentColor)) accentColorPref?.setColor(accentColor, ColorUtil.darkenColor(accentColor))
accentColorPref?.setOnPreferenceClickListener {
accentColorPref.setOnPreferenceClickListener {
ColorChooserDialog.Builder(requireContext(), R.string.accent_color) ColorChooserDialog.Builder(requireContext(), R.string.accent_color)
.accentMode(true) .accentMode(true)
.allowUserColorInput(true) .allowUserColorInput(true)
@ -66,7 +63,7 @@ class ThemeSettingsFragment : AbsSettingsFragment() {
.show(requireActivity()) .show(requireActivity())
return@setOnPreferenceClickListener true return@setOnPreferenceClickListener true
} }
val blackTheme: ATESwitchPreference? = findPreference("black_theme") val blackTheme: ATESwitchPreference? = findPreference(BLACK_THEME)
blackTheme?.setOnPreferenceChangeListener { _, _ -> blackTheme?.setOnPreferenceChangeListener { _, _ ->
if (!App.isProVersion()) { if (!App.isProVersion()) {
showProToastAndNavigate("Just Black theme") showProToastAndNavigate("Just Black theme")
@ -94,12 +91,12 @@ class ThemeSettingsFragment : AbsSettingsFragment() {
} }
val colorAppShortcuts: TwoStatePreference = findPreference("should_color_app_shortcuts")!! val colorAppShortcuts: TwoStatePreference? = findPreference(SHOULD_COLOR_APP_SHORTCUTS)
if (!VersionUtils.hasNougatMR()) { if (!VersionUtils.hasNougatMR()) {
colorAppShortcuts.isVisible = false colorAppShortcuts?.isVisible = false
} else { } else {
colorAppShortcuts.isChecked = PreferenceUtil.isColoredAppShortcuts colorAppShortcuts?.isChecked = PreferenceUtil.isColoredAppShortcuts
colorAppShortcuts.setOnPreferenceChangeListener { _, newValue -> colorAppShortcuts?.setOnPreferenceChangeListener { _, newValue ->
PreferenceUtil.isColoredAppShortcuts = newValue as Boolean PreferenceUtil.isColoredAppShortcuts = newValue as Boolean
DynamicShortcutManager(requireContext()).updateDynamicShortcuts() DynamicShortcutManager(requireContext()).updateDynamicShortcuts()
true true

View file

@ -397,10 +397,9 @@ object PreferenceUtil {
} }
} }
val homeGridStyle: Int val homeArtistGridStyle: Int
get() { get() {
val position = val position = sharedPreferences.getStringOrDefault(
sharedPreferences.getStringOrDefault(
HOME_ARTIST_GRID_STYLE, "0" HOME_ARTIST_GRID_STYLE, "0"
).toInt() ).toInt()
val typedArray = val typedArray =
@ -412,6 +411,18 @@ object PreferenceUtil {
} else layoutRes } else layoutRes
} }
val homeAlbumGridStyle: Int
get() {
val position = sharedPreferences.getStringOrDefault(HOME_ALBUM_GRID_STYLE, "0").toInt()
val typedArray =
App.getContext().resources.obtainTypedArray(R.array.pref_home_grid_style_layout)
val layoutRes = typedArray.getResourceId(position, 0)
typedArray.recycle()
return if (layoutRes == 0) {
R.layout.item_artist
} else layoutRes
}
val tabTitleMode: Int val tabTitleMode: Int
get() { get() {
return when (sharedPreferences.getStringOrDefault( return when (sharedPreferences.getStringOrDefault(

View file

@ -68,7 +68,9 @@
android:id="@+id/container" android:id="@+id/container"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
android:descendantFocusability="beforeDescendants"
android:fillViewport="true" android:fillViewport="true"
android:focusableInTouchMode="true"
android:overScrollMode="never" android:overScrollMode="never"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"

View file

@ -69,6 +69,8 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
android:layout_weight="1" android:layout_weight="1"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:overScrollMode="never" android:overScrollMode="never"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"

View file

@ -16,6 +16,8 @@
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container" android:id="@+id/container"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_marginStart="@dimen/toolbar_margin_horizontal" android:layout_marginStart="@dimen/toolbar_margin_horizontal"

View file

@ -20,6 +20,8 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_marginStart="@dimen/toolbar_margin_horizontal" android:layout_marginStart="@dimen/toolbar_margin_horizontal"
android:layout_marginEnd="@dimen/toolbar_margin_horizontal" android:layout_marginEnd="@dimen/toolbar_margin_horizontal"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:overScrollMode="never" android:overScrollMode="never"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"> app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">

View file

@ -32,6 +32,8 @@
<androidx.core.widget.NestedScrollView <androidx.core.widget.NestedScrollView
android:id="@+id/container" android:id="@+id/container"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:overScrollMode="never" android:overScrollMode="never"

View file

@ -33,6 +33,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:overScrollMode="never" android:overScrollMode="never"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"> app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
<androidx.constraintlayout.widget.ConstraintLayout <androidx.constraintlayout.widget.ConstraintLayout

View file

@ -16,6 +16,8 @@
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container" android:id="@+id/container"
android:overScrollMode="never" android:overScrollMode="never"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"> app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">

View file

@ -17,6 +17,8 @@
android:id="@+id/container" android:id="@+id/container"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:overScrollMode="never" android:overScrollMode="never"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"> app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Může zvýšit kvalitu obalu alba, ale způsobí pomalejší načítání snímků. Tuto možnost povolte pouze v případě potíží s uměleckými díly s nízkým rozlišením.</string> <string name="pref_summary_ignore_media_store_artwork">Může zvýšit kvalitu obalu alba, ale způsobí pomalejší načítání snímků. Tuto možnost povolte pouze v případě potíží s uměleckými díly s nízkým rozlišením.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Přehrávání bez mezery</string> <string name="pref_title_gapless_playback">Přehrávání bez mezery</string>
<string name="pref_title_general_theme">Hlavní téma</string> <string name="pref_title_general_theme">Hlavní téma</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignorovat obaly v zařízení</string> <string name="pref_title_ignore_media_store_artwork">Ignorovat obaly v zařízení</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Μπορεί να προκαλέσει προβλήματα με την αναπαραγωγή σε κάποιες συσκευές."</string> <string name="pref_summary_gapless_playback">"Μπορεί να προκαλέσει προβλήματα με την αναπαραγωγή σε κάποιες συσκευές."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Μπορεί να αυξήσει την ποιότητα των εξωφύλλων άλμπουμ, αλλά προκαλεί αργή φόρτωση εικόνων. Ενεργοποιήστε αυτή την επίλογη μόνο εαν αντιμετωπίζετε προβλήματα με εξώφυλλα χαμηλής ανάλυσης.</string> <string name="pref_summary_ignore_media_store_artwork">Μπορεί να αυξήσει την ποιότητα των εξωφύλλων άλμπουμ, αλλά προκαλεί αργή φόρτωση εικόνων. Ενεργοποιήστε αυτή την επίλογη μόνο εαν αντιμετωπίζετε προβλήματα με εξώφυλλα χαμηλής ανάλυσης.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Ενεργοποίηση διακοπτών ρύθμισης στην οθόνη κλειδώματος.</string> <string name="pref_summary_lock_screen">Ενεργοποίηση διακοπτών ρύθμισης στην οθόνη κλειδώματος.</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Αναπαραγωγή χωρίς κενά</string> <string name="pref_title_gapless_playback">Αναπαραγωγή χωρίς κενά</string>
<string name="pref_title_general_theme">Γενικό θέμα</string> <string name="pref_title_general_theme">Γενικό θέμα</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Παράληψη Media Store για εξώφυλλα</string> <string name="pref_title_ignore_media_store_artwork">Παράληψη Media Store για εξώφυλλα</string>
<string name="pref_title_last_added_interval">Χρονικό διάστημα playlist \"Προστέθηκε τελευταία\"</string> <string name="pref_title_last_added_interval">Χρονικό διάστημα playlist \"Προστέθηκε τελευταία\"</string>
<string name="pref_title_lock_screen">Full screen Ρυθμίσεις</string> <string name="pref_title_lock_screen">Full screen Ρυθμίσεις</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -347,7 +347,7 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="pref_title_general_theme">Tema generale</string> <string name="pref_title_general_theme">Tema generale</string>
<string name="pref_title_genre_toggle">Mostra scheda Genere</string> <string name="pref_title_genre_toggle">Mostra scheda Genere</string>
<string name="pref_title_home_artist_grid_style">Griglia schermata artista</string> <string name="pref_title_home_artist_grid_style">Griglia schermata artista</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignora le copertine del Media Store</string> <string name="pref_title_ignore_media_store_artwork">Ignora le copertine del Media Store</string>
<string name="pref_title_last_added_interval">Intervallo playlist ultimi aggiunti</string> <string name="pref_title_last_added_interval">Intervallo playlist ultimi aggiunti</string>
<string name="pref_title_lock_screen">Controlli a schermo intero</string> <string name="pref_title_lock_screen">Controlli a schermo intero</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"몇몇 기기에서 재생 문제를 유발할 수 있습니다."</string> <string name="pref_summary_gapless_playback">"몇몇 기기에서 재생 문제를 유발할 수 있습니다."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">앨범 커버의 품질을 향상시킬 수 있지만 이미지를 불러오는 시간이 늘어납니다. 저해상도 이미지를 불러오는 데 문제가 있는 경우에만 사용하십시오.</string> <string name="pref_summary_ignore_media_store_artwork">앨범 커버의 품질을 향상시킬 수 있지만 이미지를 불러오는 시간이 늘어납니다. 저해상도 이미지를 불러오는 데 문제가 있는 경우에만 사용하십시오.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Retro music에서 제공하는 자체 잠금 화면 사용</string> <string name="pref_summary_lock_screen">Retro music에서 제공하는 자체 잠금 화면 사용</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">지연없이 재생하기</string> <string name="pref_title_gapless_playback">지연없이 재생하기</string>
<string name="pref_title_general_theme">기본 테마</string> <string name="pref_title_general_theme">기본 테마</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">미디어 저장소 커버 무시</string> <string name="pref_title_ignore_media_store_artwork">미디어 저장소 커버 무시</string>
<string name="pref_title_last_added_interval">최근 추가된 음악 간격 지정</string> <string name="pref_title_last_added_interval">최근 추가된 음악 간격 지정</string>
<string name="pref_title_lock_screen">전체 화면 컨트롤</string> <string name="pref_title_lock_screen">전체 화면 컨트롤</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Kan afspeelproblemen veroorzaken op sommige toestellen"</string> <string name="pref_summary_gapless_playback">"Kan afspeelproblemen veroorzaken op sommige toestellen"</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Kan album cover kwaliteit verbeteren, maar veroorzaakt langere laadtijden. Alleen aanzetten als je problemen hebt met lage resolutie artworks</string> <string name="pref_summary_ignore_media_store_artwork">Kan album cover kwaliteit verbeteren, maar veroorzaakt langere laadtijden. Alleen aanzetten als je problemen hebt met lage resolutie artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Zet besturing knoppen aan op vergrendelscherm</string> <string name="pref_summary_lock_screen">Zet besturing knoppen aan op vergrendelscherm</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Afspelen zonder pauzes</string> <string name="pref_title_gapless_playback">Afspelen zonder pauzes</string>
<string name="pref_title_general_theme">Basis thema</string> <string name="pref_title_general_theme">Basis thema</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Negeer media store covers</string> <string name="pref_title_ignore_media_store_artwork">Negeer media store covers</string>
<string name="pref_title_last_added_interval">Laatst toegevoegde afspeellijst interval</string> <string name="pref_title_last_added_interval">Laatst toegevoegde afspeellijst interval</string>
<string name="pref_title_lock_screen">Volledig scherm besturing knoppen</string> <string name="pref_title_lock_screen">Volledig scherm besturing knoppen</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Poate mări calitatea copertei de album, dar cauzează încărcarea mai lentă a imaginilor. Activați această opțiune doar dacă aveți probleme cu coperta de album cu rezoluție mică.</string> <string name="pref_summary_ignore_media_store_artwork">Poate mări calitatea copertei de album, dar cauzează încărcarea mai lentă a imaginilor. Activați această opțiune doar dacă aveți probleme cu coperta de album cu rezoluție mică.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Comenzi pe ecranul de blocare pentru Retro music.</string> <string name="pref_summary_lock_screen">Comenzi pe ecranul de blocare pentru Retro music.</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Redare \"Gapless\"</string> <string name="pref_title_gapless_playback">Redare \"Gapless\"</string>
<string name="pref_title_general_theme">Temă</string> <string name="pref_title_general_theme">Temă</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignoră copertele de pe Magazinul Media</string> <string name="pref_title_ignore_media_store_artwork">Ignoră copertele de pe Magazinul Media</string>
<string name="pref_title_last_added_interval">Ultimul interval de playlist adăugat</string> <string name="pref_title_last_added_interval">Ultimul interval de playlist adăugat</string>
<string name="pref_title_lock_screen">Comenzi ecran complet</string> <string name="pref_title_lock_screen">Comenzi ecran complet</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Moze prouzrokovati probleme na pojedinim uredjajima."</string> <string name="pref_summary_gapless_playback">"Moze prouzrokovati probleme na pojedinim uredjajima."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">oze poboljsati kvalitet omota albuma ali uzrokuje njegovo sporije ucitavanje. Omoguci ovo samo ukoliko imas problema sa losim kvalitetom slike omota albuma.</string> <string name="pref_summary_ignore_media_store_artwork">oze poboljsati kvalitet omota albuma ali uzrokuje njegovo sporije ucitavanje. Omoguci ovo samo ukoliko imas problema sa losim kvalitetom slike omota albuma.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Prikazuj kontrole na zakljucanom ekranu</string> <string name="pref_summary_lock_screen">Prikazuj kontrole na zakljucanom ekranu</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Neuznemiravano reprodukovanje</string> <string name="pref_title_gapless_playback">Neuznemiravano reprodukovanje</string>
<string name="pref_title_general_theme">Opsta tema</string> <string name="pref_title_general_theme">Opsta tema</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignorisi omote sa prodavnice</string> <string name="pref_title_ignore_media_store_artwork">Ignorisi omote sa prodavnice</string>
<string name="pref_title_last_added_interval">Interval plejliste poslednje dodato</string> <string name="pref_title_last_added_interval">Interval plejliste poslednje dodato</string>
<string name="pref_title_lock_screen">Kontrole preko celog ekrana</string> <string name="pref_title_lock_screen">Kontrole preko celog ekrana</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string> <string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">提高專輯封面的成像品質,但會造成較長的讀取時間。建議只有在您對低畫質的專輯封面有問題時才開啟此選項。</string> <string name="pref_summary_ignore_media_store_artwork">提高專輯封面的成像品質,但會造成較長的讀取時間。建議只有在您對低畫質的專輯封面有問題時才開啟此選項。</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">無縫播放</string> <string name="pref_title_gapless_playback">無縫播放</string>
<string name="pref_title_general_theme">主題</string> <string name="pref_title_general_theme">主題</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">忽略音訊檔內嵌的專輯封面</string> <string name="pref_title_ignore_media_store_artwork">忽略音訊檔內嵌的專輯封面</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Může zvýšit kvalitu obalu alba, ale způsobí pomalejší načítání snímků. Tuto možnost povolte pouze v případě potíží s uměleckými díly s nízkým rozlišením.</string> <string name="pref_summary_ignore_media_store_artwork">Může zvýšit kvalitu obalu alba, ale způsobí pomalejší načítání snímků. Tuto možnost povolte pouze v případě potíží s uměleckými díly s nízkým rozlišením.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Přehrávání bez mezery</string> <string name="pref_title_gapless_playback">Přehrávání bez mezery</string>
<string name="pref_title_general_theme">Hlavní téma</string> <string name="pref_title_general_theme">Hlavní téma</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignorovat obaly v zařízení</string> <string name="pref_title_ignore_media_store_artwork">Ignorovat obaly v zařízení</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Μπορεί να προκαλέσει προβλήματα με την αναπαραγωγή σε κάποιες συσκευές."</string> <string name="pref_summary_gapless_playback">"Μπορεί να προκαλέσει προβλήματα με την αναπαραγωγή σε κάποιες συσκευές."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Μπορεί να αυξήσει την ποιότητα των εξωφύλλων άλμπουμ, αλλά προκαλεί αργή φόρτωση εικόνων. Ενεργοποιήστε αυτή την επίλογη μόνο εαν αντιμετωπίζετε προβλήματα με εξώφυλλα χαμηλής ανάλυσης.</string> <string name="pref_summary_ignore_media_store_artwork">Μπορεί να αυξήσει την ποιότητα των εξωφύλλων άλμπουμ, αλλά προκαλεί αργή φόρτωση εικόνων. Ενεργοποιήστε αυτή την επίλογη μόνο εαν αντιμετωπίζετε προβλήματα με εξώφυλλα χαμηλής ανάλυσης.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Ενεργοποίηση διακοπτών ρύθμισης στην οθόνη κλειδώματος.</string> <string name="pref_summary_lock_screen">Ενεργοποίηση διακοπτών ρύθμισης στην οθόνη κλειδώματος.</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Αναπαραγωγή χωρίς κενά</string> <string name="pref_title_gapless_playback">Αναπαραγωγή χωρίς κενά</string>
<string name="pref_title_general_theme">Γενικό θέμα</string> <string name="pref_title_general_theme">Γενικό θέμα</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Παράληψη Media Store για εξώφυλλα</string> <string name="pref_title_ignore_media_store_artwork">Παράληψη Media Store για εξώφυλλα</string>
<string name="pref_title_last_added_interval">Χρονικό διάστημα playlist \"Προστέθηκε τελευταία\"</string> <string name="pref_title_last_added_interval">Χρονικό διάστημα playlist \"Προστέθηκε τελευταία\"</string>
<string name="pref_title_lock_screen">Full screen Ρυθμίσεις</string> <string name="pref_title_lock_screen">Full screen Ρυθμίσεις</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -347,7 +347,7 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="pref_title_general_theme">Tema generale</string> <string name="pref_title_general_theme">Tema generale</string>
<string name="pref_title_genre_toggle">Mostra scheda Genere</string> <string name="pref_title_genre_toggle">Mostra scheda Genere</string>
<string name="pref_title_home_artist_grid_style">Griglia schermata artista</string> <string name="pref_title_home_artist_grid_style">Griglia schermata artista</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignora le copertine del Media Store</string> <string name="pref_title_ignore_media_store_artwork">Ignora le copertine del Media Store</string>
<string name="pref_title_last_added_interval">Intervallo playlist ultimi aggiunti</string> <string name="pref_title_last_added_interval">Intervallo playlist ultimi aggiunti</string>
<string name="pref_title_lock_screen">Controlli a schermo intero</string> <string name="pref_title_lock_screen">Controlli a schermo intero</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"몇몇 기기에서 재생 문제를 유발할 수 있습니다."</string> <string name="pref_summary_gapless_playback">"몇몇 기기에서 재생 문제를 유발할 수 있습니다."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">앨범 커버의 품질을 향상시킬 수 있지만 이미지를 불러오는 시간이 늘어납니다. 저해상도 이미지를 불러오는 데 문제가 있는 경우에만 사용하십시오.</string> <string name="pref_summary_ignore_media_store_artwork">앨범 커버의 품질을 향상시킬 수 있지만 이미지를 불러오는 시간이 늘어납니다. 저해상도 이미지를 불러오는 데 문제가 있는 경우에만 사용하십시오.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Retro music에서 제공하는 자체 잠금 화면 사용</string> <string name="pref_summary_lock_screen">Retro music에서 제공하는 자체 잠금 화면 사용</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">지연없이 재생하기</string> <string name="pref_title_gapless_playback">지연없이 재생하기</string>
<string name="pref_title_general_theme">기본 테마</string> <string name="pref_title_general_theme">기본 테마</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">미디어 저장소 커버 무시</string> <string name="pref_title_ignore_media_store_artwork">미디어 저장소 커버 무시</string>
<string name="pref_title_last_added_interval">최근 추가된 음악 간격 지정</string> <string name="pref_title_last_added_interval">최근 추가된 음악 간격 지정</string>
<string name="pref_title_lock_screen">전체 화면 컨트롤</string> <string name="pref_title_lock_screen">전체 화면 컨트롤</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Kan afspeelproblemen veroorzaken op sommige toestellen"</string> <string name="pref_summary_gapless_playback">"Kan afspeelproblemen veroorzaken op sommige toestellen"</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Kan album cover kwaliteit verbeteren, maar veroorzaakt langere laadtijden. Alleen aanzetten als je problemen hebt met lage resolutie artworks</string> <string name="pref_summary_ignore_media_store_artwork">Kan album cover kwaliteit verbeteren, maar veroorzaakt langere laadtijden. Alleen aanzetten als je problemen hebt met lage resolutie artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Zet besturing knoppen aan op vergrendelscherm</string> <string name="pref_summary_lock_screen">Zet besturing knoppen aan op vergrendelscherm</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Afspelen zonder pauzes</string> <string name="pref_title_gapless_playback">Afspelen zonder pauzes</string>
<string name="pref_title_general_theme">Basis thema</string> <string name="pref_title_general_theme">Basis thema</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Negeer media store covers</string> <string name="pref_title_ignore_media_store_artwork">Negeer media store covers</string>
<string name="pref_title_last_added_interval">Laatst toegevoegde afspeellijst interval</string> <string name="pref_title_last_added_interval">Laatst toegevoegde afspeellijst interval</string>
<string name="pref_title_lock_screen">Volledig scherm besturing knoppen</string> <string name="pref_title_lock_screen">Volledig scherm besturing knoppen</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Poate mări calitatea copertei de album, dar cauzează încărcarea mai lentă a imaginilor. Activați această opțiune doar dacă aveți probleme cu coperta de album cu rezoluție mică.</string> <string name="pref_summary_ignore_media_store_artwork">Poate mări calitatea copertei de album, dar cauzează încărcarea mai lentă a imaginilor. Activați această opțiune doar dacă aveți probleme cu coperta de album cu rezoluție mică.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Comenzi pe ecranul de blocare pentru Retro music.</string> <string name="pref_summary_lock_screen">Comenzi pe ecranul de blocare pentru Retro music.</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Redare \"Gapless\"</string> <string name="pref_title_gapless_playback">Redare \"Gapless\"</string>
<string name="pref_title_general_theme">Temă</string> <string name="pref_title_general_theme">Temă</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignoră copertele de pe Magazinul Media</string> <string name="pref_title_ignore_media_store_artwork">Ignoră copertele de pe Magazinul Media</string>
<string name="pref_title_last_added_interval">Ultimul interval de playlist adăugat</string> <string name="pref_title_last_added_interval">Ultimul interval de playlist adăugat</string>
<string name="pref_title_lock_screen">Comenzi ecran complet</string> <string name="pref_title_lock_screen">Comenzi ecran complet</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"Moze prouzrokovati probleme na pojedinim uredjajima."</string> <string name="pref_summary_gapless_playback">"Moze prouzrokovati probleme na pojedinim uredjajima."</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">oze poboljsati kvalitet omota albuma ali uzrokuje njegovo sporije ucitavanje. Omoguci ovo samo ukoliko imas problema sa losim kvalitetom slike omota albuma.</string> <string name="pref_summary_ignore_media_store_artwork">oze poboljsati kvalitet omota albuma ali uzrokuje njegovo sporije ucitavanje. Omoguci ovo samo ukoliko imas problema sa losim kvalitetom slike omota albuma.</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Prikazuj kontrole na zakljucanom ekranu</string> <string name="pref_summary_lock_screen">Prikazuj kontrole na zakljucanom ekranu</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Neuznemiravano reprodukovanje</string> <string name="pref_title_gapless_playback">Neuznemiravano reprodukovanje</string>
<string name="pref_title_general_theme">Opsta tema</string> <string name="pref_title_general_theme">Opsta tema</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignorisi omote sa prodavnice</string> <string name="pref_title_ignore_media_store_artwork">Ignorisi omote sa prodavnice</string>
<string name="pref_title_last_added_interval">Interval plejliste poslednje dodato</string> <string name="pref_title_last_added_interval">Interval plejliste poslednje dodato</string>
<string name="pref_title_lock_screen">Kontrole preko celog ekrana</string> <string name="pref_title_lock_screen">Kontrole preko celog ekrana</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -313,7 +313,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string>
<string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string> <string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string>
<string name="pref_summary_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">提高專輯封面的成像品質,但會造成較長的讀取時間。建議只有在您對低畫質的專輯封面有問題時才開啟此選項。</string> <string name="pref_summary_ignore_media_store_artwork">提高專輯封面的成像品質,但會造成較長的讀取時間。建議只有在您對低畫質的專輯封面有問題時才開啟此選項。</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -345,8 +345,8 @@
<string name="pref_title_gapless_playback">無縫播放</string> <string name="pref_title_gapless_playback">無縫播放</string>
<string name="pref_title_general_theme">主題</string> <string name="pref_title_general_theme">主題</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">忽略音訊檔內嵌的專輯封面</string> <string name="pref_title_ignore_media_store_artwork">忽略音訊檔內嵌的專輯封面</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -537,7 +537,7 @@
<string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</string> <string name="pref_summary_extra_song_info">Show extra Song information, such as file format, bitrate and frequency</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_genre_toggle">Toggle genre tab</string> <string name="pref_summary_genre_toggle">Toggle genre tab</string>
<string name="pref_summary_home_banner">Toggle home banner style</string> <string name="pref_summary_home_banner">Show or hide the home banner</string>
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string> <string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality, but causes slower image loading times. Only enable this if you have problems with low resolution artworks</string>
<string name="pref_summary_library_categories">Configure visibility and order of library categories.</string> <string name="pref_summary_library_categories">Configure visibility and order of library categories.</string>
<string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string> <string name="pref_summary_lock_screen">Use Retro Music\'s custom lockscreen controls</string>
@ -571,8 +571,9 @@
<string name="pref_title_gapless_playback">Gapless playback</string> <string name="pref_title_gapless_playback">Gapless playback</string>
<string name="pref_title_general_theme">App theme</string> <string name="pref_title_general_theme">App theme</string>
<string name="pref_title_genre_toggle">Show genre tab</string> <string name="pref_title_genre_toggle">Show genre tab</string>
<string name="pref_title_home_artist_grid_style">Home artist grid</string> <string name="pref_title_home_artist_grid_style">Artist grid</string>
<string name="pref_title_home_banner">Home banner</string> <string name="pref_title_home_album_grid_style">Album grid</string>
<string name="pref_title_home_banner">Banner</string>
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string> <string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
<string name="pref_title_last_added_interval">Last added playlist interval</string> <string name="pref_title_last_added_interval">Last added playlist interval</string>
<string name="pref_title_lock_screen">Fullscreen controls</string> <string name="pref_title_lock_screen">Fullscreen controls</string>

View file

@ -6,18 +6,21 @@
<item name="android:windowBackground">@color/window_color_light</item> <item name="android:windowBackground">@color/window_color_light</item>
<item name="android:scrollbars">none</item> <item name="android:scrollbars">none</item>
<item name="dialogCornerRadius">16dp</item> <item name="dialogCornerRadius">16dp</item>
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
</style> </style>
<style name="Theme.RetroMusic.Black" parent="Theme.RetroMusic.Base.Black"> <style name="Theme.RetroMusic.Black" parent="Theme.RetroMusic.Base.Black">
<item name="android:windowBackground">@color/window_color_dark</item> <item name="android:windowBackground">@color/window_color_dark</item>
<item name="android:scrollbars">none</item> <item name="android:scrollbars">none</item>
<item name="dialogCornerRadius">16dp</item> <item name="dialogCornerRadius">16dp</item>
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
</style> </style>
<style name="Theme.RetroMusic.FollowSystem" parent="Theme.RetroMusic.Base.Adaptive"> <style name="Theme.RetroMusic.FollowSystem" parent="Theme.RetroMusic.Base.Adaptive">
<item name="android:windowBackground">@color/window_color</item> <item name="android:windowBackground">@color/window_color</item>
<item name="android:scrollbars">none</item> <item name="android:scrollbars">none</item>
<item name="dialogCornerRadius">16dp</item> <item name="dialogCornerRadius">16dp</item>
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
</style> </style>
<style name="Theme.RetroMusic.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent" /> <style name="Theme.RetroMusic.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent" />
@ -250,4 +253,9 @@
<item name="strokeColor">?android:attr/colorButtonNormal</item> <item name="strokeColor">?android:attr/colorButtonNormal</item>
<item name="cardElevation">0dp</item> <item name="cardElevation">0dp</item>
</style> </style>
<!-- This will set the fade in animation on all your activities by default -->
<style name="WindowAnimationTransition">
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
</style>
</resources> </resources>

View file

@ -16,6 +16,17 @@
android:title="@string/pref_title_home_artist_grid_style" android:title="@string/pref_title_home_artist_grid_style"
app:icon="@drawable/ic_home" /> app:icon="@drawable/ic_home" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
android:defaultValue="0"
android:entries="@array/pref_home_grid_style_list_titles"
android:entryValues="@array/pref_home_grid_style_list_values"
android:key="home_album_grid_style"
android:layout="@layout/list_item_view"
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_home_album_grid_style"
/>
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference <code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false" android:defaultValue="false"
android:key="toggle_home_banner" android:key="toggle_home_banner"