Error handling added

main
hemanths@live.com 2018-12-26 23:01:39 +05:30
parent a773074c77
commit 8dfb0dc8dd
50 changed files with 2206 additions and 1473 deletions

View File

@ -28,12 +28,12 @@ android {
minSdkVersion 21
targetSdkVersion 28
renderscriptTargetApi 27 //must match target sdk and build tools
renderscriptTargetApi 28 //must match target sdk and build tools
vectorDrawables.useSupportLibrary = true
applicationId "code.name.monkey.retromusic"
versionCode 273
versionName '3.0.511'
versionCode 274
versionName '3.0.520'
multiDexEnabled true
@ -73,10 +73,6 @@ android {
versionName defaultConfig.versionName + "_" + getDate()
dimension "default"
}
sans {
dimension "default"
versionName defaultConfig.versionName + "_" + getDate()
}
}
packagingOptions {

View File

@ -114,7 +114,13 @@
<activity android:name=".ui.activities.LicenseActivity" />
<activity android:name=".ui.activities.PurchaseActivity" />
<activity android:name=".ui.activities.EqualizerActivity" />
<activity android:name=".ui.activities.ErrorHandlerActivity" />
<activity
android:name=".ui.activities.ErrorHandlerActivity"
android:immersive="true"
android:label="@string/error"
android:launchMode="singleInstance"
android:screenOrientation="portrait"
android:theme="@style/ErrorHandlingTheme" />
<activity android:name=".ui.activities.WhatsNewActivity" />
<activity android:name=".ui.activities.bugreport.BugReportActivity" />
<activity android:name=".ui.activities.LockScreenActivity" />

View File

@ -1 +1 @@
<html> <head> <style type="text/css"> * { word-wrap: break-word; } {style-placeholder} a { color: #{link-color}; } a:active { color: #{link-color-active}; } ul { list-style-position: outside; padding-left: 0; padding-right: 0; margin-left: 1em; } li { padding-top: 8px; } </style> </head> <body> <h4>v3.0.501</h4> <h3>Highlights</h3> <ul style="line-height=150%"> <li>Kotlin conversion from Good old Java</li> <li>Outline style system icons</li> <li>New Material Design principles and Guide lines</li> <li>Holiday Theme</li> </ul> <h3>Changelog</h3> <ul style="line-height:150%"> <li>By default theme will be dark</li> <li>Now you can add search app shortcut in home screen</li> <li>Last selected Lyrics options saved</li> <li>Fonts are removed to make it fast loading</li> <li>Now you can add plain text home screen widget</li> <li>Good old side navigation bar for options</li> <li>Bug report for better tracking with milestones</li> <li>Snow fall effect can be enable from other settings(Works only one normal theme)</li> <li>Click new music mix to play songs</li> <li>Gradient image option for gird list</li> <li>Clear button for playing queue</li> <li>Folder list back button</li> <li>New theme Fit</li> <li>On library click on toolbar for accessing main menu </li> <li>On home click on toolbar for accessing search </li> <li>BottomSheetDialogue is now adaptable to screens, background colour and text size consistency. </li> <li>Removed coloured navigation bar option to making app adapt the primary colour</li> <li>Swipe up gesture for now playing removed, replaced with "tap to open", To achieve transparent navigation bar for desired themes. </li> <li>Improved tablet UI and home screen by adding suggestions toggle banner issues.</li> <li>Improving lyrics page</li> <li>Updated image loading libraries(might loose your current artist images)</li> </ul> <p>If you see entire app white or dark or black select same theme in settings to fix </p> <p style="line-height:150%"><a href="https://github.com/h4h13/RetroMusicPlayer/wiki/FAQ">FAQ's</a> </p> <p style="line-height:150%">*If you face any UI related issues you clear app data and cache, if its not working try to uninstall and install again. </p> </body>
<html> <head> <style type="text/css"> * { word-wrap: break-word; } {style-placeholder} a { color: #{link-color}; } a:active { color: #{link-color-active}; } ul { list-style-position: outside; padding-left: 0; padding-right: 0; margin-left: 1em; } li { padding-top: 8px; } </style> </head> <body> <h4>v3.0.501</h4> <h3>Highlights</h3> <ul style="line-height=150%"> <li>Kotlin conversion from Good old Java</li> <li>Outline style system icons</li> <li>New Material Design principles and Guide lines</li> <li>Holiday Theme</li> </ul> <h3>Changelog</h3> <ul style="line-height:150%"> <li>Updated translations</li> <li>By default theme will be dark</li> <li>Now you can add search app shortcut in home screen</li> <li>Last selected Lyrics options saved</li> <li>Fonts are removed to make it fast loading</li> <li>Now you can add plain text home screen widget</li> <li>Good old side navigation bar for options</li> <li>Bug report for better tracking with milestones</li> <li>Snow fall effect can be enable from other settings(Works only one normal theme)</li> <li>Click new music mix to play songs</li> <li>Gradient image option for gird list</li> <li>Clear button for playing queue</li> <li>Folder list back button</li> <li>New theme Fit</li> <li>On library click on toolbar for accessing main menu </li> <li>On home click on toolbar for accessing search </li> <li>BottomSheetDialogue is now adaptable to screens, background colour and text size consistency. </li> <li>Removed coloured navigation bar option to making app adapt the primary colour</li> <li>Swipe up gesture for now playing removed, replaced with "tap to open", To achieve transparent navigation bar for desired themes. </li> <li>Improved tablet UI and home screen by adding suggestions toggle banner issues.</li> <li>Improving lyrics page</li> <li>Updated image loading libraries(might loose your current artist images)</li> </ul> <p>If you see entire app white or dark or black select same theme in settings to fix </p> <p style="line-height:150%"><a href="https://github.com/h4h13/RetroMusicPlayer/wiki/FAQ">FAQ's</a> </p> <p style="line-height:150%">*If you face any UI related issues you clear app data and cache, if its not working try to uninstall and install again. </p> </body>

View File

@ -18,8 +18,6 @@ class App : MultiDexApplication() {
super.onCreate()
instance = this
setupErrorHandler()
// default theme
if (!ThemeStore.isConfigured(this, 3)) {
ThemeStore.editTheme(this)

View File

@ -83,6 +83,10 @@ class AppWidgetText : BaseAppWidget() {
else
R.drawable.ic_play_arrow_white_24dp
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, BaseAppWidget.createBitmap(RetroUtil.getTintedVectorDrawable(context, playPauseRes, ContextCompat.getColor(context, R.color.md_white_1000)), 1f))
appWidgetView.setImageViewBitmap(R.id.button_next, BaseAppWidget.createBitmap(RetroUtil.getTintedVectorDrawable(context, R.drawable.ic_skip_next_white_24dp, ContextCompat.getColor(context, R.color.md_white_1000)), 1f))
appWidgetView.setImageViewBitmap(R.id.button_prev, BaseAppWidget.createBitmap(RetroUtil.getTintedVectorDrawable(context, R.drawable.ic_skip_previous_white_24dp, ContextCompat.getColor(context, R.color.md_white_1000)), 1f))
pushUpdate(service.applicationContext, appWidgetIds, appWidgetView)

View File

@ -1 +0,0 @@
package code.name.monkey.retromusic.ui.activities; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; import code.name.monkey.retromusic.R; public class ErrorHandlerActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_error_handler); } }

View File

@ -59,13 +59,13 @@ public class WhatsNewActivity extends AbsBaseActivity {
setNavigationbarColorAuto();
setTaskDescriptionColorAuto();
toolbar.setBackgroundColor(ThemeStore.primaryColor(this));
appBarLayout.setBackgroundColor(ThemeStore.primaryColor(this));
toolbar.setBackgroundColor(ThemeStore.Companion.primaryColor(this));
appBarLayout.setBackgroundColor(ThemeStore.Companion.primaryColor(this));
setSupportActionBar(toolbar);
setTitle(null);
toolbar.setNavigationOnClickListener(v -> onBackPressed());
title.setTextColor(ThemeStore.textColorPrimary(this));
ToolbarContentTintHelper.colorBackButton(toolbar, ThemeStore.accentColor(this));
title.setTextColor(ThemeStore.Companion.textColorPrimary(this));
ToolbarContentTintHelper.colorBackButton(toolbar, ThemeStore.Companion.accentColor(this));
try {
// Load from phonograph-changelog.html in the assets folder
@ -78,13 +78,13 @@ public class WhatsNewActivity extends AbsBaseActivity {
in.close();
// Inject color values for WebView body background and links
final String backgroundColor = colorToHex(ThemeStore.primaryColor(this));
final String backgroundColor = colorToHex(ThemeStore.Companion.primaryColor(this));
final String contentColor = ThemeSingleton.get().darkTheme ? "#ffffff" : "#000000";
webView.loadData(buf.toString()
.replace("{style-placeholder}",
String.format("body { background-color: %s; color: %s; }", backgroundColor, contentColor))
.replace("{link-color}", colorToHex(ThemeSingleton.get().positiveColor.getDefaultColor()))
.replace("{link-color-active}", colorToHex(ColorUtil.lightenColor(ThemeSingleton.get().positiveColor.getDefaultColor())))
.replace("{link-color-active}", colorToHex(ColorUtil.INSTANCE.lightenColor(ThemeSingleton.get().positiveColor.getDefaultColor())))
, "text/html", "UTF-8");
} catch (Throwable e) {
webView.loadData("<h1>Unable to load</h1><p>" + e.getLocalizedMessage() + "</p>", "text/html", "UTF-8");

View File

@ -17,7 +17,7 @@ import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.util.PreferenceUtil
import code.name.monkey.retromusic.util.RetroUtil
abstract class AbsThemeActivity : ATHActivity(), Runnable {
abstract class AbsThemeActivity : AbsCrashCollector(), Runnable {
private val handler = Handler()

View File

@ -166,16 +166,16 @@ public class LibraryFragment extends AbsMainActivityFragment implements CabHolde
@SuppressWarnings("ConstantConditions")
private void setupToolbar() {
bannerTitle.setTextColor(ThemeStore.textColorPrimary(getContext()));
bannerTitle.setTextColor(ThemeStore.Companion.textColorPrimary(getContext()));
int primaryColor = ThemeStore.primaryColor(getContext());
int primaryColor = ThemeStore.Companion.primaryColor(getContext());
TintHelper.setTintAuto(contentContainer, primaryColor, true);
toolbar.setBackgroundColor(primaryColor);
toolbar.setNavigationIcon(R.drawable.ic_search_white_24dp);
appBarLayout.setBackgroundColor(primaryColor);
appBarLayout.addOnOffsetChangedListener((appBarLayout, verticalOffset) ->
getMainActivity().setLightStatusbar(!ATHUtil.isWindowBackgroundDark(getContext())));
getMainActivity().setLightStatusbar(!ATHUtil.INSTANCE.isWindowBackgroundDark(getContext())));
getMainActivity().setTitle(null);
getMainActivity().setSupportActionBar(toolbar);
}
@ -216,7 +216,7 @@ public class LibraryFragment extends AbsMainActivityFragment implements CabHolde
.setMenu(menuRes)
.setCloseDrawableRes(R.drawable.ic_close_white_24dp)
.setBackgroundColor(
RetroColorUtil.shiftBackgroundColorForLightText(ThemeStore.primaryColor(getActivity())))
RetroColorUtil.shiftBackgroundColorForLightText(ThemeStore.Companion.primaryColor(getActivity())))
.start(callback);
return cab;
}

View File

@ -225,10 +225,10 @@ public class FoldersFragment extends AbsMainActivityFragment implements
}
private void setUpAppbarColor() {
title.setTextColor(ThemeStore.textColorPrimary(getContext()));
title.setTextColor(ThemeStore.Companion.textColorPrimary(getContext()));
//noinspection ConstantConditions
int primaryColor = ThemeStore.primaryColor(getContext());
int primaryColor = ThemeStore.Companion.primaryColor(getContext());
toolbar.setNavigationIcon(R.drawable.ic_keyboard_backspace_black_24dp);
//noinspection ConstantConditions
@ -242,9 +242,9 @@ public class FoldersFragment extends AbsMainActivityFragment implements
getActivity().onBackPressed();
});
breadCrumbs.setActivatedContentColor(ToolbarContentTintHelper.toolbarTitleColor(getActivity(), ColorUtil.darkenColor(primaryColor)));
breadCrumbs.setDeactivatedContentColor(ToolbarContentTintHelper.toolbarSubtitleColor(getActivity(), ColorUtil.darkenColor(primaryColor)));
appBarLayout.addOnOffsetChangedListener((appBarLayout, verticalOffset) -> getMainActivity().setLightStatusbar(!ATHUtil.isWindowBackgroundDark(getContext())));
breadCrumbs.setActivatedContentColor(ToolbarContentTintHelper.toolbarTitleColor(getActivity(), ColorUtil.INSTANCE.darkenColor(primaryColor)));
breadCrumbs.setDeactivatedContentColor(ToolbarContentTintHelper.toolbarSubtitleColor(getActivity(), ColorUtil.INSTANCE.darkenColor(primaryColor)));
appBarLayout.addOnOffsetChangedListener((appBarLayout, verticalOffset) -> getMainActivity().setLightStatusbar(!ATHUtil.INSTANCE.isWindowBackgroundDark(getContext())));
}
private void setUpBreadCrumbs() {
@ -254,7 +254,7 @@ public class FoldersFragment extends AbsMainActivityFragment implements
private void setUpRecyclerView() {
//noinspection ConstantConditions
ViewUtil.setUpFastScrollRecyclerViewColor(getActivity(), recyclerView,
ThemeStore.accentColor(getActivity()));
ThemeStore.Companion.accentColor(getActivity()));
recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
appBarLayout.addOnOffsetChangedListener(this);
}
@ -307,7 +307,7 @@ public class FoldersFragment extends AbsMainActivityFragment implements
cab = new MaterialCab(getMainActivity(), R.id.cab_stub)
.setMenu(menuRes)
.setCloseDrawableRes(R.drawable.ic_close_white_24dp)
.setBackgroundColor(RetroColorUtil.shiftBackgroundColorForLightText(ThemeStore.primaryColor(getActivity())))
.setBackgroundColor(RetroColorUtil.shiftBackgroundColorForLightText(ThemeStore.Companion.primaryColor(getActivity())))
.start(callback);
return cab;
}
@ -379,7 +379,7 @@ public class FoldersFragment extends AbsMainActivityFragment implements
.setAction(R.string.action_scan,
v -> new ListPathsAsyncTask(getActivity(), this::scanPaths)
.execute(new ListPathsAsyncTask.LoadingInfo(finalFile, AUDIO_FILE_FILTER)))
.setActionTextColor(ThemeStore.accentColor(getActivity()))
.setActionTextColor(ThemeStore.Companion.accentColor(getActivity()))
.show();
}
}).execute(new ListSongsAsyncTask.LoadingInfo(toList(file.getParentFile()), fileFilter,

View File

@ -104,9 +104,9 @@ class FlatPlayerFragment : AbsPlayerFragment(), PlayerAlbumCoverFragment.Callbac
//TransitionManager.beginDelayedTransition(mToolbar);
val iconColor = if (PreferenceUtil.getInstance().adaptiveColor)
MaterialValueHelper.getPrimaryTextColor(context, isLight)
MaterialValueHelper.getPrimaryTextColor(context!!, isLight)
else
ATHUtil.resolveColor(context, R.attr.iconColor)
ATHUtil.resolveColor(context!!, R.attr.iconColor)
ToolbarContentTintHelper.colorizeToolbar(playerToolbar, iconColor, activity)
if (PreferenceUtil.getInstance().adaptiveColor) {
colorize(color)

View File

@ -96,20 +96,20 @@ class LockScreenPlayerControlsFragment : AbsPlayerControlsFragment() {
override fun setDark(color: Int) {
setProgressBarColor(progressSlider, color)
val colorBg = ATHUtil.resolveColor(activity, android.R.attr.colorBackground)
val colorBg = ATHUtil.resolveColor(context!!, android.R.attr.colorBackground)
if (ColorUtil.isColorLight(colorBg)) {
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(activity, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(activity, true)
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(context!!, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(context!!, true)
} else {
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(activity, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(activity, false)
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(context!!, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(context!!, false)
}
updatePrevNextColor()
val isDark = ColorUtil.isColorLight(color)
text!!.setTextColor(color)
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context, isDark), false)
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context!!, isDark), false)
TintHelper.setTintAuto(playPauseButton, color, true)
}

View File

@ -90,13 +90,13 @@ class MaterialControlsFragment : AbsPlayerControlsFragment() {
}
override fun setDark(color: Int) {
val colorBg = ATHUtil.resolveColor(activity, android.R.attr.colorBackground)
val colorBg = ATHUtil.resolveColor(context, android.R.attr.colorBackground)
if (ColorUtil.isColorLight(colorBg)) {
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(activity, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(activity, true)
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(context, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(context, true)
} else {
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(activity, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(activity, false)
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(context, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(context!!, false)
}
updateRepeatState()

View File

@ -43,7 +43,7 @@ class MaterialFragment : AbsPlayerFragment(), PlayerAlbumCoverFragment.Callbacks
}
override fun toolbarIconColor(): Int {
return ATHUtil.resolveColor(context, R.attr.iconColor)
return ATHUtil.resolveColor(context!!, R.attr.iconColor)
}
override fun onColorChanged(color: Int) {
@ -51,7 +51,7 @@ class MaterialFragment : AbsPlayerFragment(), PlayerAlbumCoverFragment.Callbacks
lastColor = color
callbacks!!.onPaletteColorChanged()
ToolbarContentTintHelper.colorizeToolbar(playerToolbar, ATHUtil.resolveColor(context, R.attr.iconColor), activity)
ToolbarContentTintHelper.colorizeToolbar(playerToolbar, ATHUtil.resolveColor(context!!, R.attr.iconColor), activity)
}
override fun toggleFavorite(song: Song) {

View File

@ -61,13 +61,13 @@ class PlayerPlaybackControlsFragment : AbsPlayerControlsFragment() {
}
override fun setDark(color: Int) {
val colorBg = ATHUtil.resolveColor(activity, android.R.attr.colorBackground)
val colorBg = ATHUtil.resolveColor(context!!, android.R.attr.colorBackground)
if (ColorUtil.isColorLight(colorBg)) {
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(activity, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(activity, true)
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(context!!, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(context!!, true)
} else {
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(activity, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(activity, false)
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(context!!, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(context!!, false)
}
if (PreferenceUtil.getInstance().adaptiveColor) {
@ -82,7 +82,7 @@ class PlayerPlaybackControlsFragment : AbsPlayerControlsFragment() {
}
private fun setFabColor(i: Int) {
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context, ColorUtil.isColorLight(i)), false)
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context!!, ColorUtil.isColorLight(i)), false)
TintHelper.setTintAuto(playPauseButton, i, true)
setProgressBarColor(i)
}

View File

@ -118,17 +118,17 @@ class PlainPlaybackControlsFragment : AbsPlayerControlsFragment() {
override fun setDark(color: Int) {
val colorBg = ATHUtil.resolveColor(activity, android.R.attr.colorBackground)
val colorBg = ATHUtil.resolveColor(context!!, android.R.attr.colorBackground)
if (ColorUtil.isColorLight(colorBg)) {
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(activity, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(activity, true)
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(context!!, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(context!!, true)
} else {
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(activity, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(activity, false)
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(context!!, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(context!!, false)
}
if (PreferenceUtil.getInstance().adaptiveColor) {
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context, ColorUtil.isColorLight(color)), false)
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context!!, ColorUtil.isColorLight(color)), false)
TintHelper.setTintAuto(playPauseButton, color, true)
setProgressBarColor(progressSlider, color)
}

View File

@ -81,14 +81,14 @@ class PlainPlayerFragment : AbsPlayerFragment(), PlayerAlbumCoverFragment.Callba
}
override fun toolbarIconColor(): Int {
return ATHUtil.resolveColor(context, R.attr.iconColor)
return ATHUtil.resolveColor(context!!, R.attr.iconColor)
}
override fun onColorChanged(color: Int) {
plainPlaybackControlsFragment.setDark(color)
lastColor = color
callbacks!!.onPaletteColorChanged()
ToolbarContentTintHelper.colorizeToolbar(playerToolbar!!, ATHUtil.resolveColor(context, R.attr.iconColor), activity)
ToolbarContentTintHelper.colorizeToolbar(playerToolbar!!, ATHUtil.resolveColor(context!!, R.attr.iconColor), activity)
}
override fun onFavoriteToggled() {

View File

@ -179,21 +179,17 @@ class SimplePlaybackControlsFragment : AbsPlayerControlsFragment() {
}
override fun setDark(color: Int) {
val colorBg = ATHUtil.resolveColor(activity, android.R.attr.colorBackground)
val colorBg = ATHUtil.resolveColor(context!!, android.R.attr.colorBackground)
if (ColorUtil.isColorLight(colorBg)) {
lastPlaybackControlsColor = MaterialValueHelper
.getSecondaryTextColor(activity, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper
.getSecondaryDisabledTextColor(activity, true)
lastPlaybackControlsColor = MaterialValueHelper.getSecondaryTextColor(context!!, true)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getSecondaryDisabledTextColor(context!!, true)
} else {
lastPlaybackControlsColor = MaterialValueHelper
.getPrimaryTextColor(activity, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper
.getPrimaryDisabledTextColor(activity, false)
lastPlaybackControlsColor = MaterialValueHelper.getPrimaryTextColor(context!!, false)
lastDisabledPlaybackControlsColor = MaterialValueHelper.getPrimaryDisabledTextColor(context!!, false)
}
if (PreferenceUtil.getInstance().adaptiveColor) {
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context, ColorUtil.isColorLight(color)), false)
TintHelper.setTintAuto(playPauseButton, MaterialValueHelper.getPrimaryTextColor(context!!, ColorUtil.isColorLight(color)), false)
TintHelper.setTintAuto(playPauseButton, color, true)
text.setTextColor(color)
} else {

View File

@ -61,14 +61,14 @@ class SimplePlayerFragment : AbsPlayerFragment(), PlayerAlbumCoverFragment.Callb
}
override fun toolbarIconColor(): Int {
return ATHUtil.resolveColor(context, R.attr.iconColor)
return ATHUtil.resolveColor(context!!, R.attr.iconColor)
}
override fun onColorChanged(color: Int) {
lastColor = color
callbacks!!.onPaletteColorChanged()
simplePlaybackControlsFragment.setDark(color)
ToolbarContentTintHelper.colorizeToolbar(playerToolbar, ATHUtil.resolveColor(context, R.attr.iconColor), activity)
ToolbarContentTintHelper.colorizeToolbar(playerToolbar, ATHUtil.resolveColor(context!!, R.attr.iconColor), activity)
}

View File

@ -56,7 +56,7 @@ public abstract class AbsSettingsFragment extends ATEPreferenceFragmentCompat {
public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
setDivider(new ColorDrawable(Color.TRANSPARENT));
getListView().setBackgroundColor(ThemeStore.primaryColor(getContext()));
getListView().setBackgroundColor(ThemeStore.Companion.primaryColor(getContext()));
getListView().setOverScrollMode(View.OVER_SCROLL_NEVER);
getListView().setPadding(0, 0, 0, 0);
getListView().setPaddingRelative(0, 0, 0, 0);

View File

@ -42,7 +42,7 @@ public class RetroColorUtil {
if (inverse != -1) {
return ColorUtils.getReadableText(inverse, background, 150);
}
return ColorUtil.stripAlpha(getSwatch(palette).getTitleTextColor());
return ColorUtil.INSTANCE.stripAlpha(getSwatch(palette).getTitleTextColor());
}
@NonNull
@ -163,8 +163,8 @@ public class RetroColorUtil {
@ColorInt
public static int shiftBackgroundColorForLightText(@ColorInt int backgroundColor) {
while (ColorUtil.isColorLight(backgroundColor)) {
backgroundColor = ColorUtil.darkenColor(backgroundColor);
while (ColorUtil.INSTANCE.isColorLight(backgroundColor)) {
backgroundColor = ColorUtil.INSTANCE.darkenColor(backgroundColor);
}
return backgroundColor;
}

View File

@ -200,7 +200,7 @@ public class RetroUtil {
public static Drawable getTintedDrawable(@DrawableRes int id) {
return TintHelper
.createTintedDrawable(ContextCompat.getDrawable(App.Companion.getInstance(), id),
ThemeStore.accentColor(App.Companion.getInstance()));
ThemeStore.Companion.accentColor(App.Companion.getInstance()));
}
public static Bitmap createBitmap(Drawable drawable, float sizeMultiplier) {

View File

@ -78,7 +78,7 @@ public class ViewUtil {
FastScrollRecyclerView recyclerView, int accentColor) {
recyclerView.setPopupBgColor(accentColor);
recyclerView.setPopupTextColor(
MaterialValueHelper.getPrimaryTextColor(context, ColorUtil.isColorLight(accentColor)));
MaterialValueHelper.INSTANCE.getPrimaryTextColor(context, ColorUtil.INSTANCE.isColorLight(accentColor)));
recyclerView.setThumbColor(accentColor);
recyclerView.setTrackColor(Color.TRANSPARENT);
//recyclerView.setTrackColor(ColorUtil.withAlpha(ATHUtil.resolveColor(context, R.attr.colorControlNormal), 0.12f));

View File

@ -124,7 +124,7 @@ public class MediaNotificationProcessor {
}
private int selectForegroundColor(int backgroundColor, Palette palette) {
if (ColorUtil.isColorLight(backgroundColor)) {
if (ColorUtil.INSTANCE.isColorLight(backgroundColor)) {
return selectForegroundColorForSwatches(palette.getDarkVibrantSwatch(),
palette.getVibrantSwatch(),
palette.getDarkMutedSwatch(),

View File

@ -24,13 +24,13 @@ public class BottomNavigationBarTinted extends BottomNavigationView {
public BottomNavigationBarTinted(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
setLabelVisibilityMode(PreferenceUtil.getInstance().getTabTitleMode());
setBackgroundColor(ThemeStore.primaryColor(context));
setBackgroundColor(ThemeStore.Companion.primaryColor(context));
setSelectedItemId(PreferenceUtil.getInstance().getLastPage());
int iconColor = ATHUtil.resolveColor(context, R.attr.iconColor);
int accentColor = ThemeStore.accentColor(context);
NavigationViewUtil.setItemIconColors(this, ColorUtil.withAlpha(iconColor, 0.5f), accentColor);
NavigationViewUtil.setItemTextColors(this, ColorUtil.withAlpha(iconColor, 0.5f), accentColor);
int iconColor = ATHUtil.INSTANCE.resolveColor(context, R.attr.iconColor);
int accentColor = ThemeStore.Companion.accentColor(context);
NavigationViewUtil.INSTANCE.setItemIconColors(this, ColorUtil.INSTANCE.withAlpha(iconColor, 0.5f), accentColor);
NavigationViewUtil.INSTANCE.setItemTextColors(this, ColorUtil.INSTANCE.withAlpha(iconColor, 0.5f), accentColor);
}
}

View File

@ -135,8 +135,8 @@ public class BreadCrumbLayout extends HorizontalScrollView implements View.OnCli
private SelectionCallback mCallback;
private void init() {
contentColorActivated = ThemeStore.textColorPrimary(getContext());
contentColorDeactivated = ThemeStore.textColorSecondary(getContext());
contentColorActivated = ThemeStore.Companion.textColorPrimary(getContext());
contentColorDeactivated = ThemeStore.Companion.textColorSecondary(getContext());
setMinimumHeight((int) getResources().getDimension(R.dimen.tab_height));
setClipToPadding(false);
setHorizontalScrollBarEnabled(false);

View File

@ -72,7 +72,7 @@ public class CollapsingFAB extends FrameLayout {
public void setColor(int color) {
this.color = color;
int textColor = MaterialValueHelper.getPrimaryTextColor(getContext(), ColorUtil.isColorLight(color));
int textColor = MaterialValueHelper.INSTANCE.getPrimaryTextColor(getContext(), ColorUtil.INSTANCE.isColorLight(color));
shuffleIcon.setColorFilter(textColor);
textView.setTextColor(textColor);
cardView.setCardBackgroundColor(ColorStateList.valueOf(color));

View File

@ -27,6 +27,6 @@ public class IconImageView extends androidx.appcompat.widget.AppCompatImageView
private void init(Context context) {
if (context == null) return;
setColorFilter(ATHUtil.resolveColor(context, R.attr.iconColor), PorterDuff.Mode.SRC_IN);
setColorFilter(ATHUtil.INSTANCE.resolveColor(context, R.attr.iconColor), PorterDuff.Mode.SRC_IN);
}
}

View File

@ -42,12 +42,12 @@ public class RoundedBottomSheetDialogFragment extends AppCompatDialogFragment {
if (bottomSheet != null) {
BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
bottomSheet.setBackground(RetroUtil.getTintedDrawable(getContext(), R.drawable.bg_bottom_sheet_dialog_fragment, ThemeStore.primaryColor(getContext())));
bottomSheet.setBackground(RetroUtil.getTintedDrawable(getContext(), R.drawable.bg_bottom_sheet_dialog_fragment, ThemeStore.Companion.primaryColor(getContext())));
}
});
if (getActivity() != null) {
if (VersionUtils.hasNougat()) {
((AbsBaseActivity) getActivity()).setNavigationbarColor(ThemeStore.primaryColor(getContext()));
if (VersionUtils.INSTANCE.hasNougat()) {
((AbsBaseActivity) getActivity()).setNavigationbarColor(ThemeStore.Companion.primaryColor(getContext()));
} else {
((AbsBaseActivity) getActivity()).setNavigationbarColorAuto();
}
@ -67,7 +67,7 @@ public class RoundedBottomSheetDialogFragment extends AppCompatDialogFragment {
if (getDialog() != null && getDialog().getWindow() != null) {
Window window = getDialog().getWindow();
window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
window.setNavigationBarColor(ThemeStore.primaryColor(getContext()));
window.setNavigationBarColor(ThemeStore.Companion.primaryColor(getContext()));
window.findViewById(com.google.android.material.R.id.container).setFitsSystemWindows(true);
}
}

View File

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.google.android.material.appbar.AppBarLayout android:id="@+id/app_bar" android:layout_width="match_parent" android:layout_height="wrap_content" android:elevation="0dp" app:elevation="0dp"> <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" style="@style/Toolbar" app:layout_collapseMode="pin"> <TextView android:id="@+id/title" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_gravity="center" android:gravity="center" android:text="@string/error" android:textAppearance="@style/TextAppearance.AppCompat.Large" xmlns:app="http://schemas.android.com/apk/res-auto" </androidx.appcompat.widget.Toolbar> <View android:layout_width="match_parent" android:layout_height="1dp" android:background="?dividerColor" /> </com.google.android.material.appbar.AppBarLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical"> xmlns:tools="http://schemas.android.com/tools" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingBottom="16dp" android:layout_width="match_parent" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <TextView android:layout_width="match_parent" xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools" <com.google.android.material.appbar.AppBarLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_width="match_parent" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical"> android:layout_width="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" <com.google.android.material.appbar.AppBarLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_width="match_parent" <com.google.android.material.appbar.AppBarLayout android:layout_width="match_parent" android:id="@+id/app_bar" android:layout_height="match_parent" android:layout_height="match_parent" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_gravity="end|bottom" android:layout_height="match_parent" xmlns:tools="http://schemas.android.com/tools" android:layout_height="match_parent" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_height="match_parent" android:layout_height="match_parent" android:orientation="vertical"> android:layout_width="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_height="match_parent" android:layout_height="match_parent" <com.google.android.material.appbar.AppBarLayout android:layout_height="match_parent" android:id="@+id/app_bar" android:orientation="vertical"> android:orientation="vertical"> LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical"> xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical"> xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical"> android:layout_width="match_parent" android:orientation="vertical"> android:layout_height="match_parent" android:orientation="vertical"> android:orientation="vertical"> rLayout>
<?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.google.android.material.appbar.AppBarLayout android:id="@+id/app_bar" android:layout_width="match_parent" android:layout_height="wrap_content" android:elevation="0dp" app:elevation="0dp"> <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" style="@style/Toolbar" app:layout_collapseMode="pin"> <TextView android:id="@+id/title" xmlns:app="http://schemas.android.com/apk/res-auto" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_gravity="center" android:gravity="center" android:text="@string/error" android:textAppearance="@style/TextAppearance.AppCompat.Large" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto" </androidx.appcompat.widget.Toolbar> </com.google.android.material.appbar.AppBarLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="16dp" android:orientation="vertical"> android:id="@+id/app_bar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingBottom="16dp" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" app:tint="@color/md_grey_800" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_width="match_parent" xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools" android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> android:layout_width="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto" android:background="@color/md_grey_400" android:padding="16dp" android:text="@string/error" /> </ScrollView> <com.google.android.material.appbar.AppBarLayout xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" <com.google.android.material.appbar.AppBarLayout android:layout_width="match_parent" android:layout_weight="0" android:gravity="center"> <com.google.android.material.card.MaterialCardView <com.google.android.material.appbar.AppBarLayout <com.google.android.material.appbar.AppBarLayout android:layout_width="wrap_content" android:layout_height="wrap_content" <com.google.android.material.appbar.AppBarLayout android:id="@+id/app_bar" android:id="@+id/app_bar" android:id="@+id/app_bar" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" app:cardUseCompatPadding="true"> android:id="@+id/app_bar" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/app_bar" android:layout_width="match_parent" android:id="@+id/app_bar" android:layout_height="match_parent" android:id="@+id/app_bar" android:orientation="vertical"> android:id="@+id/app_bar" android:paddingTop="12dp" android:paddingEnd="20dp" android:paddingBottom="12dp" android:text="@string/send_crash_log" android:layout_width="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" <com.google.android.material.appbar.AppBarLayout android:id="@+id/clearAppData" android:layout_width="wrap_content" android:layout_height="wrap_content" <com.google.android.material.appbar.AppBarLayout android:id="@+id/app_bar" android:id="@+id/app_bar" android:id="@+id/app_bar" LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/app_bar" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/app_bar" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/app_bar" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/app_bar" android:orientation="vertical"> android:paddingStart="20dp" android:paddingTop="12dp" android:paddingEnd="20dp" android:paddingBottom="12dp" android:layout_width="match_parent" android:layout_height="match_parent" android:textColor="@color/md_white_1000" /> </com.google.android.material.card.MaterialCardView> android:layout_width="match_parent" android:orientation="vertical"> </LinearLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@ -23,6 +23,7 @@
android:layout_height="wrap_content"
android:ellipsize="end"
android:gravity="center"
android:maxLines="2"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:text="@string/normal_lyrics"
@ -34,6 +35,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:maxLines="1"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:text="@string/normal_lyrics"

View File

@ -14,7 +14,7 @@
<string name="action_go_to_album">Zum Album</string>
<string name="action_go_to_artist">Zum Interpreten</string>
<string name="action_go_to_genre">Zu Genre gehen</string>
<string name="action_go_to_start_directory">Zu Startverzeichnis</string>
<string name="action_go_to_start_directory">"Zum Startverzeichnis "</string>
<string name="action_grant">Gewähren</string>
<string name="action_grid_size">Rastergröße</string>
<string name="action_grid_size_land">Rastergröße (Land)</string>
@ -79,7 +79,6 @@
<string name="pref_keep_screen_on_summary">Beachte, dass diese Funktion sich auf die Akkulaufzeit auswirkt.</string>
<string name="pref_blur_amount_title">Unschärfe</string>
<string name="pref_blur_amount_summary">Geringere Unschärfe benötigt weniger Rechenleistung.</string>
<string name="buy_retro_music_pro">Retro Music Pro kaufen</string>
<string name="cancel_current_timer">Abbrechen</string>
<string name="card">Karte</string>
<string name="card_color_style">Karte (Farbe)</string>
@ -240,6 +239,7 @@
<string name="pref_summary_genre_toggle">Genre-Tab</string>
<string name="pref_summary_home_banner">Home-Banner</string>
<string name="pref_title_album_art_on_lockscreen">Albumcover zeigen</string>
<string name="pref_title_tab_text_mode">Beschriftung der Navigationselemente</string>
<string name="pref_title_album_grid_style">Album-Rasteransicht</string>
<string name="pref_title_app_shortcuts">Gefärbte App-Schaltflächen</string>
<string name="pref_title_artist_grid_style">Interpreten-Rasteransicht</string>
@ -270,6 +270,9 @@
<string name="pref_title_extra_controls">Zusätzliche Schaltflächen</string>
<string name="pref_title_home_banner">Home-Banner</string>
<string name="pref_title_genre_toggle">Genre-Tab anzeigen</string>
<string name="pref_title_home_artist_grid_style">Künstlerbilder auf der Startseite</string>
<string name="pref_title_album_cover_transform">Stil des Album-Covers</string>
<string name="cascading">Kaskadierend</string>
<string name="primary_color">Primärfarbe</string>
<string name="primary_color_desc">Die Primärfarbe, standardmäßig blau/grau, funktioniert nun auch mit dunklen Farben</string>
<string name="purchase">Kaufen</string>
@ -380,4 +383,8 @@
<string name="full_card">Karte (Voll)</string>
<string name="profile">Profil</string>
<string name="bio">Beschreibung</string>
<string name="auto">Automatisch</string>
<string name="labeled">Beschriftet</string>
<string name="unlabeled">Unbeschriftet</string>
<string name="selected">Ausgewähltes beschriftet</string>
</resources>

View File

@ -46,12 +46,10 @@
<string name="added_x_titles_to_playing_queue">Προστέθηκαν %1$d κομμάτια στην ουρά αναπ/γης.</string>
<string name="album">Άλμπουμ</string>
<string name="album_artist">Καλλιτέχνης Άλμπουμ</string>
<string name="album_or_artist_empty">"Ο τίτλος ή το όνομα του καλλιτέχνη είναι κενό
"</string>
<string name="album_or_artist_empty">"Ο τίτλος ή το όνομα του καλλιτέχνη είναι κενό"</string>
<string name="albums">Άλμπουμ</string>
<string name="always">Πάντα</string>
<string name="app_share">Τσεκάρετε αυτό το κούλ music player στο:
https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">Τσεκάρετε αυτό το κούλ music player στο:https://play.google.com/store/apps/details?id=%s</string>
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<!-- App Shortcuts -->

View File

@ -1,122 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Acentuar el Color</string>
<string name="accent_color_desc">El color de Tema de acento, por defecto es verde</string>
<string name="action_about">Acerca de</string>
<string name="action_add_to_favorites">"Añadir a favoritos "</string>
<string name="action_add_to_playing_queue">Añadir a la cola de reproducción</string>
<string name="action_add_to_playlist">"Añadir a playlist "</string>
<string name="action_clear_playing_queue">Borrar lista de reproducción</string>
<string name="accent_color">Color de énfasis</string>
<string name="accent_color_desc">Album</string>
<string name="action_about">Sobre nosotros</string>
<string name="action_add_to_favorites">Añadir a favoritos</string>
<string name="action_add_to_playing_queue">Añadir a cola de reproducción</string>
<string name="action_add_to_playlist">Añadir a lista de reproducción</string>
<string name="action_clear_playing_queue">Limpiar cola de reproducción</string>
<string name="action_clear_playlist">Limpiar lista de reproducción</string>
<string name="action_delete">Borrar</string>
<string name="action_delete">Eliminar</string>
<string name="action_delete_from_device">Eliminar del dispositivo</string>
<string name="action_details">Detalles</string>
<string name="action_go_to_album">Ir al álbum</string>
<string name="action_go_to_artist">Ir al artista</string>
<string name="action_go_to_start_directory">Ir al inicio del directorio</string>
<string name="action_grant">Conceder</string>
<string name="action_grid_size">Tamaño de cuadrícula</string>
<string name="action_grid_size_land">Tamaño de cuadrícula (horizontal)</string>
<string name="action_next">"Siguiente "</string>
<string name="action_go_to_genre">Ir al género</string>
<string name="action_go_to_start_directory">Ir al directorio de inicio</string>
<string name="action_grant">Permitir</string>
<string name="action_grid_size">Tamaño de la cuadrícula</string>
<string name="action_grid_size_land">Tamaño de la cuadrícula (apaisado)</string>
<string name="action_next">Siguiente</string>
<string name="action_play">Reproducir</string>
<string name="action_play_next">Reproducir siguiente</string>
<string name="action_play_pause">Reproducir/Pausar</string>
<string name="action_previous">"Anterior "</string>
<string name="action_remove_from_favorites">"Quitar de favoritos "</string>
<string name="action_remove_from_playing_queue">Quitar de la lista de reproducción</string>
<string name="action_play_pause">Reproducir/Pausa</string>
<string name="action_previous">Anterior</string>
<string name="action_remove_from_favorites">Quitar de favoritos</string>
<string name="action_remove_from_playing_queue">Quitar de la cola de reproducción</string>
<string name="action_remove_from_playlist">Quitar de la lista de reproducción</string>
<string name="action_rename">"Renombrar "</string>
<string name="action_rename">Renombrar</string>
<string name="action_save_playing_queue">Guardar cola de reproducción</string>
<string name="action_scan">"Escanear "</string>
<string name="action_search">"Buscar "</string>
<string name="action_set">Establecer</string>
<string name="action_scan">Escanear</string>
<string name="action_scan_directory">Escanear directorio</string>
<string name="action_search">Buscar</string>
<string name="action_set">Iniciar</string>
<string name="action_set_as_ringtone">Establecer como tono de llamada</string>
<string name="action_set_as_start_directory">Establecer como directorio de inicio</string>
<string name="action_settings">"Ajustes "</string>
<string name="action_share">"Compartir "</string>
<string name="action_settings">"Ajustes"</string>
<string name="action_share">Compartir</string>
<string name="action_shuffle_all">Mezclar todo</string>
<string name="action_shuffle_playlist">Lista de reproducción aleatoria</string>
<string name="action_shuffle_playlist">Mezclar lista de reproducción</string>
<string name="action_sleep_timer">Temporizador</string>
<string name="action_sort_order">Orden de clasificación</string>
<string name="action_tag_editor">Editor de etiquetas</string>
<string name="add_action">Agregar</string>
<string name="add_photo">Agregar\nfotografía</string>
<string name="add_playlist_title">"Añadir a la lista"</string>
<string name="added_title_to_playing_queue">"1 canción añadida a la cola de reproducción."</string>
<string name="added_x_titles_to_playing_queue">%1$d canciones añadidas a la cola de reproducción.</string>
<string name="album">"Álbum "</string>
<string name="album_artist">"Álbum de artista "</string>
<string name="album_or_artist_empty">El título o el artista está vacío.</string>
<string name="albums">"Álbumes "</string>
<string name="adaptive">Adaptado</string>
<string name="add_action">Añadir</string>
<string name="add_photo">Añadir\nfoto</string>
<string name="add_playlist_title">"Añadir a lista de reproducción"</string>
<string name="added_title_to_playing_queue">"Se ha añadido 1 canción a la cola de reproducción."</string>
<string name="added_x_titles_to_playing_queue">Se han añadido %1$d canciones a la cola de reproducción.</string>
<string name="album">Álbum</string>
<string name="album_artist">Artista del álbum</string>
<string name="album_or_artist_empty">El título o artista está vacío.</string>
<string name="albums">Álbumes</string>
<!-- Android Auto -->
<string name="always">Siempre</string>
<string name="app_share">Echa un vistazo a este reproductor de música: https://play.google.com/store/apps/details?id=%s</string>
<string name="app_shortcut_last_added_long">\@string/last_added</string>
<string name="app_shortcut_last_added_short">\@string/last_added</string>
<string name="app_share">¡Hola! Echa un vistazo a este genial reproductor de música en: https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_shuffle_all_long">\@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Aleatorio</string>
<string name="app_shortcut_top_tracks_long">\@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Más Reproducidas</string>
<string name="app_widget_big_name">Retro Music - Grande</string>
<string name="app_widget_card_name">Retro Music - Tarjeta</string>
<string name="app_widget_classic_name">Retro Music - Clásico</string>
<string name="app_widget_small_name">Retro Music - Pequeño</string>
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Mezclar</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Top canciones</string>
<string name="app_widget_big_name">Retro music - Grande</string>
<string name="app_widget_card_name">Retro music - Tarjeta</string>
<string name="app_widget_classic_name">Retro music - Clásico</string>
<string name="app_widget_small_name">Retro music - Pequeño</string>
<string name="artist">Artista</string>
<string name="artists">Artistas</string>
<string name="audio_focus_denied">"Ecualizador denegado "</string>
<string name="biography">"Biografía "</string>
<string name="black_theme_name">Negro</string>
<string name="audio_focus_denied">Enfoque de audio denegado.</string>
<string name="audio_settings_summary">Cambie la configuración de sonido y ajuste los controles del ecualizador</string>
<string name="bass_boost">Potenciador de graves</string>
<string name="biography">Biografía</string>
<string name="black_theme_name">Solo Negro</string>
<string name="blacklist">Lista negra</string>
<string name="blur">Desenfocar</string>
<string name="blur_card">Tarjeta con desenfoque</string>
<string name="pref_blur_amount_title">Ajustar desenfoque</string>
<string name="pref_blur_amount_summary">Ajuste de desenfoque con temas compatibles, menor es más rápido</string>
<string name="pref_keep_screen_on_title">Mantener pantalla encendida</string>
<string name="pref_keep_screen_on_summary">Ten en cuenta que habilitar esta característica puede afectar al rendimiento de la batería</string>
<string name="cancel_current_timer">Cancelar temporizador actual</string>
<string name="blur">Desenfoque</string>
<string name="blur_card">Tarjeta desenfocada</string>
<string name="pref_keep_screen_on_title">Mantener la pantalla encendida</string>
<string name="pref_keep_screen_on_summary">Activar esta función puede afectar a la duración de la batería</string>
<string name="pref_blur_amount_title">Cantidad de desenfoque</string>
<string name="pref_blur_amount_summary">Cantidad de desenfoque aplicado para los temas con desenfoque, más bajo es más rápido</string>
<string name="cancel_current_timer">Cancelar</string>
<string name="card">Tarjeta</string>
<string name="card_color_style">Tarjeta con color</string>
<string name="changelog">Lista de cambios</string>
<string name="changelog_summary">Lista de cambios disponible en la app Telegram</string>
<string name="card_color_style">Tarjeta coloreada</string>
<string name="card_circular_style">Circular</string>
<string name="image">Imagen</string>
<string name="card_style">Tarjeta</string>
<string name="cast">Difusión</string>
<string name="changelog">Registro de cambios</string>
<string name="changelog_summary">Registro de cambios continuo en el canal de Telegram</string>
<string name="clear_action">Limpiar</string>
<string name="clear_blacklist">Limpiar lista negra</string>
<string name="clear_playlist_title">Limpiar lista de reproducción</string>
<string name="clear_playlist_x"><![CDATA[\u00bfEliminar la lista <b>%1$s</b>? \u00a1Esto no se puede revertir!]]></string>
<string name="clear_blacklist">Vaciar lista negra</string>
<string name="clear_playlist_title">Vaciar lista de reproducción</string>
<string name="clear_playlist_x"><![CDATA[\u00bfVaciar lista de reproducci\u00f3n <b>%1$s</b>? \u00a1Esta acci\u00f3n no se puede deshacer!]]></string>
<string name="close_notification">Cerrar</string>
<string name="color">Color</string>
<string name="color_theme_name">Color</string>
<string name="colors">Colores</string>
<string name="could_not_create_playlist">No se pudo crear la lista de reproducci\u00f3n.</string>
<string name="could_not_download_album_cover">"No se pudo descargar una car\u00e1tula del \u00e1lbum correspondiente."</string>
<string name="could_not_restore_purchase">No se pueden restaurar las compras previas.</string>
<string name="could_not_scan_files">No se pudieron escanear %d archivos.</string>
<string name="could_not_download_album_cover">"No se pudo encontrar una portada de \u00e1lbum coincidente."</string>
<string name="could_not_restore_purchase">No se pudo restaurar la compra.</string>
<string name="could_not_scan_files">No se pudo escanear %d archivos.</string>
<string name="create_action">Crear</string>
<string name="created_playlist_x">La lista de reproducción %1$s ha sido creada.</string>
<string name="currently_listening_to_x_by_x">Escuchando %1$s de %2$s</string>
<string name="dark_theme_name">Oscuro</string>
<string name="default_hint">No hay letra disponible</string>
<string name="created_playlist_x">Lista de reproducción %1$s creada.</string>
<string name="credit_title">Miembros y colaboradores</string>
<string name="currently_listening_to_x_by_x">Ahora escuchando %1$s de %2$s.</string>
<string name="dark_theme_name">Algo oscuro</string>
<string name="default_hint">No hay letras</string>
<string name="delete_playlist_title">Eliminar lista de reproducción</string>
<string name="delete_playlist_x"><![CDATA[¿Eliminar la lista de reproducción <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">"Eliminar listas de reproducción "</string>
<string name="delete_song_x"><![CDATA[¿Eliminar la canción<b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[¿Eliminar listas de reproducción <b>%1$d</b>?]]></string>
<string name="delete_x_songs"><![CDATA[¿Eliminar canciones <b>%1$d</b>?]]></string>
<string name="deleted_x_songs">Canciones %1$d se han eliminado</string>
<string name="delete_playlists_title">Eliminar listas de reproducción</string>
<string name="delete_song_x"><![CDATA[¿Eliminar la canción <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[¿Eliminar <b>%1$d</b> listas de reproducción?]]></string>
<string name="delete_x_songs"><![CDATA[¿Eliminar <b>%1$d</b> canciones?]]></string>
<string name="deleted_x_songs">Se han eliminado %1$d canciones.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Únete al servidor de Discord para mantenerte al día con las últimas noticias</string>
<string name="do_you_want_to_clear_the_blacklist">¿Quieres limpiar la lista negra?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[¿Quieres borrar <b>%1$s</b> de la lista negra?]]></string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[¿Quieres eliminar <b>%1$s</b> de la lista negra?]]></string>
<string name="donate">Donar</string>
<string name="donate_summary">Si crees que merezco ser recompensado por mi trabajo, puedes dejarme un poco de dinero aquí.</string>
<string name="donation_header">Cómprame una</string>
<string name="download_from_last_fm">Descarga de Last.fm</string>
<string name="donate_summary">Si crees que merezco ser pagado por mi trabajo, puedes darme algo de dinero aquí</string>
<string name="donation_header">Invitarme a:</string>
<string name="download_from_last_fm">Descargar de last.fm</string>
<string name="edit_cover">Editar carátula</string>
<string name="empty">Vacío</string>
<string name="equalizer">Ecualizador</string>
<string name="faq">Preguntas frecuentes</string>
<string name="favorites">Favoritos</string>
<string name="flat">Plano</string>
<string name="folders">Carpetas</string>
<string name="for_you">Para tí</string>
<string name="full">Completo</string>
<string name="genre">"Género "</string>
<string name="for_you">Para ti</string>
<string name="full">Lleno</string>
<string name="general_settings_summary">Cambiar el tema y los colores de la aplicación</string>
<string name="general_settings_title">Apariencia</string>
<string name="genre">Género</string>
<string name="genres">Géneros</string>
<string name="git_hub_summary">Siga el proyecto en GitHub</string>
<string name="google_plus_community">Únete a la comunidad de Google Plus, donde puedes pedir ayuda o seguir las actualizaciones de Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
@ -125,189 +144,247 @@
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Historial</string>
<string name="history">Historia</string>
<string name="home">Inicio</string>
<string name="image_settings_summary">Configuración de descarga de imágenes del artista</string>
<string name="inserted_x_songs_into_playlist_x">%1$d canciones han sido insertadas en la playlist %2$s.</string>
<string name="image_settings_summary">Cambiar la configuración de descarga de imágenes del artista</string>
<string name="inserted_x_songs_into_playlist_x">Se han añadido %1$d canciones a la lista %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Comparta su configuración de Retro Music en Instagram</string>
<string name="label_bit_rate">Tasa de bits</string>
<string name="label_file_format">"Formato "</string>
<string name="label_file_name">"Nombre del archivo "</string>
<string name="label_file_path">Ubicación de archivo</string>
<string name="label_file_format">Formato</string>
<string name="label_file_name">Nombre de archivo</string>
<string name="label_file_path">Ruta de archivo</string>
<string name="label_file_size">Tamaño</string>
<string name="label_sampling_rate">Frecuencia de muestreo</string>
<string name="label_track_length">Duración</string>
<string name="last_added">Agregados últimamente</string>
<string name="lets_play_something">Vamos a poner algo</string>
<string name="label_sampling_rate">Tasa de muestreo</string>
<string name="label_track_length">Tamaño</string>
<string name="last_added">Último agregado</string>
<string name="lets_play_something">Vamos a poner algo de música</string>
<string name="library">Biblioteca</string>
<string name="licenses">Licencias</string>
<string name="light_theme_name">Blanco</string>
<string name="listing_files">Listado de archivos</string>
<string name="loading_products">Cargando productos...</string>
<string name="lyrics">Letra</string>
<string name="my_name">Mi Nombre</string>
<string name="my_top_tracks">Mis pistas favoritas</string>
<string name="material">Material</string>
<string name="my_name">Mi nombre</string>
<string name="my_top_tracks">Más reproducidas</string>
<string name="never">Nunca</string>
<string name="new_banner_photo">Nueva foto de portada</string>
<string name="new_playlist_title">Nueva lista de reproducción</string>
<string name="new_profile_photo">Nueva foto de perfil</string>
<string name="new_start_directory">%s es el nuevo directorio de inicio.</string>
<string name="no_albums">No hay álbums</string>
<string name="no_artists">No hay artistas</string>
<string name="no_audio_ID">"Primero reproduce una canción, luego prueba otra vez."</string>
<string name="no_equalizer">No se encontró ningún ecualizador.</string>
<string name="no_genres">Sin genero</string>
<string name="no_lyrics_found">No sé encontraron letras</string>
<string name="no_playlists">No hay listas de reproducción</string>
<string name="no_albums">Sin álbumes</string>
<string name="no_artists">Sin artistas</string>
<string name="no_audio_ID">"Reproduce una canción primero e intenta de nuevo."</string>
<string name="no_equalizer">No se encontró ningún ecualizador</string>
<string name="no_genres">Sin géneros</string>
<string name="no_lyrics_found">No se encontró la letra</string>
<string name="no_playlists">Sin listas de reproducción</string>
<string name="no_purchase_found">No se encontró compra</string>
<string name="no_results">Sin resultados</string>
<string name="no_songs">No hay canciones</string>
<string name="no_songs">Sin canciones</string>
<string name="normal">Normal</string>
<string name="normal_lyrics">Letra normal</string>
<string name="normal_style">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> no aparece en la tienda multimedia.]]></string>
<string name="nothing_to_scan">Nada para escanear</string>
<string name="notification">"Notificación "</string>
<string name="now_playing">Está sonando</string>
<string name="now_playing_queue">Ahora sonando en cola</string>
<string name="only_on_wifi">Sólo con WiFi</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> no está listado en el almacenamiento interno.]]></string>
<string name="nothing_to_scan">Nada que escanear</string>
<string name="notification">Notificación</string>
<string name="notification_settings_summary">Personalizar el estilo de la notificación</string>
<string name="now_playing">Reproduciendo</string>
<string name="now_playing_queue">Cola de reproducción</string>
<string name="only_on_wifi">Sólo con Wi-Fi</string>
<string name="others">Otro</string>
<string name="past_three_months">Últimos 3 meses</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me es una forma fácil de donarnos dinero. En caso que solo enlazaras una tarjeta de débito o crédito la tarifa en los EE.UU es el 2.9% de la donación más $0.30 USD, de lo contrario no hay tarifa.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">more</a></string>
<string name="permission_external_storage_denied">Permisos para acceder a almacenamiento externo denegado.</string>
<string name="permissions_denied">Permisos denegados</string>
<string name="paypal_summary">PayPal.me es una manera fácil de donar dinero. En caso de que solo vincule una tarjeta de crédito o débito, la tarifa en EEUU es del 2,9% de la donación + 0,30$ (USD). De lo contrario, no hay tarifa.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">más</a></string>
<string name="permission_external_storage_denied">Permiso para acceder al almacenamiento externo denegado.</string>
<string name="permissions_denied">Permisos denegados.</string>
<string name="personalize">Personalizar</string>
<string name="pick_from_local_storage">Elige del almacenamiento local</string>
<string name="personalize_settings_summary">Personalizar la pantalla de reproducción y los controles de la interfaz</string>
<string name="pick_from_local_storage">Seleccionar del almacenamiento local</string>
<string name="plain">Plano</string>
<string name="playing_notification_description">La notificación de reproducción muestra controles para parar, reproducir, etc.</string>
<string name="playing_notification_description">La notificación de reproducción muestra acciones de reproducción/pausa, etc.</string>
<string name="playing_notification_name">Notificación de reproducción</string>
<string name="playlist_empty_text">Lista de Reproducción vacía</string>
<string name="playlist_empty_text">Lista de reproducción vacía</string>
<string name="playlist_is_empty">La lista de reproducción está vacía</string>
<string name="playlist_name_empty">Nombre de Lista de reproducción</string>
<string name="playlists">Playlists</string>
<string name="playlist_name_empty">Nombre de lista de reproducción</string>
<string name="playlists">Listas de reproducción</string>
<string name="pref_header_audio">Audio</string>
<string name="pref_header_general">"General "</string>
<string name="pref_header_images">Imágenes</string>
<string name="pref_header_lockscreen">Pantalla de Bloqueo</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">imágenes</string>
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
<string name="pref_header_playlists">Listas de reproducción</string>
<string name="pref_only_lollipop">"Solo disponible para Lollipop."</string>
<string name="pref_summary_album_art_on_lockscreen">Utiliza la carátula actual del álbum de canciones como fondo de pantalla de bloqueo.</string>
<string name="pref_summary_audio_ducking">Notificaciones, navegación, etc.</string>
<string name="pref_summary_blurred_album_art">Desenfocar la cubierta del álbum en la pantalla de bloqueo. Puede causar problemas con aplicaciones y widgets de terceros</string>
<string name="pref_summary_carousel_effect">Efecto de carrusel en ventana de reproducción.</string>
<string name="pref_summary_classic_notification">Utiliza el diseño de notificación clásico.</string>
<string name="pref_summary_colored_app">El color del fondo y del botón de control cambian de acuerdo con la imagen del álbum de la pantalla del reproductor</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los atajos de la app en el color de énfasis. Cada vez que cambies el color, por favor activa esto para que haga efecto.</string>
<string name="pref_summary_colored_navigation_bar">Color de la barra de navegación en color primario.</string>
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n en el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
<string name="pref_summary_dominant_color">El color dominante se elegirá de la imagen del álbum o artista</string>
<string name="pref_only_lollipop">"Sólo disponible en Lollipop."</string>
<string name="pref_summary_album_art_on_lockscreen">Utilizar la portada del álbum de la canción que se está reproduciendo como fondo de pantalla de bloqueo</string>
<string name="pref_summary_audio_ducking">Bajar el volumen cuando se reproduzca un sonido del sistema o se reciba una notificación</string>
<string name="pref_summary_blurred_album_art">Desenfocar la portada del álbum en la pantalla de bloqueo. Puede causar problemas con aplicaciones y widgets de terceros</string>
<string name="pref_summary_carousel_effect">Efecto carrusel para la carátula en la pantalla de reproducción. Los temas Tarjeta y Tarjeta Desenfocada no funcionarán</string>
<string name="pref_summary_classic_notification">Usar el diseño clásico de notificaciones</string>
<string name="pref_summary_colored_app">Los colores de fondo y de los botones de control cambian acorde a la carátula del álbum que se está reproduciendo</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los atajos de la aplicación en el color de énfasis. Activa esta opción cada vez que cambies el color para que surta efecto</string>
<string name="pref_summary_colored_navigation_bar">Colorea la barra de navegación en el color primario</string>
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n en color vibrante de la portada del \u00e1lbum"</string>
<string name="pref_summary_dominant_color">El color dominante se elegirá de la portada del álbum o del artista</string>
<string name="pref_summary_gapless_playback">"Puede causar problemas de reproducción en algunos dispositivos."</string>
<string name="pref_summary_ignore_media_store_artwork">Puede aumentar la calidad de la portada del álbum, pero causa tiempos de carga lenta de la imagen. Activar únicamente si tienes problemas con carátulas de baja resolución.</string>
<string name="pref_summary_lock_screen">Mostrar controles en la pantalla de bloqueo para Retro Music</string>
<string name="pref_summary_ignore_media_store_artwork">Puede mejorar la calidad de la portada del álbum, pero causa que las imágenes carguen más lento. Solo activa esta opción si tienes problemas con carátulas de baja resolución.</string>
<string name="pref_summary_lock_screen">Utilizar los controles de pantalla de bloqueo personalizados de Retro Music</string>
<string name="pref_summary_open_source_licences">Detalles de licencia para software libre</string>
<string name="pref_summary_round_corners">Esquinas redondeadas para la aplicación, las ilustraciones de los álbumes, etc.</string>
<string name="pref_summary_tab_titles">Habilitar/deshabilitar títulos de las pestañas inferiores</string>
<string name="pref_summary_toggle_full_screen">Activar esto para modo inmersivo</string>
<string name="pref_summary_toggle_headset">Reproducir cuando se conecten los auriculares</string>
<string name="pref_summary_toggle_shuffle">Se quitará el modo aleatorio al reproducir una nueva lista de canciones</string>
<string name="pref_summary_toggle_volume">Activar controles de volumen si hay espacio en la pantalla de reproduccióm</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
<string name="pref_title_album_grid_style">Cuadrícula de álbumes</string>
<string name="pref_title_app_shortcuts">Atajo de aplicación coloreada</string>
<string name="pref_title_audio_ducking">Reduce volumen en perdida de enfoque</string>
<string name="pref_title_auto_download_artist_images">Descarga automática de imágenes de artista</string>
<string name="pref_title_blurred_album_art">Desenfocar carátula del álbum</string>
<string name="pref_summary_round_corners">Redondear las esquinas de la aplicación</string>
<string name="pref_summary_tab_titles">Mostrar nombres para las pestañas de navegación inferiores</string>
<string name="pref_summary_toggle_full_screen">Modo inmersivo</string>
<string name="pref_summary_toggle_headset">Iniciar el reproductor inmediatamente después de conectar los auriculares</string>
<string name="pref_summary_toggle_shuffle">El modo aleatorio se desactivará al reproducir una nueva lista de canciones</string>
<string name="pref_summary_toggle_volume">Si hay espacio suficiente, mostrar los controles de volumen en la pantalla de reproducción</string>
<string name="pref_summary_extra_controls">Añadir controles extra para el mini reproductor</string>
<string name="pref_summary_genre_toggle">Activar pestaña de géneros</string>
<string name="pref_summary_home_banner">Mostrar portada en la pantalla de inicio</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar portada del álbum</string>
<string name="pref_title_tab_text_mode">Estilo de las pestañas de título</string>
<string name="pref_title_album_grid_style">Cuadrícula de álbums</string>
<string name="pref_title_app_shortcuts">Atajos de la aplicación coloreados</string>
<string name="pref_title_artist_grid_style">Cuadrícula de artistas</string>
<string name="pref_title_audio_ducking">Reducir volumen en la pérdida de enfoque</string>
<string name="pref_title_auto_download_artist_images">Descargar imágenes de artista automáticamente</string>
<string name="pref_title_blurred_album_art">Desenfocar portada del álbum</string>
<string name="pref_title_choose_equalizer">Elegir ecualizador</string>
<string name="pref_title_classic_notification">Diseño de notificación clásico</string>
<string name="pref_title_colored_app">Color adaptativo</string>
<string name="pref_title_colored_notification">Notificación coloreada</string>
<string name="pref_title_gapless_playback">"Reproducción sin interrupciones "</string>
<string name="pref_title_general_theme">Tema general</string>
<string name="pref_title_ignore_media_store_artwork">Ignorar carátulas de la biblioteca de medios</string>
<string name="pref_title_last_added_interval">Último intervalo de listas agregado</string>
<string name="pref_title_gapless_playback">Reproducción sin interrupciones</string>
<string name="pref_title_general_theme">Tema de la aplicación</string>
<string name="pref_title_ignore_media_store_artwork">Ignorar carátulas provenientes del almacenamiento local</string>
<string name="pref_title_last_added_interval">Intervalo de últimas canciones añadidas</string>
<string name="pref_title_lock_screen">Controles de pantalla completa</string>
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
<string name="pref_title_now_playing_screen_appearance">Apariencia</string>
<string name="pref_title_now_playing_screen_appearance">Tema de la pantalla de reproducción</string>
<string name="pref_title_open_source_licences">Licencias de código abierto</string>
<string name="pref_title_round_corners">Esquinas redondeadas</string>
<string name="pref_title_round_corners">Bordes</string>
<string name="pref_title_toggle_carousel_effect">Efecto carrusel</string>
<string name="pref_title_toggle_dominant_color">Color dominante</string>
<string name="pref_title_toggle_full_screen">App en pantalla completa</string>
<string name="pref_title_toggle_tab_titles">Títulos de pestañas</string>
<string name="pref_title_toggle_full_screen">Aplicación en pantalla completa</string>
<string name="pref_title_toggle_tab_titles">Nombres de las pestañas</string>
<string name="pref_title_toggle_toggle_headset">Reproducción automática</string>
<string name="pref_title_toggle_toggle_shuffle">Modo aleatorio</string>
<string name="pref_title_toggle_volume">Controles de volumen</string>
<string name="pref_title_user_info">Información del usuario</string>
<string name="pref_title_extra_controls">Controles adicionales</string>
<string name="pref_title_home_banner">Portada de inicio</string>
<string name="pref_title_genre_toggle">Mostrar géneros</string>
<string name="pref_title_home_artist_grid_style">Cuadrícula de inicio de artistas</string>
<string name="pref_title_album_cover_transform">Estilo de la portada del álbum en la pantalla de reproducción</string>
<string name="cascading">En cascada</string>
<string name="primary_color">Color primario</string>
<string name="primary_color_desc">El color del tema principal, blanco por defecto.</string>
<string name="queue">Cola de reproducción</string>
<string name="rate_app">¡Puntúa la app!</string>
<string name="rate_on_google_play_summary">Si te encanta esta aplicación, haznos saber en Google Play Store para ofrecer una mejor experiencia</string>
<string name="remove_action">Quitar</string>
<string name="remove_cover">Remover carátula</string>
<string name="remove_from_blacklist">Remover de la lista negra</string>
<string name="remove_song_from_playlist_title">Quitar canción de la lista</string>
<string name="remove_song_x_from_playlist"><![CDATA[¿Quitar canción <b>%1$s</b> de la lista?]]></string>
<string name="remove_songs_from_playlist_title">Quitar canciones de la lista</string>
<string name="remove_x_songs_from_playlist"><![CDATA[¿Eliminar canciones <b>%1$d</b> de la lista?]]></string>
<string name="rename_playlist_title">Renombrar lista</string>
<string name="reset_artist_image">Restablecer imagen del artista</string>
<string name="restored_previous_purchases">Compras previas restauradas.</string>
<string name="retro_equalizer">Retri Ecualizador</string>
<string name="primary_color_desc">El color de tema primario, azul grisáceo por defecto, por ahora funciona con colores oscuros</string>
<string name="purchase">Comprar</string>
<string name="purchase_summary">*Piensa antes de comprar, no pidas reembolso.</string>
<string name="queue">Cola</string>
<string name="rate_app">Valora la aplicación</string>
<string name="rate_on_google_play_summary">¿Te gusta esta aplicación? Haznos saber en Google Play Store cómo podemos mejorarla incluso más</string>
<string name="recent_albums">Álbumes recientes</string>
<string name="recent_artists">Artistas recientes</string>
<string name="remove_action">Eliminar</string>
<string name="remove_banner_photo">Eliminar foto de portada</string>
<string name="remove_cover">Eliminar carátula</string>
<string name="remove_from_blacklist">Quitar de la lista negra</string>
<string name="remove_profile_photo">Eliminar foto de perfil</string>
<string name="remove_song_from_playlist_title">Eliminar canción de la lista de reproducción</string>
<string name="remove_song_x_from_playlist"><![CDATA[¿Eliminar la canción <b>%1$s</b> de la lista de reproducción?]]></string>
<string name="remove_songs_from_playlist_title">Eliminar canciones de la lista de reproducción</string>
<string name="remove_x_songs_from_playlist"><![CDATA[¿Eliminar <b>%1$d</b> canciones de la lista de reproducción?]]></string>
<string name="rename_playlist_title">Renombrar lista de reproducción</string>
<string name="reset_artist_image">Renovar imagen de artista</string>
<string name="restore">Restablecer</string>
<string name="restored_previous_purchase_please_restart">Restablecer compra anterior. Reinicia la aplicación para disfrutar de todas las funciones.</string>
<string name="restored_previous_purchases">Compra anterior restablecida.</string>
<string name="restoring_purchase">Restableciendo compra...</string>
<string name="retro_equalizer">Ecualizador de Retro Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Guardar como archivo</string>
<string name="saved_playlist_to">Guardar lista de reproducción en %s.</string>
<string name="save_playlists_title">Guardar como archivos</string>
<string name="saved_playlist_to">Lista de reproducción guardada en %s.</string>
<string name="saving_changes">Guardando cambios</string>
<string name="scanned_files">Escaneado %1$d de %2$d archivos.</string>
<string name="search_hint">Busca en tu biblioteca...</string>
<string name="set_artist_image">Establecer imagen del artista</string>
<string name="shuffle">Aleatorio</string>
<string name="scan_media">Escanear archivos</string>
<string name="scanned_files">%1$d de %2$d archivos escaneados.</string>
<string name="search_hint">Buscar en tu biblioteca...</string>
<string name="select_all">Seleccionar todo</string>
<string name="select_banner_photo">Elegir una foto de portada</string>
<string name="set_artist_image">Establecer imagen de artista</string>
<string name="shuffle">Mezclar</string>
<string name="simple">Simple</string>
<string name="sleep_timer_canceled">Temporizador cancelado.</string>
<string name="sleep_timer_set">Temporizador de apagado activado para dentro de %d</string>
<string name="sleep_timer_canceled">Temporizador cancelado</string>
<string name="sleep_timer_set">Temporizador programado para %d minutos</string>
<string name="social">Social</string>
<string name="song">Canción</string>
<string name="song_duration">Duración de la canción</string>
<string name="songs">"Canciones "</string>
<string name="songs">Canciones</string>
<string name="sort_order">Orden de clasificación</string>
<string name="speech_not_supported">Lo siento, tu dispositivo no soporta las órdenes por voz.</string>
<string name="speech_prompt">Busca en tu biblioteca</string>
<string name="summary_user_info">Solo muestra tu nombre en la pantalla de inicio</string>
<string name="sort_order_a_z">Ascendente</string>
<string name="sort_order_album">Álbum</string>
<string name="sort_order_artist">Artista</string>
<string name="sort_order_date">Fecha</string>
<string name="sort_order_year">Año</string>
<string name="sort_order_z_a">Descendente</string>
<string name="speech_not_supported">¡Lo sentimos! Tu dispositivo no es compatible con la entrada de voz</string>
<string name="speech_prompt">Buscar en tu biblioteca</string>
<string name="summary_user_info">Solo mostrar tu nombre en la pantalla de inicio</string>
<string name="support_development">Apoyar desarrollo</string>
<string name="synced_lyrics">Letra sincronizada</string>
<string name="system_equalizer">Ecualizador del sistema</string>
<string name="support_development">Soporte del desarrollador</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Unirse al grupo de Telegram para comentar errores, hacer sugerencias, presumir y más cosas</string>
<string name="thank_you">¡Gracias!</string>
<string name="the_audio_file">El archivo de audio</string>
<string name="this_month">Este mes</string>
<string name="this_week">Esta semana</string>
<string name="this_year">Este año</string>
<string name="tiny">Pequeño</string>
<string name="title_dashboard">Interfaz</string>
<string name="title_good_afternoon">¡Buenas tardes!</string>
<string name="title_good_day">¡Buen día!</string>
<string name="title_good_evening">¡Buenas tardes!</string>
<string name="title_good_morning">¡Buenos días!</string>
<string name="title_good_night">¡Buenas noches!</string>
<string name="title_user_info">¿Cuál es tu nombre?</string>
<string name="title_dashboard">Panel</string>
<string name="title_good_afternoon">Buenas tardes</string>
<string name="title_good_day">Buen día</string>
<string name="title_good_evening">Buenas noches</string>
<string name="title_good_morning">Buenos días</string>
<string name="title_good_night">Buenas noches</string>
<string name="title_user_info">Cómo te llamas</string>
<string name="today">Hoy</string>
<string name="track_hint">"Cancion (2 para la canción 2 o 3004 para el CD 3 canción 4)"</string>
<string name="top_albums">Mejores álbumes</string>
<string name="top_artists">Mejores artistas</string>
<string name="track_hint">"Pista (2 para la pista 2 o 3004 para la pista 4 del CD3)"</string>
<string name="track_list">Número de pista</string>
<string name="translate">Traducir</string>
<string name="unplayable_file">No es posible reproducir est\u00e1 canci\u00f3n.</string>
<string name="up_next">A continuación</string>
<string name="translate_community">Ayúdanos a traducir la aplicación a tu idioma</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Comparte tu diseño con Retro Music</string>
<string name="unplayable_file">No se pudo reproducir esta canci\u00f3n.</string>
<string name="up_next">Siguientes</string>
<string name="update_image">Actualizar imagen</string>
<string name="updating">Actualizando...</string>
<string name="version">Versión</string>
<string name="web_search">Búsqueda web</string>
<string name="virtualizer">Virtualizador</string>
<string name="web_search">Búsqueda en la web</string>
<string name="what_do_you_want_to_share">¿Qué quieres compartir?</string>
<string name="window">Ventana</string>
<string name="x_has_been_set_as_ringtone">Establecer %1$s como nuevo tono de llamada.</string>
<string name="x_has_been_set_as_ringtone">Establecer %1$s como tono de llamada.</string>
<string name="x_selected">%1$d seleccionado</string>
<string name="year">Año</string>
<string name="pref_title_album_cover_style">Tema de portada del álbum</string>
<string name="now_playing_summary">Modificar pantalla de reproducción</string>
<string name="full_card">Modo tarjeta</string>
<string name="made_with_love">Hecho con ❤️ en India</string>
<string name="clear_app_data">Limpiar datos de la aplicación</string>
<string name="bug_report_summary">Lo sentimos, ha ocurrido un error inesperado. Si el problema sigue \"Limpiar datos de la aplicación\"</string>
<string name="error">Error</string>
<string name="base_color_theme">Elegir color del tema</string>
<string name="now_playing_themes">Más de 9 temas de reproducción</string>
<string name="carousal_effect_on_now_playing_screen">Efecto carrusel en la pantalla de reproducción</string>
<string name="window_corner_edges">Bordes redondeados</string>
<string name="pref_title_album_cover_style">Tema de la portada del álbum</string>
<string name="circular">Circular</string>
<string name="carousal">Carrusel</string>
<string name="now_playing_summary">Personalizar pantalla de reproducción</string>
<string name="full_card">Tarjeta completa</string>
<string name="profile">Perfil</string>
<string name="bio">Biografía</string>
<string name="auto">Automático</string>
<string name="labeled">Con etiquetas</string>
<string name="unlabeled">Sin etiquetas</string>
<string name="selected">Seleccionado</string>
</resources>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Color de énfasis</string>
<string name="accent_color">Hello</string>
<string name="accent_color_desc">El color de énfasis del tema, por defecto es verde azulado</string>
<string name="action_about">Acerca de Retro Music Player</string>
<string name="action_add_to_favorites">Añadir a favoritos</string>
@ -60,7 +60,7 @@
<string name="app_shortcut_shuffle_all_long">Mezclar todo</string>
<string name="app_shortcut_shuffle_all_short">Aleatorio</string>
<string name="app_shortcut_top_tracks_long">Más Reproducidas</string>
<string name="app_shortcut_top_tracks_short">Más Reproducidas</string>
<string name="app_shortcut_top_tracks_short">Hello</string>
<string name="app_widget_big_name">Retro Music - Grande</string>
<string name="app_widget_card_name">Retro Music - Tarjeta</string>
<string name="app_widget_classic_name">Retro Music - Clásico</string>
@ -79,7 +79,6 @@
<string name="pref_keep_screen_on_summary">Tenga en cuenta que habilitar esta función puede afectar la duración de la batería</string>
<string name="pref_blur_amount_title">Cantidad de desenfoque</string>
<string name="pref_blur_amount_summary">Cantidad de desenfoque aplicado a los temas de desenfoque, más bajo es más rápido</string>
<string name="buy_retro_music_pro">Comprar Retro Music Pro</string>
<string name="cancel_current_timer">Cancelar</string>
<string name="card">Tarjeta</string>
<string name="card_color_style">Tarjeta coloreada</string>
@ -238,9 +237,9 @@
<string name="pref_summary_toggle_volume">Muestra los controles de volumen en la ventana de reproducción, si hay suficiente espacio disponible</string>
<string name="pref_summary_extra_controls">"Añadir controles extra al minireproductor "</string>
<string name="pref_summary_genre_toggle">Mostrar/Ocultar pestaña de géneros</string>
<string name="pref_summary_home_banner">Mostar/Ocultar banner de inicio</string>
<string name="pref_summary_home_banner">Mostar/Ocultar banner de pantalla de inicio</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar portada del álbum</string>
<string name="pref_title_tab_text_mode">Modo de títulos de pestañas</string>
<string name="pref_title_tab_text_mode">Tipo de títulos de pestañas</string>
<string name="pref_title_album_grid_style">Cuadrícula del álbum</string>
<string name="pref_title_app_shortcuts">Accesos directos coloreados</string>
<string name="pref_title_artist_grid_style">Cuadrícula de artistas</string>
@ -269,9 +268,10 @@
<string name="pref_title_toggle_volume">Controles de volumen</string>
<string name="pref_title_user_info">Información de usuario</string>
<string name="pref_title_extra_controls">Controles extra</string>
<string name="pref_title_home_banner">Banner de inicio</string>
<string name="pref_title_home_banner">Banner de pantalla de inicio</string>
<string name="pref_title_genre_toggle">Mostrar pestaña de géneros</string>
<string name="pref_title_home_artist_grid_style">Cuadrícula de artista en inicio</string>
<string name="pref_title_home_artist_grid_style">Cuadrícula de artista en pantalla de inicio</string>
<string name="pref_title_album_cover_transform">Estilo de portada del álbum en reproducción</string>
<string name="cascading">En cascada</string>
<string name="primary_color">Color principal</string>
<string name="primary_color_desc">El color principal del tema -por defecto es azul grisáceo- temporalmente funciona con colores oscuros</string>

View File

@ -1,120 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Color principal</string>
<string name="accent_color_desc">El color de énfasis, verde por defecto.</string>
<string name="accent_color">Music</string>
<string name="accent_color_desc">El color acentuado por defecto es verde</string>
<string name="action_about">Acerca de</string>
<string name="action_add_to_favorites">Añadir a favoritos</string>
<string name="action_add_to_playing_queue">Añadir a la cola de reproducción</string>
<string name="action_add_to_playlist">Añadir a la lista...</string>
<string name="action_add_to_playing_queue">Añadir a cola de reproducción</string>
<string name="action_add_to_playlist">Añadir a lista de reproducción...</string>
<string name="action_clear_playing_queue">Limpiar cola de reproducción</string>
<string name="action_clear_playlist">Limpiar lista de reproducción</string>
<string name="action_delete">Eliminar</string>
<string name="action_delete_from_device">Eliminar del dispositivo</string>
<string name="action_clear_playlist">Borrar lista de reproducción</string>
<string name="action_delete">Borrar</string>
<string name="action_delete_from_device">Borrar del dispositivo</string>
<string name="action_details">Detalles</string>
<string name="action_go_to_album">Ir al álbum</string>
<string name="action_go_to_artist">Ver artista</string>
<string name="action_go_to_start_directory">Ir a inicio</string>
<string name="action_grant">Permitir</string>
<string name="action_grid_size">Tamaño de cuadrícula</string>
<string name="action_grid_size_land">Tamaño de cuadrícula (Horizontal)</string>
<string name="action_go_to_genre">Ir al género</string>
<string name="action_go_to_start_directory">Ir al directorio de inicio</string>
<string name="action_grant">Conceder</string>
<string name="action_grid_size">Tamaño de la cuadricula</string>
<string name="action_grid_size_land">Tamaño de la cuadricula (Horizontal)</string>
<string name="action_next">Siguiente</string>
<string name="action_play">Reproducir</string>
<string name="action_play_next">Reproducir siguiente</string>
<string name="action_play_pause">Reproducir/Pausar</string>
<string name="action_play_pause">Reproducir/Pausa</string>
<string name="action_previous">Anterior</string>
<string name="action_remove_from_favorites">Eliminar de favoritos</string>
<string name="action_remove_from_playing_queue">Borrar de la cola de reproducción</string>
<string name="action_remove_from_playlist">Borrar de la lista de reproducción</string>
<string name="action_rename">Cambiar nombre</string>
<string name="action_save_playing_queue">Guardar cola de reproducción</string>
<string name="action_remove_from_playing_queue">Eliminar de la cola de reproducción</string>
<string name="action_remove_from_playlist">Eliminar de la lista de reproducción</string>
<string name="action_rename">Renombrar</string>
<string name="action_save_playing_queue">Guardar lista de reproducción</string>
<string name="action_scan">Escanear</string>
<string name="action_scan_directory">Escanear directorio</string>
<string name="action_search">Buscar</string>
<string name="action_set">Establecer</string>
<string name="action_set">Iniciar</string>
<string name="action_set_as_ringtone">Establecer como tono de llamada</string>
<string name="action_set_as_start_directory">Establecer como directorio de inicio</string>
<string name="action_settings">"Ajustes"</string>
<string name="action_settings">"Configuración"</string>
<string name="action_share">Compartir</string>
<string name="action_shuffle_all">Todo Aleatorio</string>
<string name="action_shuffle_playlist">Reproducción aleatoria de la lista</string>
<string name="action_shuffle_all">Mezclar todo</string>
<string name="action_shuffle_playlist">Lista de reproducción aleatoria</string>
<string name="action_sleep_timer">Temporizador de apagado</string>
<string name="action_sort_order">Ordenar por</string>
<string name="action_tag_editor">Editor de etiquetas</string>
<string name="adaptive">Adaptativo</string>
<string name="add_action">Agregar</string>
<string name="add_photo">Agregar \nfoto</string>
<string name="add_playlist_title">"Agregar a la lista de reproducción"</string>
<string name="added_title_to_playing_queue">"Se agregó 1 canción a la lista de reproducción"</string>
<string name="added_x_titles_to_playing_queue">Se agregaron %1$d canciones a la cola de reproducción</string>
<string name="add_photo">Agregar foto</string>
<string name="add_playlist_title">"Agregar a lista de reproducción"</string>
<string name="added_title_to_playing_queue">"Se ha agregado 1 canción a la cola de reproducción"</string>
<string name="added_x_titles_to_playing_queue">%1$d canciones agregadas a la cola de reproducción</string>
<string name="album">Álbum</string>
<string name="album_artist">Artista del álbum</string>
<string name="album_or_artist_empty">El título o el artista está vacío</string>
<string name="albums">"Álbumes "</string>
<string name="album_or_artist_empty">El titulo o artista está vacío</string>
<string name="albums">Álbumes</string>
<!-- Android Auto -->
<string name="always">Siempre</string>
<string name="app_share">¡Hey! Mira este genial reproductor de música en: https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">Echa un vistazo a este genial reproductor de música en: https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">Últimas añadidas</string>
<string name="app_shortcut_last_added_short">Últimas añadidas</string>
<string name="app_shortcut_shuffle_all_long">Modo aleatorio</string>
<string name="app_shortcut_last_added_long">Añadidas recientemente</string>
<string name="app_shortcut_last_added_short">Añadidas recientemente</string>
<string name="app_shortcut_shuffle_all_long">Aleatorio</string>
<string name="app_shortcut_shuffle_all_short">Aleatorio</string>
<string name="app_shortcut_top_tracks_long">Más reproducidas</string>
<string name="app_shortcut_top_tracks_short">Más Reproducidas</string>
<string name="app_shortcut_top_tracks_long">Canciones más reproducidas</string>
<string name="app_shortcut_top_tracks_short">Canciones más reproducidas</string>
<string name="app_widget_big_name">Retro Music - Grande</string>
<string name="app_widget_card_name">Retro Music - Tarjeta</string>
<string name="app_widget_classic_name">Retro Music - Clasico</string>
<string name="app_widget_classic_name">Retro Music - Clásico</string>
<string name="app_widget_small_name">Retro Music - Pequeño</string>
<string name="artist">Artista</string>
<string name="artists">Artistas</string>
<string name="audio_focus_denied">Canción sin etiquetas</string>
<string name="audio_settings_summary">Modificar los ajustes de sonido y controles del ecualizador</string>
<string name="audio_focus_denied">Enfoque de audio denegado</string>
<string name="audio_settings_summary">Modificar los ajustes de sonido y ajusta los controles del ecualizador</string>
<string name="bass_boost">Refuerzo de graves</string>
<string name="biography">Biografía</string>
<string name="black_theme_name">Negro</string>
<string name="blacklist">Lista negra</string>
<string name="blur">Desenfoque</string>
<string name="blur_card">Tarjeta con desenfoque</string>
<string name="buy_retro_music_pro">Comprar RetroMusic Pro</string>
<string name="cancel_current_timer">Cancelar el temporizador actual</string>
<string name="blur_card">Tarjeta desenfocada</string>
<string name="pref_keep_screen_on_title">Mantener la pantalla encendida</string>
<string name="pref_keep_screen_on_summary">Tenga en cuenta que habilitar esta función puede afectar la duración de la batería</string>
<string name="pref_blur_amount_title">Cantidad de desenfoque</string>
<string name="pref_blur_amount_summary">Cantidad de desenfoque aplicado a los temas desenfocados, más bajo es más rápido</string>
<string name="cancel_current_timer">Cancelar</string>
<string name="card">Tarjeta</string>
<string name="changelog">Lista de Cambios</string>
<string name="changelog_summary">Lista de cambios disponible en Telegram</string>
<string name="card_color_style">Tarjeta Coloreada</string>
<string name="card_circular_style">Circular</string>
<string name="image">Imagen</string>
<string name="card_style">Tarjeta</string>
<string name="cast">Transmitir</string>
<string name="changelog">Registro de cambios</string>
<string name="changelog_summary">Registro de cambios disponible en el canal de Telegram</string>
<string name="clear_action">Limpiar</string>
<string name="clear_blacklist">Limpiar lista negra</string>
<string name="clear_playlist_title">Limpiar Lista de reproducción</string>
<string name="clear_playlist_x"><![CDATA[\u00bfLimpiar la lista de reproducci\u00f3n <b>%1$s</b>? \u00a1Esto no se puede deshacer!]]></string>
<string name="clear_playlist_title">Limpiar lista de reproducción</string>
<string name="clear_playlist_x"><![CDATA[\u00bfLimpiar la lista de reproducci\u00f3n<b>%1$s</b>? \u00a1Esto no se puede deshacer!]]></string>
<string name="close_notification">Cerrar</string>
<string name="color">Color</string>
<string name="color_theme_name">Color</string>
<string name="colors">Colores</string>
<string name="could_not_create_playlist">No se pudo crear la lista de reproducci\u00f3n</string>
<string name="could_not_download_album_cover">"No se pudo descargar una portada de \u00e1lbum que coincida"</string>
<string name="could_not_restore_purchase">No se pueden restaurar las compras previas.</string>
<string name="could_not_scan_files">No se pudieron escanear %d archivos</string>
<string name="could_not_create_playlist">No se pudo crear la lista de reproducci\u00f3n.</string>
<string name="could_not_download_album_cover">"No se pudo descargar una portada de \u00e1lbum coincidente."</string>
<string name="could_not_restore_purchase">No se pudo restaurar la compra.</string>
<string name="could_not_scan_files">No se pudieron escanear los %d archivos.</string>
<string name="create_action">Crear</string>
<string name="created_playlist_x">Se creó la lista reproducción %1$s</string>
<string name="created_playlist_x">Lista de reproducción %1$s creada</string>
<string name="credit_title">Miembros y contribuidores</string>
<string name="currently_listening_to_x_by_x">Estás escuchando %1$s de %2$s</string>
<string name="dark_theme_name">Oscuro</string>
<string name="default_hint">No hay letras</string>
<string name="dark_theme_name">Más o menos Negro</string>
<string name="default_hint">Sin letra</string>
<string name="delete_playlist_title">Eliminar lista de reproducción</string>
<string name="delete_playlist_x"><![CDATA[¿Eliminar la lista de reproducción <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Eliminar lista de reproducción</string>
<string name="delete_playlist_x"><![CDATA[¿Eliminar lista de reproducción <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Eliminar listas de reproducción</string>
<string name="delete_song_x"><![CDATA[¿Eliminar la canción <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[¿Eliminar <b>%1$d</b> listas de reproducción?]]></string>
<string name="delete_x_songs"><![CDATA[¿Eliminar <b>%1$d</b> canciones?]]></string>
<string name="deleted_x_songs">Se eliminaron %1$d canciones</string>
<string name="deleted_x_songs">%1$d canciones eliminadas.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Únete al servidor de Discord para mantenerte al día con las últimas noticias</string>
<string name="do_you_want_to_clear_the_blacklist">¿Quieres limpiar la lista negra?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[¿Deseas eliminar <b>%1$s</b> de la lista negra?]]></string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[¿Quiere eliminar <b>%1$s</b> de la lista negra?]]></string>
<string name="donate">Donar</string>
<string name="donate_summary">Si consideras que merezco ser pagado por mi trabajo, puedes dejarme un par de dólares aquí</string>
<string name="donation_header">Cómprame un</string>
<string name="download_from_last_fm">Descargar desde Last.fm</string>
<string name="empty">Vacío</string>
<string name="donate_summary">Si crees que merezco que me paguen por mi trabajo, puedes dejar algo de dinero aquí</string>
<string name="donation_header">Cómprame:</string>
<string name="download_from_last_fm">Descargar de Last.fm</string>
<string name="edit_cover">Editar portada</string>
<string name="empty">Vacio</string>
<string name="equalizer">Ecualizador</string>
<string name="faq">Preguntas más frecuentes</string>
<string name="favorites">Favoritos</string>
<string name="flat">Plano</string>
<string name="folders">Carpetas</string>
<string name="for_you">Para ti</string>
<string name="full">Completo</string>
<string name="general_settings_summary">Cambiar los colores generales de la aplicación</string>
<string name="general_settings_title">Apariencia</string>
<string name="general_settings_summary">Cambiar el tema y colores de la aplicación</string>
<string name="general_settings_title">Aspecto y la sensación</string>
<string name="genre">Género</string>
<string name="genres">Géneros</string>
<string name="git_hub_summary">Haz Fork del proyecto en GitHub</string>
<string name="google_plus_community">Únase a la comunidad de Google Plus donde puede pedir ayuda o seguir las actualizaciones Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
@ -125,181 +146,246 @@
<string name="grid_size_8">8</string>
<string name="history">Historial</string>
<string name="home">Inicio</string>
<string name="inserted_x_songs_into_playlist_x">Añadiste %1$d canciones a la lista de reproducción %2$s</string>
<string name="label_bit_rate">Tasa de bits</string>
<string name="image_settings_summary">Cambiar la configuración de descarga de imágenes del artista</string>
<string name="inserted_x_songs_into_playlist_x">%1$d canciones agregadas a la lista de reproducción %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Comparte tu configuración de Retro Music en Instagram</string>
<string name="label_bit_rate">Velocidad de bits</string>
<string name="label_file_format">Formato</string>
<string name="label_file_name">Nombre del archivo</string>
<string name="label_file_path">Ruta del archivo</string>
<string name="label_file_size">Tamaño</string>
<string name="label_sampling_rate">Tasa de muestreo</string>
<string name="label_track_length">Longitud</string>
<string name="last_added">Agregados recientemente</string>
<string name="lets_play_something">Vamos a reproducir algo</string>
<string name="label_track_length">Duración</string>
<string name="last_added">Añadidos recientemente</string>
<string name="lets_play_something">Vamos a tocar un poco de música</string>
<string name="library">Biblioteca</string>
<string name="licenses">Licencias</string>
<string name="light_theme_name">Blanco</string>
<string name="listing_files">Listado de archivos</string>
<string name="light_theme_name">Blanco claro</string>
<string name="listing_files">Listando archivos</string>
<string name="loading_products">Cargando productos...</string>
<string name="lyrics">Letras</string>
<string name="my_name">Mi nombre</string>
<string name="my_top_tracks">Mis canciones más reproducidas</string>
<string name="material">Material</string>
<string name="my_name">Mi Nombre</string>
<string name="my_top_tracks">Más reproducidas</string>
<string name="never">Nunca</string>
<string name="new_banner_photo">Nueva foto del banner</string>
<string name="new_playlist_title">Nueva lista de reproducción</string>
<string name="new_start_directory">%s es el nuevo directorio de inicio</string>
<string name="no_albums">No hay álbumes</string>
<string name="no_artists">No hay artistas</string>
<string name="no_audio_ID">"Reproduce una canción primero e intenta de nuevo"</string>
<string name="no_equalizer">No se encontro ningún ecualizador</string>
<string name="no_genres">No hay géneros</string>
<string name="no_lyrics_found">No se encontraron letras</string>
<string name="no_playlists">No hay listas de reproducción</string>
<string name="no_purchase_found">No se encontraron compras previas.</string>
<string name="new_profile_photo">Nueva foto de perfil</string>
<string name="new_start_directory">%s es el nuevo directorio de inicio.</string>
<string name="no_albums">No hay Álbumes</string>
<string name="no_artists">No hay Artistas</string>
<string name="no_audio_ID">"Primero reproduce una canción, luego intenta de nuevo."</string>
<string name="no_equalizer">No se encontró ecualizador</string>
<string name="no_genres">No hay Géneros</string>
<string name="no_lyrics_found">No se encontró letra</string>
<string name="no_playlists">No hay Listas de Reproducción</string>
<string name="no_purchase_found">No se encontraron compras.</string>
<string name="no_results">Sin resultados</string>
<string name="no_songs">No hay canciones</string>
<string name="no_songs">No hay Canciones</string>
<string name="normal">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> no se encuentra listado en los medios almacenados]]></string>
<string name="nothing_to_scan">Nada para escanear</string>
<string name="normal_lyrics">Letras normales</string>
<string name="normal_style">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> no aparece en la lista de medios.]]></string>
<string name="nothing_to_scan">Nada para escanear.</string>
<string name="notification">Notificación</string>
<string name="notification_settings_summary">Personalizar el estilo de la notificación</string>
<string name="now_playing">Reproduciendo Ahora</string>
<string name="now_playing_queue">Cola de Reproducción</string>
<string name="only_on_wifi">Sólo con Wi-Fi</string>
<string name="others">Otros</string>
<string name="past_three_months">Últimos 3 meses</string>
<string name="now_playing">Reproduciendo</string>
<string name="now_playing_queue">Cola de reproducción</string>
<string name="only_on_wifi">Solo con Wi-Fi</string>
<string name="others">Otro</string>
<string name="past_three_months">Más de 3 meses</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me es una forma fácil de donarnos dinero. En caso que solo enlazaras una tarjeta de débito o crédito, la tarifa en los EE.UU es el 2.9% de la donación más $0.30 USD, de lo contrario no hay tarifa.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">más</a></string>
<string name="permission_external_storage_denied">Permiso para acceder al almacenamiento externo denegado</string>
<string name="permissions_denied">Permisos denegados</string>
<string name="paypal_summary">PayPal.me es una forma fácil de donar dinero. En caso de que solo tenga vinculado una tarjeta débito o crédito, la tarifa en los EE.UU. Es del 2.9% de la donación más $ 0.30 USD. De lo contrario, no hay tarifa. <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">Más </a></string>
<string name="permission_external_storage_denied">Permiso de acceso al almacenamiento externo denegado.</string>
<string name="permissions_denied">Permiso denegado.</string>
<string name="personalize">Personalizar</string>
<string name="personalize_settings_summary">Personalizar la pantalla de reproducción actual y la interfaz de usuario</string>
<string name="pick_from_local_storage">Seleccionar desde almacenamiento local</string>
<string name="plain">Plano</string>
<string name="playing_notification_description">La notificación de reproducción proporciona acciones para reproducir/pausar, etc</string>
<string name="personalize_settings_summary">Personalizar la ventana de reproducción y los controles de la interfaz</string>
<string name="pick_from_local_storage">Elegir del almacenamiento local</string>
<string name="plain">Simple</string>
<string name="playing_notification_description">La notificación de reproducción proporciona acciones para reproducir/pausar, etc.</string>
<string name="playing_notification_name">Notificación de reproducción</string>
<string name="playlist_empty_text">Lista de reproducción vacía</string>
<string name="playlist_is_empty">La lista de reproducción está vacía</string>
<string name="playlist_name_empty">Nombre de lista de reproducción</string>
<string name="playlists">Lista de reproducción</string>
<string name="playlist_name_empty">Nombre de la lista de reproducción</string>
<string name="playlists">Listas de reproducción</string>
<string name="pref_header_audio">Audio</string>
<string name="pref_header_general">General</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">Imágenes</string>
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
<string name="pref_header_playlists">Listas de reproducción</string>
<string name="pref_only_lollipop">"Solo disponible en Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Utiliza la portada del álbum que se reproduce como fondo de pantalla de bloqueo</string>
<string name="pref_summary_audio_ducking">Notificaciones, navegación, etc</string>
<string name="pref_summary_blurred_album_art">Desenfoca la portada del álbum en la pantalla de bloqueo. Puede causar problemas con aplicaciones y widgets de terceros</string>
<string name="pref_summary_carousel_effect">Efecto carrusel en la portada del álbum en pantalla</string>
<string name="pref_summary_classic_notification">Utiliza el diseño de notificación clásico</string>
<string name="pref_summary_colored_app">El color del fondo y del botón de control cambia de acuerdo con la portada del álbum en la pantalla de reproducción</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos de la aplicación en el color de énfasis. Cada vez que cambies de color, por favor activa esta opción</string>
<string name="pref_only_lollipop">"Solo disponible en Lollipop."</string>
<string name="pref_summary_album_art_on_lockscreen">Usar la portada del álbum de la canción en reproducción como fondo de la pantalla de bloqueo</string>
<string name="pref_summary_audio_ducking">Bajar el volumen cuando se reproduzca un sonido del sistema o se reciba una notificación</string>
<string name="pref_summary_blurred_album_art">Desenfocar la portada el álbum en la pantalla de bloqueo. Puede causar problemas con aplicaciones y widgets de terceros</string>
<string name="pref_summary_carousel_effect">Efecto carrusel para la portada del álbum en la ventana de reproducción. En los temas \"Tarjeta\" y \"Tarjeta Desenfocada\" no funcionará</string>
<string name="pref_summary_classic_notification">Usar el diseño de notificación clásico</string>
<string name="pref_summary_colored_app">El color del fondo y los botones de control cambian de acuerdo a la portada del álbum para la ventana de reproducción</string>
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos de la aplicación en el color de énfasis. Cada vez que cambie el color, active esta opción</string>
<string name="pref_summary_colored_navigation_bar">Colorea la barra de navegación con el color principal</string>
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la portada del \u00e1lbum"</string>
<string name="pref_summary_dominant_color">El color dominante se elegirá de la imagen del álbum o artista</string>
<string name="pref_summary_gapless_playback">"Puede causar problemas de reproducción en algunos dispositivos"</string>
<string name="pref_summary_ignore_media_store_artwork">Puede aumentar la calidad de la portada del álbum, pero a veces puede tardar en cargar. Solo actívalo si tienes problemas con portadas de baja resolución</string>
<string name="pref_summary_lock_screen">Habilitar controles en la pantalla de bloqueo para Retro music</string>
<string name="pref_summary_open_source_licences">Detalles de la licencia para software de código abierto</string>
<string name="pref_summary_round_corners">Redondea esquinas en la ventana principal, portada de álbum, etc</string>
<string name="pref_summary_tab_titles">Mostrar/ocultar títulos de las pestañas inferiores</string>
<string name="pref_summary_dominant_color">Se tomará el color dominante de la portada del álbum o imagen del artista</string>
<string name="pref_summary_gapless_playback">"Puede causar problemas de reproducción en algunos dispositivos."</string>
<string name="pref_summary_ignore_media_store_artwork">Puede aumentar la calidad de la portada del álbum, pero provoca tiempos de carga de imágenes más lentos. Solo habilite esto si tiene problemas con portadas de baja resolución</string>
<string name="pref_summary_lock_screen">Usar los controles personalizados de Retro Music en la pantalla de bloqueo</string>
<string name="pref_summary_open_source_licences">Detalles de licencia para software de código abierto</string>
<string name="pref_summary_round_corners">Redondear las esquinas de la aplicación</string>
<string name="pref_summary_tab_titles">Mostrar/Ocultar nombres de las pestañas de navegación</string>
<string name="pref_summary_toggle_full_screen">Modo inmersivo</string>
<string name="pref_summary_toggle_headset">Empezar a reproducir cuando se conecten los auriculares</string>
<string name="pref_summary_toggle_volume">Si tienes espacio en la pantalla de reproducción, activa los controles de volumen</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar portada del álbum</string>
<string name="pref_title_app_shortcuts">Accesos directos coloreados</string>
<string name="pref_title_audio_ducking">Reducir volumen al recibir notificaciones</string>
<string name="pref_summary_toggle_headset">Comenzar a reproducir inmediatamente se conecten audífonos</string>
<string name="pref_summary_toggle_shuffle">El modo aleatorio se desactivará cuando se reproduzca una nueva lista de canciones</string>
<string name="pref_summary_toggle_volume">Mostrar controles de volumen si hay suficiente espacio disponible.</string>
<string name="pref_summary_extra_controls">Añadir controles extra al mini reproductor</string>
<string name="pref_summary_genre_toggle">Mostrar/Ocultar pestaña de géneros</string>
<string name="pref_summary_home_banner">Mostrar/Ocultar banner en inicio</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar/Ocultar portada del álbum</string>
<string name="pref_title_tab_text_mode">Forma de los títulos de las pestañas</string>
<string name="pref_title_album_grid_style">Cuadricula del álbum</string>
<string name="pref_title_app_shortcuts">Accesos directos de la aplicación coloreados</string>
<string name="pref_title_artist_grid_style">Cuadricula de los artistas</string>
<string name="pref_title_audio_ducking">Reducir el volumen en pérdida de enfoque</string>
<string name="pref_title_auto_download_artist_images">Descarga automática de imágenes de artistas</string>
<string name="pref_title_blurred_album_art">Desenfocar portada del álbum</string>
<string name="pref_title_classic_notification">Diseño clásico de notificación</string>
<string name="pref_title_choose_equalizer">Elegir ecualizador</string>
<string name="pref_title_classic_notification">Diseño de notificación clásico</string>
<string name="pref_title_colored_app">Color adaptativo</string>
<string name="pref_title_colored_notification">Notificación coloreada</string>
<string name="pref_title_gapless_playback">Reproducción continua</string>
<string name="pref_title_general_theme">Tema general</string>
<string name="pref_title_gapless_playback">Reproducción sin interrupciones</string>
<string name="pref_title_general_theme">Tema de la aplicación</string>
<string name="pref_title_ignore_media_store_artwork">Ignorar las portadas de la biblioteca de medios</string>
<string name="pref_title_last_added_interval">Última lista de reproducción agregada</string>
<string name="pref_title_lock_screen">Controles a pantalla completa</string>
<string name="pref_title_last_added_interval">Intervalo de la lista \"Añadidos Recientemente\"</string>
<string name="pref_title_lock_screen">Controles en pantalla completa</string>
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
<string name="pref_title_now_playing_screen_appearance">Apariencia</string>
<string name="pref_title_now_playing_screen_appearance">Tema de la ventana de reproducción</string>
<string name="pref_title_open_source_licences">Licencias de código abierto</string>
<string name="pref_title_round_corners">Esquinas redondeadas</string>
<string name="pref_title_toggle_carousel_effect">Efecto Carrusel</string>
<string name="pref_title_round_corners">Bordes de las esquinas</string>
<string name="pref_title_toggle_carousel_effect">Efecto carrusel</string>
<string name="pref_title_toggle_dominant_color">Color dominante</string>
<string name="pref_title_toggle_full_screen">App a pantalla completa</string>
<string name="pref_title_toggle_full_screen">Aplicación en pantalla completa</string>
<string name="pref_title_toggle_tab_titles">Títulos de las pestañas</string>
<string name="pref_title_toggle_toggle_headset">Reproducción automática</string>
<string name="pref_title_toggle_toggle_headset">Reproducir automáticamente</string>
<string name="pref_title_toggle_toggle_shuffle">Modo aleatorio</string>
<string name="pref_title_toggle_volume">Controles de volumen</string>
<string name="pref_title_user_info">Información de usuario</string>
<string name="pref_title_user_info">Información del usuario</string>
<string name="pref_title_extra_controls">Controles extra</string>
<string name="pref_title_home_banner">Banner de inicio</string>
<string name="pref_title_genre_toggle">Mostrar pestaña de géneros</string>
<string name="pref_title_home_artist_grid_style">Cuadricula de los artistas en inicio</string>
<string name="pref_title_album_cover_transform">Estilo de la portada del álbum en la ventana de reproducción</string>
<string name="cascading">En cascada</string>
<string name="primary_color">Color principal</string>
<string name="primary_color_desc">Tema de color principal, blanco por defecto</string>
<string name="primary_color_desc">El color principal del tema, por defecto es gris azulado, por ahora funciona con colores oscuros</string>
<string name="purchase">Comprar</string>
<string name="purchase_summary">*Piense antes de comprar, no pida un reembolso.</string>
<string name="queue">Cola</string>
<string name="rate_app">Calificar app</string>
<string name="rate_on_google_play_summary">Deja una calificación positiva en Google Play si te gusta Retro Music</string>
<string name="rate_app">Califica la aplicación</string>
<string name="rate_on_google_play_summary">¿Te encanta la aplicación? Haznos saber en Google Play Store cómo podemos hacerla aún mejor</string>
<string name="recent_albums">Álbumes recientes</string>
<string name="recent_artists">Artistas recientes</string>
<string name="remove_action">Eliminar</string>
<string name="remove_banner_photo">Eliminar foto del banner</string>
<string name="remove_cover">Eliminar portada</string>
<string name="remove_from_blacklist">Eliminar de la lista negra</string>
<string name="remove_profile_photo">Eliminar foto de perfil</string>
<string name="remove_song_from_playlist_title">Eliminar canción de la lista de reproducción</string>
<string name="remove_song_x_from_playlist"><![CDATA[¿Eliminar la canción <b>%1$s</b> de la lista de reproducción?]]></string>
<string name="remove_songs_from_playlist_title">Eliminar canciones de la lista de reproducción</string>
<string name="remove_x_songs_from_playlist"><![CDATA[¿Eliminar <b>%1$d</b> canciones de la lista de reproducción?]]></string>
<string name="rename_playlist_title">Renombrar lista de reproducción</string>
<string name="reset_artist_image">Restablecer imagen del artista</string>
<string name="reset_artist_image">Reiniciar imagen del artista</string>
<string name="restore">Restaurar</string>
<string name="restored_previous_purchase_please_restart">Compras previas restauradas. Por favor, reinicia la aplicación para hacer uso de todas las funciones.</string>
<string name="restored_previous_purchases">Compras anteriores restauradas</string>
<string name="restored_previous_purchase_please_restart">Compra anterior restaurada. Por favor, reinicie la aplicación para hacer uso de todas las funciones.</string>
<string name="restored_previous_purchases">Compras anteriores restauradas.</string>
<string name="restoring_purchase">Restaurando compra...</string>
<string name="retro_equalizer">Ecualizador Retro</string>
<string name="retro_equalizer">Ecualizador de Reto Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Guardar como archivo</string>
<string name="saved_playlist_to">Lista de reproducción guardada a %s</string>
<string name="save_playlists_title">Guardar como archivos</string>
<string name="saved_playlist_to">Lista de reproducción guardada en %s.</string>
<string name="saving_changes">Guardando cambios</string>
<string name="scanned_files">Escaneado %1$d de %2$d archivos</string>
<string name="search_hint">Buscar en tu biblioteca ...</string>
<string name="set_artist_image">Establecer la imagen del artista</string>
<string name="scan_media">Escanear medios</string>
<string name="scanned_files">%1$d de %2$d archivos escaneados.</string>
<string name="search_hint">Buscar en tu biblioteca...</string>
<string name="select_all">Seleccionar todos</string>
<string name="select_banner_photo">Seleccionar foto del banner</string>
<string name="set_artist_image">Establecer imagen del artista</string>
<string name="shuffle">Aleatorio</string>
<string name="simple">Sencillo</string>
<string name="sleep_timer_canceled">Temporizador cancelado</string>
<string name="sleep_timer_set">La música se detendrá dentro de %d minuto(s) a partir de ahora</string>
<string name="sleep_timer_canceled">Temporizador cancelado.</string>
<string name="sleep_timer_set">Temporizador de apagado establecido para %d minutos desde ahora.</string>
<string name="social">Social</string>
<string name="song">Canción</string>
<string name="song_duration">Duración de la canción</string>
<string name="songs">Canciones</string>
<string name="sort_order">Ordenar por</string>
<string name="speech_not_supported">¡Lo siento! Tu dispositivo no admite la entrada de voz</string>
<string name="sort_order_a_z">Ascendente</string>
<string name="sort_order_album">Álbum</string>
<string name="sort_order_artist">Artista</string>
<string name="sort_order_date">Fecha</string>
<string name="sort_order_year">Año</string>
<string name="sort_order_z_a">Descendente</string>
<string name="speech_not_supported">¡Lo siento! Su dispositivo no es compatible con la entrada de voz</string>
<string name="speech_prompt">Buscar en tu biblioteca</string>
<string name="summary_user_info">Muestra tu nombre en la pantalla de inicio</string>
<string name="support_development">Apoyar el desarrollo</string>
<string name="summary_user_info">Solo mostrar tu nombre en la pantalla de inicio</string>
<string name="support_development">Apoya el desarrollo</string>
<string name="synced_lyrics">Letras sincronizadas</string>
<string name="system_equalizer">Ecualizador del sistema</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Únete al grupo de Telegram para discutir los errores, hacer sugerencias, presumir y más</string>
<string name="thank_you">¡Gracias!</string>
<string name="the_audio_file">El archivo de audio</string>
<string name="this_month">Este mes</string>
<string name="this_week">Esta semana</string>
<string name="this_year">Este año</string>
<string name="tiny">Pequeño</string>
<string name="title_dashboard">Interfaz</string>
<string name="title_good_afternoon">¡Buenas tardes!</string>
<string name="title_good_day">¡Buen día!</string>
<string name="title_good_evening">¡Buenas noches!</string>
<string name="title_good_morning">¡Buenos días!</string>
<string name="title_good_night">¡Buenas noches!</string>
<string name="title_user_info">¿Cuál es tu nombre?</string>
<string name="title_dashboard">Tablero</string>
<string name="title_good_afternoon">Buenas tardes</string>
<string name="title_good_day">Buen día</string>
<string name="title_good_evening">Buenas tardes</string>
<string name="title_good_morning">Buenos días</string>
<string name="title_good_night">Buenas noches</string>
<string name="title_user_info">¿Cómo te llamas?</string>
<string name="today">Hoy</string>
<string name="top_albums">Álbumes más reproducidos</string>
<string name="top_albums">Álbumes mas reproducidos</string>
<string name="top_artists">Artistas más reproducidos</string>
<string name="track_hint">"Desde el número de serie en el álbum"</string>
<string name="track_hint">"Pista (2 para pista 2 o 3004 para CD3 pista 4)"</string>
<string name="track_list">Número de pista</string>
<string name="translate">Traducir</string>
<string name="unplayable_file">No se pudo reproducir esta canci\u00f3n</string>
<string name="translate_community">Ayúdanos a traducir la aplicación a tu lenguaje</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Comparte tu diseño con Retro Music</string>
<string name="unplayable_file">No se pudo reproducir esta canci\u00f3n.</string>
<string name="up_next">A continuación</string>
<string name="update_image">Actualizar imagen</string>
<string name="updating">Actualizando...</string>
<string name="version">Versión</string>
<string name="web_search">Buscar en Internet</string>
<string name="what_do_you_want_to_share">¿Qué es lo que deseas compartir?</string>
<string name="virtualizer">Virtualizador</string>
<string name="web_search">Búsqueda web</string>
<string name="what_do_you_want_to_share">¿Qué quieres compartir?</string>
<string name="window">Ventana</string>
<string name="x_has_been_set_as_ringtone">Establecer %1$s como tu tono de llamada</string>
<string name="x_selected">%1$d seleccionado</string>
<string name="x_has_been_set_as_ringtone">%1$s establecido como tono de llamada.</string>
<string name="x_selected">%1$d seleccionados</string>
<string name="year">Año</string>
<string name="made_with_love">Hecho con ❤️ en India</string>
<string name="clear_app_data">Borrar datos de la aplicación</string>
<string name="bug_report_summary">Ocurrió un error inesperado. Lamento que hayas encontrado este error, si sigue fallando \"Borra los datos de la aplicación\"</string>
<string name="error">Error</string>
<string name="base_color_theme">Color base del tema</string>
<string name="now_playing_themes">Más de 9 temas para la ventana de reproducción</string>
<string name="carousal_effect_on_now_playing_screen">Efecto carrusel en la ventana de reproducción</string>
<string name="window_corner_edges">Esquinas redondeadas</string>
<string name="pref_title_album_cover_style">Tema de la portada del álbum</string>
<string name="circular">Circular</string>
<string name="carousal">Carrusel</string>
<string name="now_playing_summary">Personalizar la ventana de reproducción</string>
<string name="full_card">Tarjeta completa</string>
<string name="profile">Perfil</string>
<string name="bio">Biografía</string>
<string name="auto">Automático</string>
<string name="labeled">Etiquetado</string>
<string name="unlabeled">Sin etiqueta</string>
<string name="selected">Seleccionado</string>
</resources>

View File

@ -1,117 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Couleur d\'accentuation</string>
<string name="accent_color_desc">La couleur d\'accentuation du thème, vert par défaut.</string>
<string name="accent_color_desc">La couleur d\'accentuation du thème, verte par défaut</string>
<string name="action_about">À propos</string>
<string name="action_add_to_favorites">Ajouter aux favoris</string>
<string name="action_add_to_playing_queue">Ajouter à la file d\'attente</string>
<string name="action_add_to_playlist">Ajouter à la liste de lecture...</string>
<string name="action_add_to_playlist">Ajouter à la playlist…</string>
<string name="action_clear_playing_queue">Vider la file d\'attente</string>
<string name="action_clear_playlist">Effacer la liste</string>
<string name="action_clear_playlist">Vider la playlist</string>
<string name="action_delete">Supprimer</string>
<string name="action_delete_from_device">Supprimer de l\'appareil</string>
<string name="action_details">Détails</string>
<string name="action_go_to_album">Aller à l\'album</string>
<string name="action_go_to_artist">Aller à l\'artiste</string>
<string name="action_go_to_start_directory">Aller au répertoire d\'origine</string>
<string name="action_grant">Autoriser</string>
<string name="action_go_to_genre">Aller au genre</string>
<string name="action_go_to_start_directory">Aller au dossier de départ</string>
<string name="action_grant">Subvention</string>
<string name="action_grid_size">Taille de la grille</string>
<string name="action_grid_size_land">Taille de la grille (paysage)</string>
<string name="action_next">Suivant</string>
<string name="action_play">Lecture</string>
<string name="action_play_next">Ajouter à la liste d\'attente</string>
<string name="action_play_pause">Lecture/Pause</string>
<string name="action_play_next">Lire après</string>
<string name="action_play_pause">Lecture / Pause</string>
<string name="action_previous">Précédent</string>
<string name="action_remove_from_favorites">Retirer des favoris</string>
<string name="action_remove_from_playing_queue">Retirer de la file d\'attente</string>
<string name="action_remove_from_playlist">Retirer de la playlist</string>
<string name="action_remove_from_favorites">Supprimer des favoris</string>
<string name="action_remove_from_playing_queue">Supprimer de la file d\'attente</string>
<string name="action_remove_from_playlist">Supprimer de la liste de lecture</string>
<string name="action_rename">Renommer</string>
<string name="action_save_playing_queue">Sauvegarder la file d\'attente de lecture</string>
<string name="action_scan">Scanner</string>
<string name="action_save_playing_queue">Enregistrer la file d\'attente</string>
<string name="action_scan">Actualiser</string>
<string name="action_scan_directory">Scanner le dossier</string>
<string name="action_search">Rechercher</string>
<string name="action_set">finir</string>
<string name="action_set_as_ringtone">Définir comme sonnerie</string>
<string name="action_set_as_start_directory">Définir comme répertoire d\'origine</string>
<string name="action_set">marrer</string>
<string name="action_set_as_ringtone">Définir en tant que sonnerie</string>
<string name="action_set_as_start_directory">Définir comme dossier de départ</string>
<string name="action_settings">"Paramètres"</string>
<string name="action_share">Partager</string>
<string name="action_shuffle_all">Tout en aléatoire</string>
<string name="action_shuffle_playlist">Playlist en aléatoire</string>
<string name="action_shuffle_all">Tout aléatoire</string>
<string name="action_shuffle_playlist">Liste de lecture aléatoire</string>
<string name="action_sleep_timer">Minuteur de sommeil</string>
<string name="action_sort_order">Ordre de tri</string>
<string name="action_tag_editor">Éditeur de tag</string>
<string name="adaptive">Adaptatif</string>
<string name="add_action">Ajouter</string>
<string name="add_photo">Ajouter une photo</string>
<string name="add_playlist_title">"Ajouter à la playlist"</string>
<string name="added_title_to_playing_queue">"1 morceau ajouté à la file d'attente."</string>
<string name="added_x_titles_to_playing_queue">%1$d morceaux ajoutés à la file d\'attente.</string>
<string name="add_photo">Ajouter\nune photo</string>
<string name="add_playlist_title">"Ajouter à la liste de lecture"</string>
<string name="added_title_to_playing_queue">"1 musique à été ajoutée à la file d'attente."</string>
<string name="added_x_titles_to_playing_queue">%1$d titres ont été ajoutés à la file d\'attente.</string>
<string name="album">Album</string>
<string name="album_artist">Artiste de l\'album</string>
<string name="album_or_artist_empty">Le titre ou l\'artiste est vide.</string>
<string name="albums">Albums</string>
<!-- Android Auto -->
<string name="always">Toujours</string>
<string name="app_share">Hey, jetez un œil à ce super lecteur de musique sur : https://play.google.com/store/apps/details?id=%s</string>
<string name="app_shortcut_last_added_long">\@string/last_added</string>
<string name="app_shortcut_last_added_short">\@string/last_added</string>
<string name="app_share">Hey, jetez un coup d\'œil à ce super lecteur de musique : https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_shuffle_all_long">\@string/action_shuffle_all</string>
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Aléatoire</string>
<string name="app_shortcut_top_tracks_long">\@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Plus écoutés</string>
<string name="app_widget_big_name">Retro music - Gros</string>
<string name="app_widget_card_name">Retro music - Carte</string>
<string name="app_widget_classic_name">Retro music - Classique</string>
<string name="app_widget_small_name">Retro music - Petit</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Pistes préférées</string>
<string name="app_widget_big_name">Retro Music Grand</string>
<string name="app_widget_card_name">Retro Music Carte</string>
<string name="app_widget_classic_name">Retro Music Classique</string>
<string name="app_widget_small_name">Retro Music Petit</string>
<string name="artist">Artiste</string>
<string name="artists">Artistes</string>
<string name="audio_focus_denied">Priorité audio refusée.</string>
<string name="audio_focus_denied">Focus audio refusé.</string>
<string name="audio_settings_summary">Changer les paramètres audio et ajuster l\'égaliseur</string>
<string name="bass_boost">Renforcement des basses</string>
<string name="biography">Biographie</string>
<string name="black_theme_name">Juste noir</string>
<string name="blacklist">Liste noire</string>
<string name="blur">Flou</string>
<string name="blur_card">Carte Floue</string>
<string name="buy_retro_music_pro">Acheter RetroMusic Pro</string>
<string name="cancel_current_timer">Annuler le minuteur en cours</string>
<string name="blur_card">Carte floue</string>
<string name="pref_keep_screen_on_title">Garder l\'écran allumé</string>
<string name="pref_keep_screen_on_summary">Veuillez garder en tête que l\'activation de cette fonctionnalité peut réduire la durée de vie de la batterie</string>
<string name="pref_blur_amount_title">Quantité de flou</string>
<string name="pref_blur_amount_summary">Quantité de flou appliqué aux thèmes flous, bas est plus rapide</string>
<string name="cancel_current_timer">Annuler</string>
<string name="card">Carte</string>
<string name="card_color_style">Cartes colorées</string>
<string name="card_circular_style">Circulaire</string>
<string name="image">Image</string>
<string name="card_style">Carte</string>
<string name="cast">Caster</string>
<string name="changelog">Liste des changements</string>
<string name="changelog_summary">Changelog conservé sur l\'application Telegram</string>
<string name="changelog_summary">Liste des changements maintenu sur la canal Telegram</string>
<string name="clear_action">Effacer</string>
<string name="clear_blacklist">Nettoyer la liste noire</string>
<string name="clear_playlist_title">Vider la playlist</string>
<string name="clear_playlist_x"><![CDATA[Vider la playlist <b>%1$s</b>? Ceci est irr\u00e9versible !]]></string>
<string name="clear_blacklist">Effacer la liste noire</string>
<string name="clear_playlist_title">Effacer la liste de lecture</string>
<string name="clear_playlist_x"><![CDATA[Effacer la liste <b>%1$s</b> ? Cette action ne pourra pas \u00eatre annul\u00e9e !]]></string>
<string name="close_notification">Fermer</string>
<string name="color">Couleur</string>
<string name="color_theme_name">Couleur</string>
<string name="colors">Couleurs</string>
<string name="could_not_create_playlist">Impossible de cr\u00e9er la playlist</string>
<string name="could_not_download_album_cover">"Impossible de t\u00e9l\u00e9charger une pochette d'album correspondante."</string>
<string name="could_not_restore_purchase">Impossible de restaurer l\'achat.</string>
<string name="could_not_scan_files">%d fichiers n\'ont pas pu être scannés.</string>
<string name="could_not_create_playlist">La liste de lecture n\'a pas pu \u00eatre cr\u00e9\u00e9e.</string>
<string name="could_not_download_album_cover">"Impossible de t\u00e9l\u00e9charger une image d'album qui corresponde."</string>
<string name="could_not_restore_purchase">Les achats n\'ont pas pu être restaurés.</string>
<string name="could_not_scan_files">Les fichiers %d n\'ont pas pu être scanné.</string>
<string name="create_action">Créer</string>
<string name="created_playlist_x">Playlist %1$s créée</string>
<string name="currently_listening_to_x_by_x">Vous écoutez %1$s par %2$s.</string>
<string name="created_playlist_x">Liste de lecture %1$s créée.</string>
<string name="credit_title">Membres et contributeurs</string>
<string name="currently_listening_to_x_by_x">Vous écoutez actuellement %1$s par %2$s.</string>
<string name="dark_theme_name">Plutôt Sombre</string>
<string name="default_hint">Pas de paroles</string>
<string name="delete_playlist_title">Supprimer la playlist</string>
<string name="delete_playlist_x"><![CDATA[Supprimer la playlist <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Supprimer les playlists</string>
<string name="delete_song_x"><![CDATA[Supprimer le morceau <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Supprimer <b>%1$d</b> playlists?]]></string>
<string name="delete_x_songs"><![CDATA[Supprimer <b>%1$d</b> morceaux?]]></string>
<string name="deleted_x_songs">%1$d morceaux supprimés.</string>
<string name="do_you_want_to_clear_the_blacklist">Voulez-vous effacer la liste noire ?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Voulez-vous retirer <b>%1$s</b> de la liste noire ?]]></string>
<string name="default_hint">Pas de Paroles.</string>
<string name="delete_playlist_title">Supprimer la liste de lecture</string>
<string name="delete_playlist_x"><![CDATA[Supprimer la liste <b>%1$s</b> ?]]></string>
<string name="delete_playlists_title">Supprimer les listes de lecture</string>
<string name="delete_song_x"><![CDATA[Supprimer le morceau <b>%1$s</b> ?]]></string>
<string name="delete_x_playlists"><![CDATA[Supprimer les listes <b>%1$d</b> ?]]></string>
<string name="delete_x_songs"><![CDATA[Supprimer les morceaux <b>%1$d</b> ?]]></string>
<string name="deleted_x_songs">%1$d à été supprimé.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Rejoignez le serveur Discord pour rester au courant des dernières nouveautés</string>
<string name="do_you_want_to_clear_the_blacklist">Voulez vous vraiment vider la liste noire ?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Voulez vous vraiment retirer <b>%1$s</b> de la liste noire ?]]></string>
<string name="donate">Faire un don</string>
<string name="donate_summary">Si vous pensez que je mérite d\'être payé pour mon travail, vous pouvez me donner quelques dollars ici.</string>
<string name="donation_header">Achetez-moi</string>
<string name="download_from_last_fm">Télécharger à partir de Last.fm</string>
<string name="donate_summary">Si vous pensez que je mérite d\'être payé pour mon travail, vous pouvez me donner quelques dollars ici</string>
<string name="donation_header">Achetez moi :</string>
<string name="download_from_last_fm">Télécharger via Last.fm</string>
<string name="edit_cover">Modifier la couverture</string>
<string name="empty">Vide</string>
<string name="equalizer">Égaliseur</string>
<string name="faq">FAQ</string>
<string name="favorites">Favoris</string>
<string name="flat">Plat</string>
<string name="folders">Dossiers</string>
<string name="for_you">Pour vous</string>
<string name="full">Plein</string>
<string name="general_settings_summary">Changer le thème et les couleurs de l\'application</string>
<string name="general_settings_title">Apparence</string>
<string name="genre">Genre</string>
<string name="genres">Genres</string>
<string name="git_hub_summary">Cloner le projet sur GitHub</string>
<string name="google_plus_community">Rejoignez la communauté Google Plus, où vous pouvez demander de l\'aide ou suivre les mises à jour de Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
@ -122,176 +146,246 @@
<string name="grid_size_8">8</string>
<string name="history">Historique</string>
<string name="home">Accueil</string>
<string name="inserted_x_songs_into_playlist_x">%1$d morceaux ajoutés à la playlist %2$d.</string>
<string name="image_settings_summary">Changer les paramètres de téléchargement des photos d\'artistes</string>
<string name="inserted_x_songs_into_playlist_x">%1$d morceaux ont été inséré dans la liste %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Partager votre configuration de Retro Music pour la montrer sur Instagram</string>
<string name="label_bit_rate">Débit</string>
<string name="label_file_format">Format</string>
<string name="label_file_name">Nom du fichier</string>
<string name="label_file_path">Chemin du fichier</string>
<string name="label_file_path">Chemin de fichier</string>
<string name="label_file_size">Taille</string>
<string name="label_sampling_rate">Échantillonnage</string>
<string name="label_track_length">Durée</string>
<string name="last_added">Derniers ajouts</string>
<string name="lets_play_something">Jouons quelque-chose</string>
<string name="library">Librairie</string>
<string name="label_sampling_rate">Taux déchantillonnage</string>
<string name="label_track_length">Longueur</string>
<string name="last_added">dernier ajout</string>
<string name="lets_play_something">Jouons un peu de musique</string>
<string name="library">Bibliothèque</string>
<string name="licenses">Licences</string>
<string name="light_theme_name">Nettement blanc</string>
<string name="listing_files">Liste les fichiers</string>
<string name="loading_products">Chargement des produits...</string>
<string name="light_theme_name">Clairement blanc</string>
<string name="listing_files">Listage des fichiers</string>
<string name="loading_products">Chargement des produits</string>
<string name="lyrics">Paroles</string>
<string name="my_name">Mon Nom</string>
<string name="my_top_tracks">Les plus écoutés</string>
<string name="never">Jamais</string>
<string name="new_playlist_title">Nouvelle liste</string>
<string name="new_start_directory">%s est le nouveau répertoire de départ.</string>
<string name="no_albums">Aucun album</string>
<string name="no_artists">Aucun artiste</string>
<string name="no_audio_ID">"Lisez un morceaux d'abord, puis réessayez"</string>
<string name="material">Material</string>
<string name="my_name">Mon nom</string>
<string name="my_top_tracks">Plus jouées</string>
<string name="never">jamais</string>
<string name="new_banner_photo">Nouvelle bannière photo</string>
<string name="new_playlist_title">Nouvelle liste de lecture</string>
<string name="new_profile_photo">Nouvelle photo de profil</string>
<string name="new_start_directory">%s est le nouveau dossier de départ.</string>
<string name="no_albums">Pas d\'albums</string>
<string name="no_artists">Pas d\'artistes</string>
<string name="no_audio_ID">"Lancez d'abord un morceau, puis réessayez."</string>
<string name="no_equalizer">Aucun égaliseur trouvé</string>
<string name="no_genres">Aucun genre</string>
<string name="no_lyrics_found">Aucunes paroles trouvées</string>
<string name="no_lyrics_found">Aucune parole trouvée</string>
<string name="no_playlists">Aucune liste de lecture</string>
<string name="no_purchase_found">Achat non trouvé.</string>
<string name="no_purchase_found">Aucun achat trouvé</string>
<string name="no_results">Aucun résultat</string>
<string name="no_songs">Aucun morceau</string>
<string name="normal">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> n\'est pas dans le stockage multimédia.]]></string>
<string name="normal_lyrics">Paroles normales</string>
<string name="normal_style">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> n\'est pas repertorié dans le stockage média.]]></string>
<string name="nothing_to_scan">Rien à scanner.</string>
<string name="notification">Notification</string>
<string name="now_playing">À l\'écoute</string>
<string name="now_playing_queue">Lecture de la file d\'attente</string>
<string name="only_on_wifi">En Wi-Fi seulement</string>
<string name="notification_settings_summary">Personnaliser le style de notification</string>
<string name="now_playing">Lecture en cours</string>
<string name="now_playing_queue">File d\'attente</string>
<string name="only_on_wifi">Uniquement via Wi-Fi</string>
<string name="others">Autre</string>
<string name="past_three_months">3 derniers mois</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me est un moyen facile et pratique pour nous faire des dons. Au cas où vous avez seulement lié une carte de crédit, les frais aux Etats-Unis sont de 2.9% du don plus 0.30 $ Américains (USD), autrement il n\'y à pas de frais.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">Plus</a></string>
<string name="permission_external_storage_denied">Autorisation d\'accès au stockage externe refusée.</string>
<string name="permissions_denied">Autorisations refusées.</string>
<string name="personalize">Interface</string>
<string name="pick_from_local_storage">Choisir à partir de mes fichiers</string>
<string name="plain">Épuré</string>
<string name="playing_notification_description">La notification de lecture vous donne accès à des actions comme lecture/pause etc.</string>
<string name="playing_notification_name">Notification de lecture</string>
<string name="paypal_summary">PayPal.me est un moyen facile de nous faire un don. Si vous avez uniquement lié une carte de débit ou une carte de crédit dans les USA, les frais s\'élèveront 2,9 % du montant plus 0,30 $, dans tous les autres cas aucun frais ne s\'appliquera. <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">Plus d\'informations.</a></string>
<string name="permission_external_storage_denied">La permission pour accéder au stockage externe a été refusée.</string>
<string name="permissions_denied">Permission refusée.</string>
<string name="personalize">Personnaliser</string>
<string name="personalize_settings_summary">Personnalisez le lecteur et l\'interface</string>
<string name="pick_from_local_storage">Sélectionner depuis le stockage</string>
<string name="plain">Simple</string>
<string name="playing_notification_description">La notification de lecture fournit des actions pour la lecture / pause etc.</string>
<string name="playing_notification_name">Lecture de la notification</string>
<string name="playlist_empty_text">Liste de lecture vide</string>
<string name="playlist_is_empty">La liste de lecture est vide</string>
<string name="playlist_name_empty">Nom de la liste</string>
<string name="playlists">Listes</string>
<string name="playlist_is_empty">Cette liste de lecture est vide</string>
<string name="playlist_name_empty">Nom de la liste de lecture</string>
<string name="playlists">Listes de lecture</string>
<string name="pref_header_audio">Audio</string>
<string name="pref_header_general">Général</string>
<string name="pref_header_general">Thème</string>
<string name="pref_header_images">Images</string>
<string name="pref_header_lockscreen">Écran de verrouillage</string>
<string name="pref_header_playlists">Listes de lecture</string>
<string name="pref_only_lollipop">"Disponible sur Lollipop uniquement."</string>
<string name="pref_summary_album_art_on_lockscreen">Utilise la pochette d\'album comme fond d\'écran de verrouillage.</string>
<string name="pref_summary_audio_ducking">Notifications, navigation, etc...</string>
<string name="pref_summary_blurred_album_art">Applique un effet de flou sur l\'écran de verrouillage. Peut causer des problèmes avec les applications tierces et les widgets.</string>
<string name="pref_summary_carousel_effect">Effet de carrousel sur les images d\'album dans l\'écran de lecture. Noter que ça ne marchera pas avec les thèmes Carte et Carte Floue</string>
<string name="pref_summary_classic_notification">Utiliser le design de notification Classique.</string>
<string name="pref_summary_colored_app">En fond, adapte la couleur des contrôles en fonction de l\'image de l\'album sur l\'écran de lecture</string>
<string name="pref_summary_colored_app_shortcuts">Colorise les raccourcis de l\'application avec la couleur d\'accentuation. Chaque fois que vous changez la couleur, veuillez basculer ceci pour que le changement prenne effet.</string>
<string name="pref_summary_colored_navigation_bar">Colorise la barre de navigation avec la couleur primaire.</string>
<string name="pref_summary_colored_notification">"Colorise la notification avec la couleur vive de la pochette."</string>
<string name="pref_summary_dominant_color">Utiliser la couleur dominante de l\'image d\'album ou d\'artiste.</string>
<string name="pref_only_lollipop">"Seulement disponible sur Lollipop."</string>
<string name="pref_summary_album_art_on_lockscreen">Utiliser la couverture d\'album de la piste en cours de lecture comme fond sur l\'écran de verrouillage</string>
<string name="pref_summary_audio_ducking">Baisser le volume quand un son système ou une notification est reçue</string>
<string name="pref_summary_blurred_album_art">Flouter la couverture de l\'album sur l\'écran de verrouillage. Cela peut poser des problèmes avec des applications et widgets tiers.</string>
<string name="pref_summary_carousel_effect">Effet carousel pour les couvertures d\'albums sur l\'écran de lecture en cours. Veuillez noter que les thèmes Carte et Carte floutée ne fonctionneront pas</string>
<string name="pref_summary_classic_notification">Utiliser le design classique pour les notifications</string>
<string name="pref_summary_colored_app">La couleur du fond et des boutons de contrôles change en fonction de l\'image d\'album sur l\'écran de lecture en cours</string>
<string name="pref_summary_colored_app_shortcuts">Les raccourcis rapides de l\'application prendront la couleur d\'accent. Chaque fois que vous changez de couleur, veuillez activer ceci afin que le changement soit pris en compte</string>
<string name="pref_summary_colored_navigation_bar">Colorer la barre de navigation avec la couleur primaire</string>
<string name="pref_summary_colored_notification">"Colorer la notification avec la couleur dominante des couvertures d'albums"</string>
<string name="pref_summary_dominant_color">La couleur dominante sera choisie depuis la couverture de l\'album ou de l\'artiste</string>
<string name="pref_summary_gapless_playback">"Peut causer des problèmes de lecture sur certains appareils."</string>
<string name="pref_summary_ignore_media_store_artwork">Peut améliorer la qualité de la pochette d\'album mais peut aussi ralentir le temps de chargement de l\'image. N\'activez ceci qu\'en cas de faible résolution de la pochette.</string>
<string name="pref_summary_lock_screen">Montrer l\'écran de verrouillage pour contrôler Retro Music</string>
<string name="pref_summary_open_source_licences">Détails de la licence pour les logiciels open-source</string>
<string name="pref_summary_round_corners">Coins arrondis pour les fenêtres, pochettes d\'album, etc...</string>
<string name="pref_summary_tab_titles">Activer / désactiver les titres des onglets du bas</string>
<string name="pref_summary_ignore_media_store_artwork">Peut améliorer la qualité de l\'image d\'album, mais ralenti le chargement des images. N\'activez ceci que si vous avez des problèmes avec les images basse résolution</string>
<string name="pref_summary_lock_screen">Utiliser les contrôles personnalisés de Retro Music sur l\'écran de verrouillage</string>
<string name="pref_summary_open_source_licences">Détails des licences pour les logiciels open source</string>
<string name="pref_summary_round_corners">Coins arrondis pour les bords de l\'application</string>
<string name="pref_summary_tab_titles">Activer/désactiver les titres des onglets du bas</string>
<string name="pref_summary_toggle_full_screen">Mode immersif</string>
<string name="pref_summary_toggle_headset">Lance la lecture immédiatement quand un casque est branché</string>
<string name="pref_summary_toggle_volume">S\'il y a de l\'espace dans l\'écran \"en cours de lecture\", activer le contôle du volume</string>
<string name="pref_title_album_art_on_lockscreen">Afficher la pochette d\'album</string>
<string name="pref_summary_toggle_headset">Commencer immédiatement la lecture lors du branchement d\'un casque</string>
<string name="pref_summary_toggle_shuffle">Le mode aléatoire se désactivera lors de la lecture d\'une nouvelle liste de morceaux</string>
<string name="pref_summary_toggle_volume">Si vous avez assez de place, affiche les contrôle du volume sur l\'écran de lecture</string>
<string name="pref_summary_extra_controls">Ajouter des contrôles supplémentaires pour le mini lecteur</string>
<string name="pref_summary_genre_toggle">Activer/désactiver l\'onglet Genres</string>
<string name="pref_summary_home_banner">Changer le style de la bannière sur l\'accueil</string>
<string name="pref_title_album_art_on_lockscreen">Afficher la couverture de l\'album</string>
<string name="pref_title_album_grid_style">Grille d\'albums</string>
<string name="pref_title_app_shortcuts">Raccourcis d\'application colorés</string>
<string name="pref_title_audio_ducking">Réduire le volume si le focus est perdu</string>
<string name="pref_title_auto_download_artist_images">Télécharger les photos d\'artiste automatiquement</string>
<string name="pref_title_blurred_album_art">Effet flou sur la pochette</string>
<string name="pref_title_classic_notification">Design classique de la notification</string>
<string name="pref_title_artist_grid_style">Grille d\'artistes</string>
<string name="pref_title_audio_ducking">Réduire le volume à la perte de focus</string>
<string name="pref_title_auto_download_artist_images">Télécharger automatiquement les photos des artistes</string>
<string name="pref_title_blurred_album_art">Flouter la couverture d\'album</string>
<string name="pref_title_choose_equalizer">Choisir l\'égalisateur</string>
<string name="pref_title_classic_notification">Design de notification classique</string>
<string name="pref_title_colored_app">Couleur adaptative</string>
<string name="pref_title_colored_notification">Notification colorée</string>
<string name="pref_title_gapless_playback">Suppression des silences</string>
<string name="pref_title_general_theme">Thème général</string>
<string name="pref_title_ignore_media_store_artwork">Ignorer les pochettes du stockage multimédia</string>
<string name="pref_title_last_added_interval">Dernière intervalle de playlist ajouté</string>
<string name="pref_title_lock_screen">Contrôles plein écran</string>
<string name="pref_title_gapless_playback">Lecture sans blanc</string>
<string name="pref_title_general_theme">Thème de l\'application</string>
<string name="pref_title_ignore_media_store_artwork">Ignorer les couvertures du stockage média</string>
<string name="pref_title_last_added_interval">Intervalle de dernière liste de lecture ajoutée</string>
<string name="pref_title_lock_screen">Contrôles plein-écran</string>
<string name="pref_title_navigation_bar">Barre de navigation colorée</string>
<string name="pref_title_now_playing_screen_appearance">Apparence</string>
<string name="pref_title_open_source_licences">Licences Open Source</string>
<string name="pref_title_round_corners">Coins arrondis</string>
<string name="pref_title_toggle_carousel_effect">Effet de caroussel</string>
<string name="pref_title_now_playing_screen_appearance">Thème d\'écran de lecture</string>
<string name="pref_title_open_source_licences">Licences open source</string>
<string name="pref_title_round_corners">Angles arrondis</string>
<string name="pref_title_toggle_carousel_effect">Effet carousel</string>
<string name="pref_title_toggle_dominant_color">Couleur dominante</string>
<string name="pref_title_toggle_full_screen">Application plein écran</string>
<string name="pref_title_toggle_tab_titles">Titres des onglets</string>
<string name="pref_title_toggle_full_screen">App en plein écran</string>
<string name="pref_title_toggle_tab_titles">Titres onglets</string>
<string name="pref_title_toggle_toggle_headset">Lecture automatique</string>
<string name="pref_title_toggle_volume">Contrôle du volume</string>
<string name="pref_title_user_info">Information de l\'utilisateur</string>
<string name="pref_title_toggle_toggle_shuffle">Mode aléatoire</string>
<string name="pref_title_toggle_volume">Contrôles de volume</string>
<string name="pref_title_user_info">Informations utilisateur</string>
<string name="pref_title_extra_controls">Contrôles supplémentaires</string>
<string name="pref_title_home_banner">Bannière d\'accueil</string>
<string name="pref_title_genre_toggle">Montrer l\'onglet Genres</string>
<string name="pref_title_home_artist_grid_style">Disposition de la grille d\'artistes sur l\'accueil</string>
<string name="pref_title_album_cover_transform">Style de l\'image d\'album sur l\'écran de lecture</string>
<string name="cascading">En cascade</string>
<string name="primary_color">Couleur primaire</string>
<string name="primary_color_desc">La couleur primaire du thème, bleu-gris par défaut, maintenant avec des couleurs sombres</string>
<string name="primary_color_desc">La couleur de thème primaire, par défaut bleu-gris, fonctionne maintenant avec les couleurs sombres</string>
<string name="purchase">Acheter</string>
<string name="purchase_summary">* Veuillez bien réfléchir avant d\'acheter ! Ne demandez pas de remboursement.</string>
<string name="queue">File d\'attente</string>
<string name="rate_app">Noter l\'application</string>
<string name="rate_on_google_play_summary">Vous adorez cette appli ? Faisez le savoir en nous laissant un avis sur le Play Store pour nous permettre d\'améliorer votre expérience</string>
<string name="rate_on_google_play_summary">Vous aimez l\'application ? Faites-le nous savoir sur le Play Store afin que nous puissions l\'améliorer davantage</string>
<string name="recent_albums">Albums récents</string>
<string name="recent_artists">Artists récents</string>
<string name="remove_action">Retirer</string>
<string name="remove_cover">Retirer la pochette</string>
<string name="remove_from_blacklist">Supprimer de la liste noire</string>
<string name="remove_song_from_playlist_title">Retirer le morceau de la liste de lecture</string>
<string name="remove_song_x_from_playlist"><![CDATA[Retirer le morceau <b>%1$s</b> de la playlist?]]></string>
<string name="remove_songs_from_playlist_title">Retirer les morceaux de la playlist</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Retirer <b>%1$d</b> morceaux de la liste de lecture?]]></string>
<string name="rename_playlist_title">Renommer la playlist</string>
<string name="recent_artists">Artistes récents</string>
<string name="remove_action">Supprimer</string>
<string name="remove_banner_photo">Retirer la bannière photo</string>
<string name="remove_cover">Supprimer la couverture</string>
<string name="remove_from_blacklist">Retirer de la liste noire</string>
<string name="remove_profile_photo">Supprimer la photo de profil</string>
<string name="remove_song_from_playlist_title">Supprimer le morceau de la liste de lecture</string>
<string name="remove_song_x_from_playlist"><![CDATA[Retirer le morceau <b>%1$s</b> de la liste de lecture ?]]></string>
<string name="remove_songs_from_playlist_title">Retirer le morceau de la liste de lecture</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Retirer <b>%1$d</b> morceaux de la liste de lecture ?]]></string>
<string name="rename_playlist_title">Renommer la liste de lecture</string>
<string name="reset_artist_image">Réinitialiser la photo de l\'artiste</string>
<string name="restore">Restaurer</string>
<string name="restored_previous_purchase_please_restart">Les achats précédent ont été restaurés. Merci de redémarrer l\'appli pour pouvoir utiliser toutes ses fonctionnalités.</string>
<string name="restored_previous_purchases">Restaurer les achats précédents.</string>
<string name="restoring_purchase">Restauration des achats...</string>
<string name="retro_equalizer">Égaliseur Retro</string>
<string name="restored_previous_purchase_please_restart">Achat précédent restauré. Veuillez redémarrer l\'application pour utiliser toutes les fonctionnalités.</string>
<string name="restored_previous_purchases">Achats précédents restaurés.</string>
<string name="restoring_purchase">Restauration de l\'achat…</string>
<string name="retro_equalizer">Égaliseur Retro Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Enregistrer comme fichier</string>
<string name="saved_playlist_to">Liste de lecture enregistrée dans %s.</string>
<string name="save_playlist_title">Enregistrer en tant que fichier</string>
<string name="save_playlists_title">Enregistrer en tant que fichiers</string>
<string name="saved_playlist_to">Liste de lecture enregistrée vers %s</string>
<string name="saving_changes">Enregistrement des changements</string>
<string name="scanned_files">Fichier %1$d sur %2$d scanné.</string>
<string name="search_hint">Recherchez dans votre bibliothèque...</string>
<string name="set_artist_image">Définir l\'image de l\'artiste</string>
<string name="scan_media">Scanner le média</string>
<string name="scanned_files">Fichier %1$d sur %2$d scanné</string>
<string name="search_hint">Recherche dans votre bibliothèque…</string>
<string name="select_all">Tout sélectionner</string>
<string name="select_banner_photo">Choisir la bannière photo</string>
<string name="set_artist_image">Définir photo de l\'artiste</string>
<string name="shuffle">Aléatoire</string>
<string name="simple">Simple</string>
<string name="sleep_timer_canceled">Minuteur de sommeil annulé</string>
<string name="sleep_timer_set">Le minuteur de sommeil est défini sur %d minutes à partir de maintenant.</string>
<string name="sleep_timer_canceled">Minuteur d\'extinction annulé.</string>
<string name="sleep_timer_set">Extinction dans %d minutes.</string>
<string name="social">Social</string>
<string name="song">Morceau</string>
<string name="song_duration">Durée du morceau</string>
<string name="songs">Morceaux</string>
<string name="sort_order">Trier par</string>
<string name="speech_not_supported">Désolé ! Votre appareil ne supporte pas la reconnaissance vocale</string>
<string name="speech_prompt">Chercher dans la bibliothèque</string>
<string name="summary_user_info">Juste pour montrer votre nom sur l\'écran d\'accueil</string>
<string name="support_development">Me soutenir</string>
<string name="sort_order">Ordre de classement</string>
<string name="sort_order_a_z">Ascendant</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Artiste</string>
<string name="sort_order_date">Date</string>
<string name="sort_order_year">Année</string>
<string name="sort_order_z_a">Descendant</string>
<string name="speech_not_supported">Désolé, votre appareil ne supporte pas l\'entrée vocale</string>
<string name="speech_prompt">Rechercher dans votre bibliothèque</string>
<string name="summary_user_info">N\'afficher que votre nom sur l\'écran d\'accueil</string>
<string name="support_development">Aider le développement</string>
<string name="synced_lyrics">Paroles synchronisées</string>
<string name="system_equalizer">Égalisateur système</string>
<!-- Message displayed when tag editing fails -->
<string name="thank_you">Merci!</string>
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Rejoignez le groupe Telegram pour discuter des bugs, faire des suggestions, montrer votre configuration, etc.</string>
<string name="thank_you">Merci !</string>
<string name="the_audio_file">Le fichier audio</string>
<string name="this_month">Ce mois</string>
<string name="this_week">Cette semaine</string>
<string name="this_year">Cette année</string>
<string name="tiny">Petit</string>
<string name="title_dashboard">tableau de bord</string>
<string name="tiny">petit</string>
<string name="title_dashboard">Tableau de bord</string>
<string name="title_good_afternoon">Bon après-midi</string>
<string name="title_good_day">Bonne journée 🌞</string>
<string name="title_good_evening">Bonne soirée</string>
<string name="title_good_morning">Bonjour</string>
<string name="title_good_night">Bonne nuit</string>
<string name="title_user_info">Quel est votre prénom</string>
<string name="title_good_day">Bonne journée</string>
<string name="title_good_evening">Bonsoir</string>
<string name="title_good_morning">Bonne journée</string>
<string name="title_good_night">Bonne soirée</string>
<string name="title_user_info">Quel est ton nom</string>
<string name="today">Aujourd\'hui</string>
<string name="track_hint">"Piste (ex: 2 pour piste 2, 3004 pour CD3 piste 4)"</string>
<string name="track_list">Numéro du titre</string>
<string name="translate">Traduire</string>
<string name="top_albums">Top albums</string>
<string name="top_artists">Top artistes</string>
<string name="track_hint">"Morceau (2 pour morceau 2, 3004 pour morceau 4 du CD 3)"</string>
<string name="track_list">Numéro du morceau</string>
<string name="translate">Traduction</string>
<string name="translate_community">Aidez-nous a traduire l\'application dans votre langue</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Partager votre design avec Retro Music</string>
<string name="unplayable_file">Impossible de lire ce morceau.</string>
<string name="up_next">À suivre</string>
<string name="update_image">Mettre la photo à jour.</string>
<string name="update_image">Mettre à jour l\'image</string>
<string name="updating">Mise à jour...</string>
<string name="version">Version</string>
<string name="web_search">Recherche web</string>
<string name="what_do_you_want_to_share">Que voulez-vous partager?</string>
<string name="version">version</string>
<string name="virtualizer">Virtualisateur</string>
<string name="web_search">"Recherche internet
"</string>
<string name="what_do_you_want_to_share">Que souhaitez-vous partager ?</string>
<string name="window">Fenêtre</string>
<string name="x_has_been_set_as_ringtone">Définir %1$s comme sonnerie.</string>
<string name="x_selected">%1$d sélectionné</string>
<string name="year">Année</string>
<string name="made_with_love">Fait avec ❤️ en Inde</string>
<string name="clear_app_data">Effacer les données d\'application</string>
<string name="bug_report_summary">Une erreur imprévue s\'est produite. Nous sommes désolé que vous ayez rencontré ce bug, si l\'application continue de planter, effacez les données de l\'application</string>
<string name="error">Erreur</string>
<string name="base_color_theme">Couleur de base du thème</string>
<string name="now_playing_themes">9+ thèmes d\'écran de lecture en cours</string>
<string name="carousal_effect_on_now_playing_screen">Effet carousel sur l\'écran de lecture en cours</string>
<string name="window_corner_edges">Bords arrondis</string>
<string name="pref_title_album_cover_style">Thème de la couverture d\'album</string>
<string name="circular">Circulaire</string>
<string name="carousal">Carousel</string>
<string name="now_playing_summary">Personnaliser l\'écran de lecture</string>
<string name="full_card">Carte complète</string>
<string name="profile">Profil</string>
<string name="bio">Biographie</string>
<string name="auto">Auto</string>
<string name="labeled">Étiqueté</string>
<string name="unlabeled">Non étiqueté</string>
<string name="selected">Sélectionné</string>
</resources>

View File

@ -1,46 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Prikazni sadržaj</string>
<string name="accent_color_desc">Dominantna boja teme, početno postavljena kao zelena</string>
<string name="action_about">O nama</string>
<string name="accent_color">Naglašena boja</string>
<string name="accent_color_desc">Naglašena boja teme, zadana je zelena</string>
<string name="action_about">O aplikaciji</string>
<string name="action_add_to_favorites">Dodaj u omiljene</string>
<string name="action_add_to_playing_queue">Dodaj u red čekanja</string>
<string name="action_add_to_playlist">Dodaj u listu...</string>
<string name="action_clear_playing_queue">Obriši red čekanja</string>
<string name="action_clear_playlist">Obriši listu</string>
<string name="action_add_to_playlist">Dodaj na popis naslova...</string>
<string name="action_clear_playing_queue">Očisti red čekanja</string>
<string name="action_clear_playlist">Očisti popis naslova</string>
<string name="action_delete">Izbriši</string>
<string name="action_delete_from_device">Izbriši s uređaja</string>
<string name="action_details">Detalji</string>
<string name="action_go_to_album">Odi na album</string>
<string name="action_go_to_artist">Odi na izvođača</string>
<string name="action_go_to_start_directory">Odi na početni direktorij</string>
<string name="action_go_to_artist">Idi na izvođača</string>
<string name="action_go_to_genre">Idi na žanr</string>
<string name="action_go_to_start_directory">Idi na početni direktorij</string>
<string name="action_grant">Dopusti</string>
<string name="action_grid_size">Veličina rešetke</string>
<string name="action_grid_size_land">Veličina rešetke (polja)</string>
<string name="action_next">Dalje</string>
<string name="action_play">Pusti</string>
<string name="action_play_next">Pusti sljedeće</string>
<string name="action_play_pause">Pusti/Pauziraj</string>
<string name="action_play">Reproduciraj</string>
<string name="action_play_next">Reproduciraj sljedeće</string>
<string name="action_play_pause">Reproduciraj/pauziraj</string>
<string name="action_previous">Prethodno</string>
<string name="action_remove_from_favorites">Makni iz favorita</string>
<string name="action_remove_from_playing_queue">Makni iz reda reprodukcije</string>
<string name="action_remove_from_playlist">Makni iz playliste</string>
<string name="action_remove_from_favorites">Ukloni iz favorita</string>
<string name="action_remove_from_playing_queue">Ukloni iz reda reprodukcije</string>
<string name="action_remove_from_playlist">Ukloni sa popisa naslova</string>
<string name="action_rename">Preimenuj</string>
<string name="action_save_playing_queue">Spremi red reproduciranja</string>
<string name="action_scan">Skeniraj</string>
<string name="action_scan_directory">Skeniraj direktorij</string>
<string name="action_search">Traži</string>
<string name="action_set">Postavi</string>
<string name="action_set">Započni</string>
<string name="action_set_as_ringtone">Postavi kao zvuk zvona</string>
<string name="action_set_as_start_directory">Postavi kao početni direktorij</string>
<string name="action_settings">"Postavke"</string>
<string name="action_share">Dijeli</string>
<string name="action_share">Podijeli</string>
<string name="action_shuffle_all">Izmješaj sve</string>
<string name="action_shuffle_playlist">Izmješaj playlistu</string>
<string name="action_sleep_timer">Brojač spavanja</string>
<string name="action_shuffle_playlist">Izmiješaj popis naslova</string>
<string name="action_sleep_timer">Brojač za spavanje</string>
<string name="action_sort_order">Način sortiranja</string>
<string name="action_tag_editor">Uređivač oznaka</string>
<string name="adaptive">Prilagodljivo</string>
<string name="add_action">Dodaj</string>
<string name="add_photo">Dodaj\nsliku</string>
<string name="add_playlist_title">"Dodaj na playlistu"</string>
<string name="add_playlist_title">"Dodaj na popis naslova"</string>
<string name="added_title_to_playing_queue">"Dodana 1 pjesma na red reprodukcije."</string>
<string name="added_x_titles_to_playing_queue">Dodano %1$d pjesama na red reprodukcije.</string>
<string name="album">Album</string>
@ -49,12 +53,12 @@
<string name="albums">Albumi</string>
<!-- Android Auto -->
<string name="always">Uvijek</string>
<string name="app_share">Hej vidi ovaj cool svirač glazbe: https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">Hej, pogledajte ovaj cool reproduktor glazbe: https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Mješaj</string>
<string name="app_shortcut_shuffle_all_short">Izmiješaj</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Najslušanije pjesme</string>
<string name="app_widget_big_name">Retro Music - Velik</string>
@ -63,227 +67,276 @@
<string name="app_widget_small_name">Retro Music - Malen</string>
<string name="artist">Izvođač</string>
<string name="artists">Izvođači</string>
<string name="audio_focus_denied">Fokus zvuka odbijen.</string>
<string name="audio_settings_summary">Podesi postavke zvuka i kontrole ekvilajzera</string>
<string name="audio_focus_denied">Fokus zvuka je odbijen.</string>
<string name="audio_settings_summary">Promijenite postavke zvuka i kontrole ekvalizatora</string>
<string name="bass_boost">Pojačalo Bassa</string>
<string name="biography">Biografija</string>
<string name="black_theme_name">Samo crna</string>
<string name="blacklist">Crna lista</string>
<string name="blur">Zamagljena</string>
<string name="blur_card">Zamagljena Kartica</string>
<string name="buy_retro_music_pro">Kupi Retro Music Pro</string>
<string name="cancel_current_timer">Otkaži trenutni brojač</string>
<string name="blacklist">Crni popis</string>
<string name="blur">Zamagljenje</string>
<string name="blur_card">Zamagljena kartica</string>
<string name="pref_keep_screen_on_title">Drži zaslon uključenim</string>
<string name="pref_keep_screen_on_summary">Imajte na umu da omogućavanje ove značajke može utjecati na trajanje baterije</string>
<string name="pref_blur_amount_title">Količina zamagljenja</string>
<string name="pref_blur_amount_summary">Količina zamagljenja koja se primjenjuje na teme, manje je brže</string>
<string name="cancel_current_timer">Odustani</string>
<string name="card">Kartica</string>
<string name="card_color_style">Obojena kartica</string>
<string name="card_circular_style">Kružno</string>
<string name="image">Slika</string>
<string name="card_style">Kartica</string>
<string name="cast">Emitiraj</string>
<string name="changelog">Popis promjena</string>
<string name="changelog_summary">Popis promjena održavan na Telegram-u</string>
<string name="changelog_summary">Popis promjena održavan na Telegramu</string>
<string name="clear_action">Očisti</string>
<string name="clear_blacklist">Očisti crnu listu</string>
<string name="clear_playlist_title">Očisti playlistu</string>
<string name="clear_playlist_x"><![CDATA[O\u010disti playlistu <b>%1$s</b>? Ovo nije povratna akcija!]]></string>
<string name="clear_blacklist">Očisti crnu popis</string>
<string name="clear_playlist_title">Očisti popis naslova</string>
<string name="clear_playlist_x"><![CDATA[O\u010distiti popis naslova<b>%1$s</b>? Ovo se ne mo\u017ee poni\u0161titi!]]></string>
<string name="close_notification">Zatvori</string>
<string name="color">Boja</string>
<string name="color_theme_name">Boja</string>
<string name="colors">Boje</string>
<string name="could_not_create_playlist">Stvaranje playliste nije uspjelo.</string>
<string name="could_not_download_album_cover">"Preuzimanje odgovaraju\u0107e prevlake albuma nije uspjelo."</string>
<string name="could_not_create_playlist">Stvaranje popisa naslova nije uspjelo.</string>
<string name="could_not_download_album_cover">"Preuzimanje odgovaraju\u0107eg omota albuma nije uspjelo."</string>
<string name="could_not_restore_purchase">Vraćanje kupnje nije uspjelo.</string>
<string name="could_not_scan_files">Skeniranje %d datoteke nije uspjelo.</string>
<string name="create_action">Stvori</string>
<string name="created_playlist_x">Stvorena playlista %1$s.</string>
<string name="created_playlist_x">Popis naslova %1$s je stvoren.</string>
<string name="credit_title">Članovi i dobrinositelji</string>
<string name="currently_listening_to_x_by_x">Trenutno slušaš %1$s od %2$s.</string>
<string name="dark_theme_name">Otprilike Mračna</string>
<string name="dark_theme_name">Otprilike mračna</string>
<string name="default_hint">Nema Teksta</string>
<string name="delete_playlist_title">Izbriši playlistu</string>
<string name="delete_playlist_x"><![CDATA[Izbriši playlistu <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Izbriši playliste</string>
<string name="delete_playlist_title">Izbriši popis naslova</string>
<string name="delete_playlist_x"><![CDATA[Izbrisati popis naslova <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Izbriši popise naslova</string>
<string name="delete_song_x"><![CDATA[Izbriši pjesmu <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Izbriši <b>%1$d</b> playlista?]]></string>
<string name="delete_x_playlists"><![CDATA[Izbriši <b>%1$d</b> popisa naslova?]]></string>
<string name="delete_x_songs"><![CDATA[Izbriši <b>%1$d</b> pjesama?]]></string>
<string name="deleted_x_songs">Izbrisano %1$d pjesama.</string>
<string name="do_you_want_to_clear_the_blacklist">Želiš li očistiti crnu listu?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Želiš li maknuti <b>%1$s</b> sa crne liste?]]></string>
<string name="deleted_x_songs">Izbrisano je %1$d pjesama.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Pridružite se Discord serveru kako bi bili u toku sa novostima</string>
<string name="do_you_want_to_clear_the_blacklist">Želite li očistiti crni popis?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Želite li ukloniti <b>%1$s</b> sa crnog popisa?]]></string>
<string name="donate">Doniraj</string>
<string name="donate_summary">Ako misliš da zaslužujem biti plaćen za svoj posao, ovdje mi možeš ostaviti par dolara.</string>
<string name="donation_header">Kupi mi</string>
<string name="donate_summary">Ako mislite da zaslužujem biti plaćen za svoj posao, možete mi ostaviti nešto
novca ovdje</string>
<string name="donation_header">Kupite mi:</string>
<string name="download_from_last_fm">Preuzmi sa Last.fm-a</string>
<string name="edit_cover">Uredi omot</string>
<string name="empty">Prazno</string>
<string name="equalizer">Ekvilajzer</string>
<string name="equalizer">Ekvalizator</string>
<string name="faq">Često postavljena pitanja</string>
<string name="favorites">Favoriti</string>
<string name="flat">Ravno</string>
<string name="folders">Mape</string>
<string name="for_you">Za tebe</string>
<string name="for_you">Za vas</string>
<string name="full">Puno</string>
<string name="general_settings_summary">Promjeni cjelokupne boje aplikacije</string>
<string name="general_settings_summary">Promijenite temu i boje aplikacije</string>
<string name="general_settings_title">Izgled i osjećaj</string>
<string name="genre">Žanr</string>
<string name="genres">Žanri</string>
<string name="git_hub_summary">Račvaj projekt na github-u</string>
<string name="google_plus_community">Pridruži se Google plus zajednici, gdje možeš pitati za pomoć ili pratiti ažuriranje RetroMusicApp-a</string>
<string name="git_hub_summary">Forkaj projekt na GitHubu</string>
<string name="google_plus_community">Pridružite se Google plus zajednici, gdje možete pitati za pomoć ili pratiti ažuriranja Retro Musica</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
<string name="grid_size_4">4</string>
<string name="grid_size_5">5</string>
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Povijest</string>
<string name="home">Početno</string>
<string name="image_settings_summary">Promjeni ponašanje preuzimanja slike izvođača</string>
<string name="inserted_x_songs_into_playlist_x">Umetnuto %1$d pjesama u playlistu %2$s.</string>
<string name="home">Početna</string>
<string name="image_settings_summary">Promijenite postavke preuzimanja slika izvođača</string>
<string name="inserted_x_songs_into_playlist_x">Dodano je %1$d pjesama na popis naslova %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Podjeli svoju RetroMusic postavu za pokazivanje na instagram-u</string>
<string name="label_bit_rate">Brzina Prijenosa</string>
<string name="instagram_page_summary">Podjelite svoju Retro Music postavu na Instagramu</string>
<string name="label_bit_rate">Brzina prijenosa</string>
<string name="label_file_format">Format</string>
<string name="label_file_name">Ime datoteke</string>
<string name="label_file_path">Put do datoteke</string>
<string name="label_file_name">Naziv datoteke</string>
<string name="label_file_path">Put datoteke</string>
<string name="label_file_size">Veličina</string>
<string name="label_sampling_rate">Brzina Sampliranja</string>
<string name="label_sampling_rate">Brzina uzorkovanja</string>
<string name="label_track_length">Dužina</string>
<string name="last_added">Zadnje dodano</string>
<string name="lets_play_something">Svirajmo malo glazbe</string>
<string name="last_added">Posljednje dodano</string>
<string name="lets_play_something">Reproducirajmo malo glazbe</string>
<string name="library">Biblioteka</string>
<string name="licenses">Licence</string>
<string name="light_theme_name">Očito Bijela</string>
<string name="light_theme_name">Jasno bijela</string>
<string name="listing_files">Popisivanje datoteka</string>
<string name="loading_products">Učitavanje proizvoda...</string>
<string name="lyrics">Tekst</string>
<string name="my_name">Moje Ime</string>
<string name="my_top_tracks">Najslušanije pjesme</string>
<string name="material">Materijal</string>
<string name="my_name">Moje ime</string>
<string name="my_top_tracks">Najslušanije</string>
<string name="never">Nikad</string>
<string name="new_playlist_title">Nova playlista</string>
<string name="new_banner_photo">Nova slika naslovnice</string>
<string name="new_playlist_title">Novi popis naslova</string>
<string name="new_profile_photo">Nova slika profila</string>
<string name="new_start_directory">%s je novi početni direktorij.</string>
<string name="no_albums">Nema albuma</string>
<string name="no_artists">Nema izvođača</string>
<string name="no_audio_ID">"Prvo pusti pjesmu pa pokušaj ponovo."</string>
<string name="no_equalizer">Ekvilajzer nije pronađen.</string>
<string name="no_audio_ID">"Prvo reproducirajte pjesmu, zatim pokušajte ponovo."</string>
<string name="no_equalizer">Ekvalizator nije pronađen</string>
<string name="no_genres">Nema žanrova</string>
<string name="no_lyrics_found">Tekst nije pronađen</string>
<string name="no_playlists">Nema playlista</string>
<string name="no_playlists">Nema popisa naslova</string>
<string name="no_purchase_found">Kupnja nije pronađena.</string>
<string name="no_results">Nema rezultata</string>
<string name="no_songs">Nema pjesama</string>
<string name="normal">Normalno</string>
<string name="normal_lyrics">Normalni tekst</string>
<string name="normal_style">Normalno</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> nije na popisu medijske pohrane.]]></string>
<string name="nothing_to_scan">Nema stavki za skeniranje.</string>
<string name="notification">Obavijest</string>
<string name="notification_settings_summary">Promjeni stil obavijesti</string>
<string name="now_playing">Trenutno svira</string>
<string name="notification_settings_summary">Prilagodite stil obavijesti</string>
<string name="now_playing">Zaslon reprodukcije</string>
<string name="now_playing_queue">Red reprodukcije</string>
<string name="only_on_wifi">Samo na Wi-Fi-u</string>
<string name="others">Ostali</string>
<string name="others">Ostalo</string>
<string name="past_three_months">Prošla 3 mjeseca</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me je jednostavan način da nam doniraš novac. U slučaju da si spojio samo debitnu ili kreditnu karticu provizija u SAD-u je 2.9% donacije plus $0.30, inače nema provizije.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">više</a></string>
<string name="paypal_summary">PayPal.me je jednostavan način da nam donirate novac. U slučaju da ste povezali samo debitnu ili kreditnu karticu, provizija u SAD-u je 2.9% donacije + $0.30. Inače nema provizije.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">više</a></string>
<string name="permission_external_storage_denied">Dopuštenje za pristup eksternoj memoriji odbijeno.</string>
<string name="permissions_denied">Dopuštenja odbijena.</string>
<string name="personalize">Personaliziraj</string>
<string name="personalize_settings_summary">Prilagodi sučelje</string>
<string name="personalize">Prilagodba</string>
<string name="personalize_settings_summary">Prilagodite vaš zaslon reprodukcije i kontrole sučelja</string>
<string name="pick_from_local_storage">Odaberi sa lokalne pohrane</string>
<string name="plain">Obično</string>
<string name="playing_notification_description">Obavijest sviranja pruža mogućnosti puštanja/pauziranja itd.</string>
<string name="playing_notification_name">Obavijest sviranja</string>
<string name="playlist_empty_text">Prazna playlista</string>
<string name="playlist_is_empty">Playlista je prazna</string>
<string name="playlist_name_empty">Ime playliste</string>
<string name="playlists">Playliste</string>
<string name="plain">Jasno</string>
<string name="playing_notification_description">Obavijest reprodukcije pruža mogućnosti reprodukcije/pauziranja itd.</string>
<string name="playing_notification_name">Obavijest reprodukcije</string>
<string name="playlist_empty_text">Prazan popis naslova</string>
<string name="playlist_is_empty">Popis naslova je prazan</string>
<string name="playlist_name_empty">Naziv popisa naslova</string>
<string name="playlists">Popisi naslova</string>
<string name="pref_header_audio">Zvuk</string>
<string name="pref_header_general">Generalno</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">Slike</string>
<string name="pref_header_lockscreen">Zaključani zaslon</string>
<string name="pref_header_playlists">Playliste</string>
<string name="pref_only_lollipop">"Dostupno samo na Lollipop-u."</string>
<string name="pref_summary_album_art_on_lockscreen">Koristi prevlaku albuma trenutne pjesme kao pozadinu zaključanog zaslona.</string>
<string name="pref_summary_audio_ducking">Obavijesti, navigacija itd.</string>
<string name="pref_summary_blurred_album_art">Zamagljuje prevlaku albuma na zaključanom zaslonu. Može uzrokovati probleme sa aplikacijama treće strane i widgetima.</string>
<string name="pref_summary_carousel_effect">Efekt ringišpila na slici albuma na zaslonu za trenutno sviranje. Upamti da teme Kartica i Zamagljena Kartica ne rade s ovom značajkom</string>
<string name="pref_summary_classic_notification">Koristi klasični dizajn obavijesti.</string>
<string name="pref_summary_colored_app">Boja pozadine i kontrolnog gumba se mijenja po slici albuma na ekranu sviranja</string>
<string name="pref_summary_colored_app_shortcuts">Oboji prečace aplikacije u naglašenu boju. Svaki put kad promjeniš boju, molim te da ugasiš i ponovno upališ ovu opciju</string>
<string name="pref_summary_colored_navigation_bar">Oboji navigacijsku traku u primarnu boju.</string>
<string name="pref_summary_colored_notification">"Oboji obavijest u vibrantnu boju prevlake albuma."</string>
<string name="pref_summary_dominant_color">Najdominantnija boja bit će odabrana sa prevlake albuma ili izvođača.</string>
<string name="pref_summary_gapless_playback">"Može uzrokovati probleme sa sviranjem na nekim uređajima."</string>
<string name="pref_summary_ignore_media_store_artwork">Može povećati kvalitetu prevlake albuma, ali uzrokuje sporije učitavanje slika. Uključi ovo samo ako imaš problema sa slikama niske rezolucije.</string>
<string name="pref_summary_lock_screen">Kontrole zaključanog zaslona za Retro Music.</string>
<string name="pref_summary_album_art_on_lockscreen">Koristite omot albuma trenutne pjesme kao pozadinu zaključanog zaslona.</string>
<string name="pref_summary_audio_ducking">Smanjuje glasnoću kada je reproduciran zvuk sustava ili kad je stigla obavijest</string>
<string name="pref_summary_blurred_album_art">Zamagljuje omot albuma na zaključanom zaslonu. Može uzrokovati probleme s widgetima i aplikacijama treće strane.</string>
<string name="pref_summary_carousel_effect">Efekt ringišpila za omot albuma na zaslonu reprodukcije. Zapamtite da teme Kartica i Zamagljena Kartica neće raditi</string>
<string name="pref_summary_classic_notification">Koristite klasični dizajn obavijesti</string>
<string name="pref_summary_colored_app">Pozadina i kontrolne tipke se mijenjaju prema omotu albuma na zaslonu reprodukcije</string>
<string name="pref_summary_colored_app_shortcuts">Boja prečace aplikacije u naglašenu boju. Svaki put kad promijenite boju molimo ponovno uključite ovo</string>
<string name="pref_summary_colored_navigation_bar">Boja navigacijsku traku u primarnu boju</string>
<string name="pref_summary_colored_notification">"Boja obavijest u istaknutu boju albuma"</string>
<string name="pref_summary_dominant_color">Najdominantnija boja će biti odabrana iz omota albuma ili izvođača.</string>
<string name="pref_summary_gapless_playback">"Može uzrokovati probleme sa reprodukcijom na nekim uređajima."</string>
<string name="pref_summary_ignore_media_store_artwork">Može povećati kvalitetu omota albuma, ali uzrokuje sporije učitavanje slika. Omogućite ovo samo ako imate problema sa omotima niske rezolucije</string>
<string name="pref_summary_lock_screen">Koristite Retro Music prilagođene kontrole zaklj. zaslona</string>
<string name="pref_summary_open_source_licences">Detalji o licenci za softver otvorenog koda</string>
<string name="pref_summary_round_corners">Rubovi uglova za prozor, sliku albuma itd.</string>
<string name="pref_summary_tab_titles">Uključi/Isključi nazive kartica pri dnu.</string>
<string name="pref_summary_toggle_full_screen">Uvjerljiv način</string>
<string name="pref_summary_toggle_headset">Počni svirati odmah nakon prikapčanja slušalica.</string>
<string name="pref_summary_toggle_shuffle">Način mješanja će se ugasiti prilikom sviranja nove liste pjesama</string>
<string name="pref_summary_toggle_volume">Ako ima prostora u zaslonu za trenutno sviranje, uključi kontrole zvuka</string>
<string name="pref_title_album_art_on_lockscreen">Pokaži prevlaku albuma</string>
<string name="pref_title_album_grid_style">Stil rešetke albuma</string>
<string name="pref_summary_round_corners">Zaoblite rubove aplikacije</string>
<string name="pref_summary_tab_titles">Uključi/isključi nazive kartica pri dnu</string>
<string name="pref_summary_toggle_full_screen">Uvjerljivi način</string>
<string name="pref_summary_toggle_headset">Započni reprodukciju odmah nakon što su slušalice povezane</string>
<string name="pref_summary_toggle_shuffle">Nasumični naćin će biti isključen prilikom sviranja novog popisa pjesama</string>
<string name="pref_summary_toggle_volume">Ako ima dovoljno prostora, prikazati će se kontrole glasnoće na zaslonu reprodukcije</string>
<string name="pref_summary_extra_controls">Dodajte dodatne kontrole za mini reproduktor</string>
<string name="pref_summary_genre_toggle">Uključite/isključite karticu žanra</string>
<string name="pref_summary_home_banner">Uključite/isključite način naslovnice na početnoj stranici</string>
<string name="pref_title_album_art_on_lockscreen">Prikaži omot albuma</string>
<string name="pref_title_tab_text_mode">Način oznaka na karticama</string>
<string name="pref_title_album_grid_style">Rešetka albuma</string>
<string name="pref_title_app_shortcuts">Obojeni prečaci aplikacije</string>
<string name="pref_title_artist_grid_style">Stil rešetke izvođača</string>
<string name="pref_title_audio_ducking">Stišaj zvuk pri gubljenju fokusa</string>
<string name="pref_title_artist_grid_style">Rešetka izvođača</string>
<string name="pref_title_audio_ducking">Smanji glasnoću pri gubitku fokusa</string>
<string name="pref_title_auto_download_artist_images">Automatsko preuzimanje slika izvođača</string>
<string name="pref_title_blurred_album_art">Zamagli prevlaku albuma</string>
<string name="pref_title_choose_equalizer">Odaberi ekvilajzer</string>
<string name="pref_title_choose_equalizer">Odaberi ekvalizator</string>
<string name="pref_title_classic_notification">Klasični dizajn obavijesti</string>
<string name="pref_title_colored_app">Prilagodljiva boja</string>
<string name="pref_title_colored_notification">Obojena obavijest</string>
<string name="pref_title_gapless_playback">Sviranje bez praznina</string>
<string name="pref_title_general_theme">Generalna tema</string>
<string name="pref_title_ignore_media_store_artwork">Ignoriraj prevlake Medijske Pohrane</string>
<string name="pref_title_last_added_interval">Interval zadnje dodanih playlista</string>
<string name="pref_title_gapless_playback">Reprodukcija bez prekida</string>
<string name="pref_title_general_theme">Tema aplikacije</string>
<string name="pref_title_ignore_media_store_artwork">Ignoriraj omote iz medijske pohrane</string>
<string name="pref_title_last_added_interval">Interval zadnje dodanih popisa naslova</string>
<string name="pref_title_lock_screen">Kontrole preko cjelog zaslona</string>
<string name="pref_title_navigation_bar">Obojena navigacijska traka</string>
<string name="pref_title_now_playing_screen_appearance">Izgled</string>
<string name="pref_title_now_playing_screen_appearance">Tema zaslona reprodukcije</string>
<string name="pref_title_open_source_licences">Licence otvorenog koda</string>
<string name="pref_title_round_corners">Rubovi uglova</string>
<string name="pref_title_toggle_carousel_effect">Efekt ringišpila</string>
<string name="pref_title_toggle_dominant_color">Dominantna boja</string>
<string name="pref_title_toggle_full_screen">Aplikacija u punom prikazu</string>
<string name="pref_title_toggle_full_screen">Aplikacija preko cijelog zaslona</string>
<string name="pref_title_toggle_tab_titles">Nazivi kartica</string>
<string name="pref_title_toggle_toggle_headset">Automatsko sviranje</string>
<string name="pref_title_toggle_toggle_headset">Automatska reprodukcija</string>
<string name="pref_title_toggle_toggle_shuffle">Način mješanja</string>
<string name="pref_title_toggle_volume">Kontrole zvuka</string>
<string name="pref_title_toggle_volume">Kontrole glasnoće</string>
<string name="pref_title_user_info">Informacije o Korisniku</string>
<string name="pref_title_extra_controls">Dodatne kontrole</string>
<string name="pref_title_home_banner">Naslovnica na početnoj stranici</string>
<string name="pref_title_genre_toggle">Prikaži karticu žanra</string>
<string name="pref_title_home_artist_grid_style">Rešetka izvođača na početnoj stranici</string>
<string name="pref_title_album_cover_transform">Način albuma na zaslonu za reprodukciju</string>
<string name="cascading">Kaskadno</string>
<string name="primary_color">Primarna boja</string>
<string name="primary_color_desc">Primarna boja teme, zadano je plavo-siva, zasad radi s tamnim bojama</string>
<string name="purchase">Kupi</string>
<string name="purchase_summary">*Razmisli prije kupnje, ne pitaj za povrat novca.</string>
<string name="queue">Red</string>
<string name="rate_app">Ocjeni aplikaciju</string>
<string name="rate_on_google_play_summary">Voliš ovu aplikaciju? Daj nam na znanje u Google play trgovini da bismo poboljšali iskustvo</string>
<string name="rate_app">Ocijeni aplikaciju</string>
<string name="rate_on_google_play_summary">Volite ovu aplikaciju? Javite nam to na Google Play trgovini kako bi smo vam poboljšali iskustvo</string>
<string name="recent_albums">Nedavni albumi</string>
<string name="recent_artists">Nedavni izvođači</string>
<string name="remove_action">Makni</string>
<string name="remove_cover">Makni prevlaku</string>
<string name="remove_from_blacklist">Makni sa crne liste</string>
<string name="remove_profile_photo">Makni profilnu sliku</string>
<string name="remove_song_from_playlist_title">Makni pjesmu s playliste</string>
<string name="remove_song_x_from_playlist"><![CDATA[Makni pjesmu <b>%1$s</b> sa playliste?]]></string>
<string name="remove_songs_from_playlist_title">Makni pjesme sa playliste</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Makni <b>%1$d</b> pjesama sa playliste?]]></string>
<string name="rename_playlist_title">Preimenuj playlistu</string>
<string name="remove_action">Ukloni</string>
<string name="remove_banner_photo">Ukloni sliku naslovnice</string>
<string name="remove_cover">Ukloni omot</string>
<string name="remove_from_blacklist">Ukloni sa crnog popisa</string>
<string name="remove_profile_photo">Ukloni sliku profila</string>
<string name="remove_song_from_playlist_title">Ukloni pjesmu s popisa naslova</string>
<string name="remove_song_x_from_playlist"><![CDATA[Ukloniti pjesmu <b>%1$s</b> sa popisa naslova?]]></string>
<string name="remove_songs_from_playlist_title">Ukloni pjesme sa popisa naslova</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Ukloniti <b>%1$d</b> pjesama sa popisa naslova?]]></string>
<string name="rename_playlist_title">Preimenuj popis naslova</string>
<string name="reset_artist_image">Resetiraj sliku izvođača</string>
<string name="restore">Vrati</string>
<string name="restored_previous_purchase_please_restart">Vrati bivšu kupnju. Molim te ponovno pokreni aplikaciju da bi koristio sve značajke.</string>
<string name="restored_previous_purchase_please_restart">Vrati prošlu kupnju. Molimo vas ponovno pokrenite aplikaciju da biste koristili sve značajke.</string>
<string name="restored_previous_purchases">Bivše kupnje vraćene.</string>
<string name="restoring_purchase">Vraćanje kupnje...</string>
<string name="retro_equalizer">Retro Music Ekvilajzer</string>
<string name="retro_equalizer">Retro Music Ekvalizator</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Spremi kao datoteku</string>
<string name="saved_playlist_to">Spremljena playlista u %s.</string>
<string name="save_playlists_title">Spremi kao datoteke</string>
<string name="saved_playlist_to">Popis naslova je spremljen u %s.</string>
<string name="saving_changes">Spremanje promjena</string>
<string name="scan_media">Skeniraj medije</string>
<string name="scanned_files">Skenirano %1$d od %2$d datoteka.</string>
<string name="search_hint">Pretraži svoju biblioteku...</string>
<string name="select_all">Odaberi sve</string>
<string name="select_banner_photo">Odaberi sliku naslovnice</string>
<string name="set_artist_image">Postavi sliku izvođača</string>
<string name="shuffle">Mješaj</string>
<string name="shuffle">Izmiješaj</string>
<string name="simple">Jednostavno</string>
<string name="sleep_timer_canceled">Brojač sna otkazan.</string>
<string name="sleep_timer_set">Brojač sna postavljen za %d minuta od sad.</string>
<string name="social">Socialno</string>
<string name="sleep_timer_canceled">Brojač za spavanje je otkazan.</string>
<string name="sleep_timer_set">Brojač za spavanje je postavljen za %d minuta od sada.</string>
<string name="social">Društveno</string>
<string name="song">Pjesma</string>
<string name="song_duration">Trajanje pjesme</string>
<string name="songs">Pjesme</string>
<string name="sort_order">Red sortiranja</string>
<string name="sort_order_a_z">Uzlazno</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Izvođač</string>
<string name="sort_order_date">Datum</string>
<string name="sort_order_year">Godina</string>
<string name="sort_order_z_a">Silazno</string>
<string name="speech_not_supported">Žao mi je! Tvoj uređaj ne podržava unos govora</string>
<string name="speech_prompt">Pretraži scoju biblioteku</string>
<string name="summary_user_info">Pokaži samo svoje ime na početnoj stranici</string>
<string name="speech_prompt">Pretraži svoju biblioteku</string>
<string name="summary_user_info">Prikažite samo svoje ime na početnoj stranici</string>
<string name="support_development">Podrži razvijanje</string>
<string name="synced_lyrics">Sinkroniziran tekst</string>
<string name="system_equalizer">Sustavski Ekvilajzer</string>
<string name="system_equalizer">Sustavski ekvalizator</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Pridružite se Telegram grupi da biste raspravili o pogreškama, dali preporuke, te još mnogo toga</string>
<string name="thank_you">Hvala ti!</string>
<string name="the_audio_file">Zvukovna datoteka</string>
<string name="the_audio_file">Zvučna datoteka</string>
<string name="this_month">Ovaj mjesec</string>
<string name="this_week">Ovaj tjedan</string>
<string name="this_year">Ove godine</string>
@ -301,19 +354,40 @@
<string name="track_hint">"Pjesma (2 za 2. pjesmu ili 3004 za 3. CD 4. pjesmu)"</string>
<string name="track_list">Broj pjesme</string>
<string name="translate">Prevedi</string>
<string name="translate_community">Pomozi nam prevesti našu aplikaciju na svoj jezik</string>
<string name="twitter_page">Twitter Stranica</string>
<string name="twitter_page_summary">Podjeli svoj dizajn sa RetroMusicApp-om</string>
<string name="unplayable_file">Nije mogu\u0107e svirati ovu pjesmu.</string>
<string name="translate_community">Pomozite nam prevesti našu aplikaciju na svoj jezik</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Podjeli svoj dizajn sa Retro Music-om</string>
<string name="unplayable_file">Nije mogu\u0107e reproducirati ovu pjesmu.</string>
<string name="up_next">Sljedeće</string>
<string name="update_image">Ažuriraj sliku</string>
<string name="updating">Ažuriranje...</string>
<string name="version">Verzija</string>
<string name="virtualizer">Virtualizator</string>
<string name="web_search">Web pretraživanje</string>
<string name="what_do_you_want_to_share">Što želiš podjeliti?</string>
<string name="what_do_you_want_to_share">Što želite podijeliti?</string>
<string name="window">Prozor</string>
<string name="x_has_been_set_as_ringtone">Postavi %1$s kao zvuk zvonjave.</string>
<string name="x_has_been_set_as_ringtone">Postavi %1$s kao zvuk zvona.</string>
<string name="x_selected">%1$d odabran</string>
<string name="year">Godina</string>
<string name="made_with_love">Napravljeno sa ❤️ u Indiji</string>
<string name="clear_app_data">Očisti podatke aplikacije</string>
<string name="bug_report_summary">Dogodila se neočekivana pogreška. Žao nam je što ste pronašli ovu pogrešku, ako se aplikacija
nastavi rušiti \"Očisti podatke aplikacije\"</string>
<string name="error">Pogreška</string>
<string name="base_color_theme">Temeljna boja teme</string>
<string name="now_playing_themes">9+ tema za zaslon reprodukcije</string>
<string name="carousal_effect_on_now_playing_screen">Efekt ringišpila za zaslon reprodukcije</string>
<string name="window_corner_edges">Zaobljeni kutovi</string>
<string name="pref_title_album_cover_style">Teme omota albuma</string>
<string name="circular">Kružno</string>
<string name="carousal">Ringišpil</string>
<string name="now_playing_summary">Prilagodite zaslon reprodukcije</string>
<string name="full_card">Potpuna kartica</string>
<string name="profile">Profil</string>
<string name="bio">Biografija</string>
<string name="auto">Automatski</string>
<string name="labeled">Označeno</string>
<string name="unlabeled">Neoznačeno</string>
<string name="selected">Odabrano</string>
</resources>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">A hangsúly színe</string>
<string name="accent_color_desc">Az akcentus téma színe alapértelmezés szerint zöld.</string>
<string name="accent_color_desc">Az akcentus téma színe alapértelmezés szerint színtiszta</string>
<string name="action_about">Rólunk</string>
<string name="action_add_to_favorites">Add hozzá a kedvencekhez</string>
<string name="action_add_to_playing_queue">Add a lejátszási sorhoz</string>
@ -13,6 +13,7 @@
<string name="action_details">Részletek</string>
<string name="action_go_to_album">Ugrás az albumhoz</string>
<string name="action_go_to_artist">Ugrás az előadóhoz</string>
<string name="action_go_to_genre">Menj a műfajhoz</string>
<string name="action_go_to_start_directory">Ugrás a könyvtár indításához</string>
<string name="action_grant">Engedélyezés</string>
<string name="action_grid_size">Rácsméret</string>
@ -28,8 +29,9 @@
<string name="action_rename">Átnevezése</string>
<string name="action_save_playing_queue">Lejátszási sor mentése</string>
<string name="action_scan">Letapogatás</string>
<string name="action_scan_directory">Szkennelési könyvtár</string>
<string name="action_search">Keresés</string>
<string name="action_set">Beállítás</string>
<string name="action_set">Start</string>
<string name="action_set_as_ringtone">Beállítás csengőhangként</string>
<string name="action_set_as_start_directory">Beállítás kezdőkönyvtárként</string>
<string name="action_settings">"Beállítások"</string>
@ -37,7 +39,9 @@
<string name="action_shuffle_all">Összes keverése</string>
<string name="action_shuffle_playlist">Lejátszási lista keverése</string>
<string name="action_sleep_timer">Ébresztő óra</string>
<string name="action_sort_order">Sorrend</string>
<string name="action_tag_editor">Címkeszerkesztő</string>
<string name="adaptive">AdaptÍv</string>
<string name="add_action">Hozzáad</string>
<string name="add_photo">Fénykép\nhozzáadása</string>
<string name="add_playlist_title">"Lejátszási listához adni"</string>
@ -64,22 +68,31 @@
<string name="artist">Előadó</string>
<string name="artists">Előadók</string>
<string name="audio_focus_denied">Az audiofókusz megtagadva.</string>
<string name="audio_settings_summary">Állítsa be a hangbeállításokat és a hangszínszabályzókat</string>
<string name="audio_settings_summary">Módosítsa a hangbeállításokat és állítsa be az equalizer vezérlőket</string>
<string name="bass_boost">Basszuskiemelés</string>
<string name="biography">Életrajz</string>
<string name="black_theme_name">Csak fekete</string>
<string name="black_theme_name">Csak Fekete</string>
<string name="blacklist">Feketelista</string>
<string name="blur">Elhomályosít</string>
<string name="blur_card">Elhomályosított Kártya</string>
<string name="buy_retro_music_pro">Vedd meg a Retro Music Pro-t</string>
<string name="cancel_current_timer">Az aktuális időzítő törlése</string>
<string name="pref_keep_screen_on_title">Tartsa bekapcsolva a képernyőt</string>
<string name="pref_keep_screen_on_summary">Vedd figyelembe hogy ha bekapcsolod ezt gyorsabban fog merülni a telefonod.</string>
<string name="pref_blur_amount_title">Elhomályosodás mértéke</string>
<string name="pref_blur_amount_summary">Elhomályosodás mértéke homályos témákhoz, alacsonyabb a gyorsabb</string>
<string name="cancel_current_timer">Mégse</string>
<string name="card">Kártya</string>
<string name="card_color_style">Színes Kártya</string>
<string name="card_circular_style">Kör alakú</string>
<string name="image">Kép</string>
<string name="card_style">Kártya</string>
<string name="cast">Cast</string>
<string name="changelog">Változási napló</string>
<string name="changelog_summary">A Telegram alkalmazás által fenntartott naplófájl módosítása</string>
<string name="changelog_summary">A Changelog a Telegram csatornán működik</string>
<string name="clear_action">Tisztitás</string>
<string name="clear_blacklist">Törölje a feketelistát</string>
<string name="clear_playlist_title">Törölje a lejátszási listát</string>
<string name="clear_playlist_x"><![CDATA[T\u00f6r\u00f6li a <b>%1$s</b> lej\u00e1tsz\u00e1si list\u00e1t? Ezt nem lehet visszavonni!]]></string>
<string name="close_notification">Bezárás</string>
<string name="color">Szín</string>
<string name="color_theme_name">Szín</string>
<string name="colors">Színek</string>
@ -89,6 +102,7 @@
<string name="could_not_scan_files">Nem sikerült beolvasni %d fájlt.</string>
<string name="create_action">Létrehozás</string>
<string name="created_playlist_x">Létrehozott lejátszási lista %1$s</string>
<string name="credit_title">Tagok és támogatók</string>
<string name="currently_listening_to_x_by_x">Jelenleg hallgat %1$s által %2$s</string>
<string name="dark_theme_name">Kinda Sötét</string>
<string name="default_hint">Nincs dalszöveg</string>
@ -99,25 +113,37 @@
<string name="delete_x_playlists"><![CDATA[Törli a <b>%1$d</b> lejátszási listát?]]></string>
<string name="delete_x_songs"><![CDATA[Törli a <b>%1$d</b> zenét?]]></string>
<string name="deleted_x_songs">Törölte a %1$d zenét.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Csatlakozz a DIscord szerverre és ne maradj le az új hírekről</string>
<string name="do_you_want_to_clear_the_blacklist">Szeretné törölni a feketelistát?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Szeretné eltávolítani a <b>%1$s</b> a feketelistáról?]]></string>
<string name="donate">Támogatás</string>
<string name="donate_summary">Ha úgy gondolja, hogy megérdemlem fizetni a munkámért, itt hagyhatsz néhány dollárt.</string>
<string name="donation_header">Vegyél nekem egy</string>
<string name="donate_summary">Ha úgy gondolja, hogy megérdemlem fizetni a munkámért, hagyhatsz néhányat pénzt itt</string>
<string name="donation_header">Vegyél nekem egy:</string>
<string name="download_from_last_fm">Letöltés a Last.fm-ről</string>
<string name="edit_cover">Borító szerkesztése</string>
<string name="empty">Üres</string>
<string name="equalizer">Hangszínszabályzó</string>
<string name="faq">GYIK</string>
<string name="favorites">Kedvencek</string>
<string name="flat">Lapos</string>
<string name="folders">Mappák</string>
<string name="for_you">Neked</string>
<string name="full">Teljes</string>
<string name="general_settings_summary">Az alkalmazás általános színeinek módosítása</string>
<string name="general_settings_summary">Módosítsa az alkalmazás témáját és színeit</string>
<string name="general_settings_title">Nézz és élvezd</string>
<string name="genre">Műfaj</string>
<string name="genres">Műfajok</string>
<string name="git_hub_summary">Szerezd meg a projektet a githubban</string>
<string name="google_plus_community">Csatlakozzon a Google Plus közösséghez, ahol segítséget kérhet, vagy követheti a Retro Zene Alkalmazás frissítéseit</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
<string name="grid_size_4">4</string>
<string name="grid_size_5">5</string>
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Előzmény</string>
<string name="home">Krzdőlap</string>
<string name="image_settings_summary">A művészképek letöltésének megváltoztatása</string>
@ -139,9 +165,11 @@
<string name="listing_files">Listázási fájlok</string>
<string name="loading_products">A termékek betöltése ...</string>
<string name="lyrics">Dalszöveg</string>
<string name="material">Materiál</string>
<string name="my_name">Nevem</string>
<string name="my_top_tracks">Legjobb számok</string>
<string name="never">Soha</string>
<string name="new_banner_photo">Új banner fotó</string>
<string name="new_playlist_title">Új lejátszási lista</string>
<string name="new_profile_photo">Új profilfotó</string>
<string name="new_start_directory">%s az új indítókönyvtár.</string>
@ -157,6 +185,7 @@
<string name="no_songs">Nincs dal</string>
<string name="normal">Normál</string>
<string name="normal_lyrics">Normál dalszövegek</string>
<string name="normal_style">Normál</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> nem szerepel a médiában.]]></string>
<string name="nothing_to_scan">Nincs szkennelve.</string>
<string name="notification">Értesítés</string>
@ -206,7 +235,11 @@
<string name="pref_summary_toggle_headset">Indítsa el a lejátszást, amikor a fejhallgató csatlakoztatva van.</string>
<string name="pref_summary_toggle_shuffle">A véletlen sorrendű mód kikapcsol, ha új számlistát játszik le</string>
<string name="pref_summary_toggle_volume">Ha van szabad hely a képernyőn engedélyezett hangerőszabályzókkal</string>
<string name="pref_summary_extra_controls">Extra irányítás a mini lejátszóhoz</string>
<string name="pref_summary_genre_toggle">Műfaj lap kapcsolása</string>
<string name="pref_summary_home_banner">Kezdőlap banner stílusának kapcsolása</string>
<string name="pref_title_album_art_on_lockscreen">Az album borítójának megjelenítése</string>
<string name="pref_title_tab_text_mode">Lap címek módja</string>
<string name="pref_title_album_grid_style">Album rács stílusa</string>
<string name="pref_title_app_shortcuts">Színes alkalmazás parancsikonok</string>
<string name="pref_title_artist_grid_style">Előadói rács stílusa</string>
@ -234,6 +267,12 @@
<string name="pref_title_toggle_toggle_shuffle">Kevert mód</string>
<string name="pref_title_toggle_volume">Hangerőszabályzók</string>
<string name="pref_title_user_info">Felhasználói adatok</string>
<string name="pref_title_extra_controls">Extra vezérlők</string>
<string name="pref_title_home_banner">Kezdőlap banner</string>
<string name="pref_title_genre_toggle">Mutasd a műfaj lapot</string>
<string name="pref_title_home_artist_grid_style">Kezdőlapi előadó rács</string>
<string name="pref_title_album_cover_transform">Most játszik album borító stílusa</string>
<string name="cascading">Növelés</string>
<string name="primary_color">Elsődleges szín</string>
<string name="primary_color_desc">Az elsődleges téma színe, alapértelmezés szerint kék szürke, jelenleg sötét színekkel működik</string>
<string name="purchase">Vásárlás</string>
@ -244,6 +283,7 @@
<string name="recent_albums">Legutóbbi albumok</string>
<string name="recent_artists">Legújabb előadók</string>
<string name="remove_action">Eltávolítás</string>
<string name="remove_banner_photo">Banner fotó törlése</string>
<string name="remove_cover">Borító eltávolítása</string>
<string name="remove_from_blacklist">Eltávolítás a feketelistáról</string>
<string name="remove_profile_photo">Profilfotó eltávolítása</string>
@ -261,10 +301,14 @@
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Mentés fájlként</string>
<string name="save_playlists_title">Fájl mentése másként</string>
<string name="saved_playlist_to">Mentett lejátszási lista a következőhöz: %s</string>
<string name="saving_changes">A változtatások mentése</string>
<string name="scan_media">Média szkennelés</string>
<string name="scanned_files">%2$d fájlt %1$d szkennelt.</string>
<string name="search_hint">Keresés a könyvtárban ...</string>
<string name="select_all">Minden kiválasztása</string>
<string name="select_banner_photo">Banner fotó kiválasztása</string>
<string name="set_artist_image">Állítsa be az előadó képét</string>
<string name="shuffle">Keverés</string>
<string name="simple">Egyszerű</string>
@ -275,6 +319,12 @@
<string name="song_duration">A dal időtartama</string>
<string name="songs">Dalok</string>
<string name="sort_order">Sorrend</string>
<string name="sort_order_a_z">Növekvő</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Előadó</string>
<string name="sort_order_date">Dátum</string>
<string name="sort_order_year">Év</string>
<string name="sort_order_z_a">Csökkenő</string>
<string name="speech_not_supported">Sajnálom! A készülék nem támogatja a beszédet</string>
<string name="speech_prompt">Keresés a könyvtárban</string>
<string name="summary_user_info">Csak mutassa meg a nevét a kezdőképernyőn</string>
@ -282,6 +332,8 @@
<string name="synced_lyrics">Szinkronizált dalszövegek</string>
<string name="system_equalizer">Rendszer kiegyenlítő</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Csatlakozz a Telegram csoporthoz hogy megbeszélhesd a hibákat, ajánlásokat tegyél, bemutass valamit stb...</string>
<string name="thank_you">Köszönöm!</string>
<string name="the_audio_file">Az audio fájl</string>
<string name="this_month">Ebben a hónapban</string>
@ -316,4 +368,23 @@
<string name="x_has_been_set_as_ringtone">Állítsa be a (z) %1$s csengőhangot.</string>
<string name="x_selected">%1$d kiválasztása</string>
<string name="year">Év</string>
<string name="made_with_love">❤️-el készítve Indiából</string>
<string name="clear_app_data">App adat törlése</string>
<string name="bug_report_summary">Egy váratlan hiba történt. Találtál egy hibát, ha nem hagyja abba a fagyást, \"App adat törlése\"</string>
<string name="error">Hiba</string>
<string name="base_color_theme">Kiinduló szín témája</string>
<string name="now_playing_themes">9+ most játszik témák</string>
<string name="carousal_effect_on_now_playing_screen">Kőrhinta effekt a most játszik képernyőn</string>
<string name="window_corner_edges">Lekerekített sarkak</string>
<string name="pref_title_album_cover_style">Album borító téma</string>
<string name="circular">Kör alakú</string>
<string name="carousal">Körhinta</string>
<string name="now_playing_summary">Most játszik képernyő személyre szabása</string>
<string name="full_card">Teljes kártya</string>
<string name="profile">Profil</string>
<string name="bio">Bio</string>
<string name="auto">Autó</string>
<string name="labeled">Címkézve</string>
<string name="unlabeled">Címkézetlen</string>
<string name="selected">Kiválaszott</string>
</resources>

View File

@ -1,21 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Warna Aksen</string>
<string name="accent_color_desc">Warna tema aksen, Default adalah hijau</string>
<string name="accent_color_desc">Warna tema aksen, Default adalah biru kehijauan</string>
<string name="action_about">Tentang</string>
<string name="action_add_to_favorites">Tambahkan ke favorit</string>
<string name="action_add_to_playing_queue">Tambahkan ke antrean pemutar</string>
<string name="action_add_to_playlist">Tambahkan ke daftar putar</string>
<string name="action_clear_playing_queue">Bersihkan antrian pemutar</string>
<string name="action_clear_playing_queue">Bersihkan antrean pemutar</string>
<string name="action_clear_playlist">Bersihkan daftar putar</string>
<string name="action_delete">Hapus</string>
<string name="action_delete_from_device">Hapus dari perangkat</string>
<string name="action_details">Rincian</string>
<string name="action_go_to_album">Pergi ke album</string>
<string name="action_go_to_artist">Pergi ke artis</string>
<string name="action_go_to_album">Ke album</string>
<string name="action_go_to_artist">Ke artis</string>
<string name="action_go_to_genre">Ke genre</string>
<string name="action_go_to_start_directory">Pergi ke direktori awal</string>
<string name="action_grant">Ijinkan</string>
<string name="action_grid_size">Jumlah kotak</string>
<string name="action_grid_size">Jumlah kisi</string>
<string name="action_grid_size_land">Ukuran kisi (lanskap)</string>
<string name="action_next">Selanjutnya</string>
<string name="action_play">Putar</string>
@ -28,8 +29,9 @@
<string name="action_rename">Ganti nama</string>
<string name="action_save_playing_queue">Simpan antrean pemutar</string>
<string name="action_scan">Pindai</string>
<string name="action_scan_directory">Pindai direktori</string>
<string name="action_search">Cari</string>
<string name="action_set">Setel</string>
<string name="action_set">Mulai</string>
<string name="action_set_as_ringtone">Setel sebagai nada dering</string>
<string name="action_set_as_start_directory">Setel sebagai direktori awal</string>
<string name="action_settings">"Pengaturan"</string>
@ -37,7 +39,9 @@
<string name="action_shuffle_all">Acak semua</string>
<string name="action_shuffle_playlist">Acak daftar putar</string>
<string name="action_sleep_timer">Pengatur waktu tidur</string>
<string name="action_sort_order">Sortir</string>
<string name="action_tag_editor">Editor tag</string>
<string name="adaptive">Adaptif</string>
<string name="add_action">Tambah</string>
<string name="add_photo">Tambah\nFoto</string>
<string name="add_playlist_title">"Tambahkan ke daftar putar"</string>
@ -52,7 +56,11 @@
<string name="app_share">Hei lihat pemutar musik keren ini di:
https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Acak</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_top_tracks_short">Lagu teratas</string>
<string name="app_widget_big_name">Retro Musik - Besar</string>
<string name="app_widget_card_name">Retro music - Kartu</string>
@ -61,22 +69,31 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="artist">Artis</string>
<string name="artists">Artis</string>
<string name="audio_focus_denied">Fokus audio ditolak</string>
<string name="audio_settings_summary">Atur pengaturan suara dan kontrol equalizer</string>
<string name="audio_settings_summary">Ubah pengaturan suara dan sesuaikan equalizer</string>
<string name="bass_boost">Bass boost</string>
<string name="biography">Biografi</string>
<string name="black_theme_name">Hanya hitam</string>
<string name="black_theme_name">Hanya Hitam</string>
<string name="blacklist">Daftar hitam</string>
<string name="blur">Blur</string>
<string name="blur_card">Kartu blur</string>
<string name="buy_retro_music_pro">Beli RetroMusic Pro</string>
<string name="cancel_current_timer">Batalkan timer saat ini</string>
<string name="pref_keep_screen_on_title">Biarkan layar tetap menyala</string>
<string name="pref_keep_screen_on_summary">Membiarkan fitur ini aktif mungkin akan berpengaruh pada daya baterai</string>
<string name="pref_blur_amount_title">Tingkat blur</string>
<string name="pref_blur_amount_summary">Tingkat blur diaplikasikan pada tema blur, lebih rendah membuat lebih cepat</string>
<string name="cancel_current_timer">Batalkan</string>
<string name="card">Kartu</string>
<string name="card_color_style">Kartu Berwarna</string>
<string name="card_circular_style">Melengkung</string>
<string name="image">Gambar</string>
<string name="card_style">Kartu</string>
<string name="cast">Cast</string>
<string name="changelog">Catatan perubahan</string>
<string name="changelog_summary">Catatan perubahan ada di aplikasi Telegram</string>
<string name="clear_action">Bersihkan</string>
<string name="clear_blacklist">Bersihkan daftar hitam</string>
<string name="clear_playlist_title">Bersihkan daftar putar</string>
<string name="clear_playlist_x"><![CDATA[Bersihkan daftar putar <b>%1$s</b>? Ini tidak bisa dibatalkan]]></string>
<string name="close_notification">Tutup</string>
<string name="color">Warna</string>
<string name="color_theme_name">Warna</string>
<string name="colors">Warna</string>
@ -86,6 +103,7 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="could_not_scan_files">Tidak dapat memindai %d file</string>
<string name="create_action">Buat</string>
<string name="created_playlist_x">Daftar putar %1$s dibuat</string>
<string name="credit_title">Member dan kontribusi</string>
<string name="currently_listening_to_x_by_x">Sedang mendengarkan</string>
<string name="dark_theme_name">Agak gelap</string>
<string name="default_hint">Tidak ada lirik</string>
@ -96,33 +114,45 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="delete_x_playlists"><![CDATA[Hapus <b>%1$d</b> daftar putar?]]></string>
<string name="delete_x_songs"><![CDATA[Hapus <b>%1$d</b> lagu?]]></string>
<string name="deleted_x_songs">Lagu %1$d dihapus</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Bergabung dengan server DIscord untuk mengetahui berita terbaru</string>
<string name="do_you_want_to_clear_the_blacklist">Bersihkan daftar hitam?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Hapus <b>%1$s</b> dari
Daftar hitam?]]></string>
<string name="donate">Donasi</string>
<string name="donate_summary">Jika anda rasa saya berhak dibayar untuk karya saya,
anda dapat berdonasi disini</string>
<string name="donation_header">Belikan saya</string>
<string name="donation_header">Belikan saya:</string>
<string name="download_from_last_fm">Unduh dari Last.fm</string>
<string name="edit_cover">Ubah sampul</string>
<string name="empty">Kosong</string>
<string name="equalizer">Equalizer</string>
<string name="faq">Tanya - Jawab</string>
<string name="favorites">Favorit</string>
<string name="flat">Flat</string>
<string name="folders">Folder</string>
<string name="for_you">Untuk anda</string>
<string name="full">Penuh</string>
<string name="general_settings_summary">Ubah keseluruhan warna aplikasi</string>
<string name="general_settings_summary">Ubah tema dan warna dari aplikasi</string>
<string name="general_settings_title">Tampilan</string>
<string name="genre">Genre</string>
<string name="genres">Genre</string>
<string name="git_hub_summary">Fork the project in github</string>
<string name="google_plus_community">Gabung di komunitas Google plus, anda dapat mengikuti pembaruan aplikasi RetroMusic</string>
<string name="git_hub_summary">Fork the project on github</string>
<string name="google_plus_community">Gabung di komunitas Google plus, anda dapat bertanya ataupun mengikuti pembaruan dari aplikasi Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
<string name="grid_size_4">4</string>
<string name="grid_size_5">5</string>
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Riwayat</string>
<string name="home">Beranda</string>
<string name="image_settings_summary">Ubah tindakan pengunduhan gambar artis</string>
<string name="image_settings_summary">Ubah pengaturan pengunduhan gambar artis</string>
<string name="inserted_x_songs_into_playlist_x">Lagu %1$d dimasukan ke daftar putar %2$s</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Bagikan pengaturan RetroMusic mu di Instagram untuk menunjukannya</string>
<string name="instagram_page_summary">Bagikan pengaturan Retro Musicmu di Instagram untuk menunjukannya</string>
<string name="label_bit_rate">Bitrate</string>
<string name="label_file_format">Format</string>
<string name="label_file_name">Nama berkas</string>
@ -138,9 +168,11 @@ anda dapat berdonasi disini</string>
<string name="listing_files">Pengurutan berkas</string>
<string name="loading_products">Memuat produk...</string>
<string name="lyrics">Lirik</string>
<string name="material">Material</string>
<string name="my_name">Nama saya</string>
<string name="my_top_tracks">Lagu teratas</string>
<string name="my_top_tracks">Sering dimainkan</string>
<string name="never">Jangan pernah</string>
<string name="new_banner_photo">Banner foto baru</string>
<string name="new_playlist_title">Daftar putar baru</string>
<string name="new_profile_photo">Foto profil baru</string>
<string name="new_start_directory">%s adalah direktori awal yang baru.</string>
@ -156,6 +188,7 @@ anda dapat berdonasi disini</string>
<string name="no_songs">Tidak ada lagu</string>
<string name="normal">Normal</string>
<string name="normal_lyrics">Lirik normal</string>
<string name="normal_style">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> tidak ada di daftar media]]></string>
<string name="nothing_to_scan">Tak ada apapun untuk dipindai</string>
<string name="notification">Pemberitahuan</string>
@ -166,11 +199,11 @@ anda dapat berdonasi disini</string>
<string name="others">Lainnya</string>
<string name="past_three_months">3 bulan lalu</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me is an easy way to donate us money. In case you only linked a debit or credit card the fee in the U.S. is 2.9% of the donation plus $0.30 USD, otherwise there is no fee.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">more</a></string>
<string name="paypal_summary">PayPal.me adalah cara mudah untuk berdonasi kepada saya. Jika kamu hanya menghubungkan kartu debet atau kredit, pajak di AS adalah 2.9% dari donasi + $0.30 USD. Selain itu, tidak ada biaya.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">lebih lanjut</a></string>
<string name="permission_external_storage_denied">Izin untuk mengakses penyimpanan eksternal ditolak.</string>
<string name="permissions_denied">Izin ditolak.</string>
<string name="personalize">Personalisasi</string>
<string name="personalize_settings_summary">Sesuaikan antarmuka dan sedang diputar</string>
<string name="personalize_settings_summary">Sesuaikan sedang diputar dan tampilan kontrol</string>
<string name="pick_from_local_storage">Pilih dari penyimpanan lokal</string>
<string name="plain">Plain</string>
<string name="playing_notification_description">Notifikasi pemutar menyediakan tindakan untuk mainkan/jeda, dll.</string>
@ -180,16 +213,16 @@ anda dapat berdonasi disini</string>
<string name="playlist_name_empty">Nama daftar putar</string>
<string name="playlists">Daftar putar</string>
<string name="pref_header_audio">Audio</string>
<string name="pref_header_general">Umum</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">Gambar</string>
<string name="pref_header_lockscreen">Layar kunci</string>
<string name="pref_header_playlists">Daftar putar</string>
<string name="pref_only_lollipop">"Hanya tersedia di Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Menggunakan sampul album lagu yang sedang diputar sebagai wallpaper layar kunci</string>
<string name="pref_summary_audio_ducking">Notifikasi, navigasi dll.</string>
<string name="pref_summary_audio_ducking">Volume lebih rendah ketika suara sistem diputar atau terdapat notifikasi baru</string>
<string name="pref_summary_blurred_album_art">Blur sampul album di layar kunci. Dapat menyebabkan masalah dengan aplikasi pihak ketiga dan widget.</string>
<string name="pref_summary_carousel_effect">Efek carousel di sampul album yang sedang diputar. Ingat bahwa Kartu dan Kartu Blur takkan bekerja.</string>
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik</string>
<string name="pref_summary_colored_app">Latar belakang, Warna tombol kontrol berubah sesuai sampul album lagu yang diputar</string>
<string name="pref_summary_colored_app_shortcuts">Warna pintasan aplikasi dalam warna aksen. Setiap kali anda mengubahnya, restart aplikasi untuk menerapkan efek</string>
<string name="pref_summary_colored_navigation_bar">Warna bar navigasi primer</string>
@ -205,7 +238,11 @@ anda dapat berdonasi disini</string>
<string name="pref_summary_toggle_headset">Putar segera setelah headphones terhubung.</string>
<string name="pref_summary_toggle_shuffle">Mode acak akan non-aktif ketika memutar lagu baru dari daftar</string>
<string name="pref_summary_toggle_volume">Jika ada ruang di layar yang sedang diputar, aktifkan kontrol volume</string>
<string name="pref_summary_extra_controls">Tambahkan kontrol tambahan untuk pemutar mini</string>
<string name="pref_summary_genre_toggle">Toggle tab genre</string>
<string name="pref_summary_home_banner">Toggle gaya banner beranda</string>
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
<string name="pref_title_tab_text_mode">Mode tab judul</string>
<string name="pref_title_album_grid_style">Gaya grid album</string>
<string name="pref_title_app_shortcuts">Pintasan aplikasi berwarna</string>
<string name="pref_title_artist_grid_style">Gaya grid artis</string>
@ -233,6 +270,12 @@ anda dapat berdonasi disini</string>
<string name="pref_title_toggle_toggle_shuffle">Mode acak</string>
<string name="pref_title_toggle_volume">Kontrol volume</string>
<string name="pref_title_user_info">Info pengguna</string>
<string name="pref_title_extra_controls">Kontrol tambahan</string>
<string name="pref_title_home_banner">Banner beranda</string>
<string name="pref_title_genre_toggle">Tampilkan tab genre</string>
<string name="pref_title_home_artist_grid_style">Grid artis pada beranda</string>
<string name="pref_title_album_cover_transform">Gaya sampul album ketika memainkan</string>
<string name="cascading">Tersusun kebawah</string>
<string name="primary_color">Warna primer</string>
<string name="primary_color_desc">Warna tema utama, warna baku biru abu-abu, untuk saat ini berfungsi dengan warna gelap</string>
<string name="purchase">Beli</string>
@ -243,6 +286,7 @@ anda dapat berdonasi disini</string>
<string name="recent_albums">Album terbaru</string>
<string name="recent_artists">Artis terbaru</string>
<string name="remove_action">Hapus</string>
<string name="remove_banner_photo">Hapus foto banner</string>
<string name="remove_cover">Hapus sampul</string>
<string name="remove_from_blacklist">Hapus dari daftar hitam</string>
<string name="remove_profile_photo">Hapus foto profil</string>
@ -260,10 +304,14 @@ anda dapat berdonasi disini</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Simpan berkas sebagai</string>
<string name="save_playlists_title">Simpan file sebagai</string>
<string name="saved_playlist_to">Daftar putar disimpan ke %s.</string>
<string name="saving_changes">Menyimpan perubahan</string>
<string name="scan_media">Pindai media</string>
<string name="scanned_files">%1$d dari %2$d selesai dipindai.</string>
<string name="search_hint">Cari di pustaka...</string>
<string name="select_all">Pilih semua</string>
<string name="select_banner_photo">Pilih foto banner</string>
<string name="set_artist_image">Setel gambar artis</string>
<string name="shuffle">Acak</string>
<string name="simple">Sederhana</string>
@ -274,6 +322,12 @@ anda dapat berdonasi disini</string>
<string name="song_duration">Durasi lagu</string>
<string name="songs">Lagu</string>
<string name="sort_order">Sortir</string>
<string name="sort_order_a_z">Meningkat</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Artis</string>
<string name="sort_order_date">Tanggal</string>
<string name="sort_order_year">Tahun</string>
<string name="sort_order_z_a">Menurun</string>
<string name="speech_not_supported">Maaf! Perangkat anda tidak mendukung input suara</string>
<string name="speech_prompt">Cari</string>
<string name="summary_user_info">Hanya tampilkan nama anda di beranda</string>
@ -281,6 +335,8 @@ anda dapat berdonasi disini</string>
<string name="synced_lyrics">Lirik yang disinkronkan</string>
<string name="system_equalizer">Equalizer Sistem</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Gabung ke grup Telegram untuk mendiskusikan maslah, membuat permintaan, memamerkan dan lainnya</string>
<string name="thank_you">Terima kasih!</string>
<string name="the_audio_file">Berkas audio</string>
<string name="this_month">Bulan ini</string>
@ -315,4 +371,24 @@ anda dapat berdonasi disini</string>
<string name="x_has_been_set_as_ringtone">Atur %1$s sebagai nada dering.</string>
<string name="x_selected">%1$d dipilih</string>
<string name="year">Tahun</string>
<string name="made_with_love">Dibuat dengan cinta ❤️ di India</string>
<string name="clear_app_data">Hapus data aplikasi</string>
<string name="bug_report_summary">Terjadi kesalahan tidak terduga. Maaf kamu mengalami masalah ini, jika
tetap bermasalah, \"Hapus data Aplikasi\"</string>
<string name="error">Error</string>
<string name="base_color_theme">Berdasarkan warna tema</string>
<string name="now_playing_themes">9+ gaya sedang diputar</string>
<string name="carousal_effect_on_now_playing_screen">Efek carousel pada layar sedang diputar</string>
<string name="window_corner_edges">Sudut melengkung</string>
<string name="pref_title_album_cover_style">Tema sampul album</string>
<string name="circular">Melengkung</string>
<string name="carousal">Carousal</string>
<string name="now_playing_summary">Kostumisasi layar sedang diputar</string>
<string name="full_card">Kartu penuh</string>
<string name="profile">Profil</string>
<string name="bio">Bio</string>
<string name="auto">Otomatis</string>
<string name="labeled">Berlabel</string>
<string name="unlabeled">Tidak berlabel</string>
<string name="selected">Terpilih</string>
</resources>

View File

@ -1,22 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Colore in rilievo</string>
<string name="accent_color_desc">Il colore in rilievo del tema, verde di default.</string>
<string name="action_about">A proposito</string>
<string name="accent_color">Colore dominante</string>
<string name="accent_color_desc">Il colore secondario del tema, verde di default</string>
<string name="action_about">Informazioni</string>
<string name="action_add_to_favorites">Aggiungi ai preferiti</string>
<string name="action_add_to_playing_queue">Aggiungi alla coda</string>
<string name="action_add_to_playlist">Aggiungi alla playlist...</string>
<string name="action_clear_playing_queue">Cancella coda</string>
<string name="action_clear_playlist">Svuota playlist</string>
<string name="action_delete">Elimina</string>
<string name="action_delete_from_device">Elimina dal dispositivo</string>
<string name="action_clear_playlist">Svuota la playlist</string>
<string name="action_delete">Cancella</string>
<string name="action_delete_from_device">Cancella dal dispositivo</string>
<string name="action_details">Dettagli</string>
<string name="action_go_to_album">Vai all\'album</string>
<string name="action_go_to_artist">Vai all\'artista</string>
<string name="action_go_to_start_directory">Vai alla cartella iniziale</string>
<string name="action_go_to_genre">Vai al genere</string>
<string name="action_go_to_start_directory">Vai alla directory iniziale</string>
<string name="action_grant">Concedi</string>
<string name="action_grid_size">Dimensioni griglia</string>
<string name="action_grid_size_land">Dimensioni griglia (orizzontale)</string>
<string name="action_grid_size">Dimensione griglia</string>
<string name="action_grid_size_land">Dimensione griglia (orizzontale)</string>
<string name="action_next">Successivo</string>
<string name="action_play">Riproduci</string>
<string name="action_play_next">Riproduci successivo</string>
@ -26,95 +27,115 @@
<string name="action_remove_from_playing_queue">Rimuovi dalla coda</string>
<string name="action_remove_from_playlist">Rimuovi dalla playlist</string>
<string name="action_rename">Rinomina</string>
<string name="action_save_playing_queue">Salva la coda</string>
<string name="action_save_playing_queue">Salva coda</string>
<string name="action_scan">Scansiona</string>
<string name="action_scan_directory">Scansiona cartella</string>
<string name="action_search">Cerca</string>
<string name="action_set">Imposta</string>
<string name="action_set">Inizia</string>
<string name="action_set_as_ringtone">Imposta come suoneria</string>
<string name="action_set_as_start_directory">Imposta come cartella iniziale</string>
<string name="action_settings">"Impostazioni"</string>
<string name="action_share">Condividi</string>
<string name="action_shuffle_all">Riproduzione casuale</string>
<string name="action_shuffle_playlist">Riproduzione casuale della playlist</string>
<string name="action_shuffle_playlist">Riproduzione casuale playlist</string>
<string name="action_sleep_timer">Timer sonno</string>
<string name="action_sort_order">Ordina per</string>
<string name="action_tag_editor">Modifica tag</string>
<string name="adaptive">Adattivo</string>
<string name="add_action">Aggiungi</string>
<string name="add_photo">Aggiungi foto</string>
<string name="add_photo">Aggiungi immagine</string>
<string name="add_playlist_title">"Aggiungi alla playlist"</string>
<string name="added_title_to_playing_queue">"Aggiunto 1 titolo alla coda."</string>
<string name="added_x_titles_to_playing_queue">Aggiunti %1$d titoli alla coda di riproduzione.</string>
<string name="added_title_to_playing_queue">"Aggiunto un brano alla coda."</string>
<string name="added_x_titles_to_playing_queue">Aggiungi %1$d brani alla coda.</string>
<string name="album">Album</string>
<string name="album_artist">Artista album</string>
<string name="album_or_artist_empty">Manca il titolo o l\'artista.</string>
<string name="album_or_artist_empty">Il titolo o l\'artista sono vuoti</string>
<string name="albums">Album</string>
<!-- Android Auto -->
<string name="always">Sempre</string>
<string name="app_share">Hey dai un\'occhiata a questo lettore musicale: https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">Hey, dai un\'occhiata a questo lettore musicale figo a: https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">Ultime aggiunte</string>
<string name="app_shortcut_last_added_short">Ultime aggiunte</string>
<string name="app_shortcut_shuffle_all_long">Casuale</string>
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_shuffle_all_short">Casuale</string>
<string name="app_shortcut_top_tracks_long">Brani migliori</string>
<string name="app_shortcut_top_tracks_short">Brani migliori</string>
<string name="app_shortcut_top_tracks_short">Tracce migliori</string>
<string name="app_widget_big_name">Retro music - Grande</string>
<string name="app_widget_card_name">Retro music - Card</string>
<string name="app_widget_classic_name">Retro music - Classico</string>
<string name="app_widget_small_name">Retro music - Piccolo</string>
<string name="app_widget_card_name">Retro Music - Card</string>
<string name="app_widget_classic_name">Retro Music - Classico</string>
<string name="app_widget_small_name">Retro Music - Piccolo</string>
<string name="artist">Artista</string>
<string name="artists">Artisti</string>
<string name="audio_focus_denied">Focus audio negato.</string>
<string name="audio_settings_summary">Regola le impostazioni audio e i controlli dell\'equalizzatore</string>
<string name="audio_focus_denied">Focalizzazione audio negata.</string>
<string name="audio_settings_summary">Modifica le impostazioni audio e regola i controlli dell\'equalizzatore</string>
<string name="bass_boost">Bass Boost</string>
<string name="biography">Biografia</string>
<string name="black_theme_name">Solo nero</string>
<string name="blacklist">Lista nera</string>
<string name="blur">Sfocato</string>
<string name="blur_card">Scheda sfocata</string>
<string name="buy_retro_music_pro">Acquista RetroMusic Pro</string>
<string name="cancel_current_timer">Elimina timer corrente</string>
<string name="card">Scheda</string>
<string name="changelog">Changelog</string>
<string name="changelog_summary">Changelog mantenuto dal\'app Telegram</string>
<string name="clear_action">Svuota</string>
<string name="clear_blacklist">Pulisci la lista nera</string>
<string name="clear_playlist_title">Svuota playlist</string>
<string name="clear_playlist_x"><![CDATA[Svuotare la playlist <b>%1$s</b>? Questa operazione non pu\u00f2 essere annullata!]]></string>
<string name="color">Colorato</string>
<string name="black_theme_name">Nero</string>
<string name="blacklist">Blacklist</string>
<string name="blur">Sfocatura</string>
<string name="blur_card">Card sfocata</string>
<string name="pref_keep_screen_on_title">Mantieni lo schermo acceso</string>
<string name="pref_keep_screen_on_summary">Ricorda che abilitando questa opzione la batteria potrebbe risentirne</string>
<string name="pref_blur_amount_title">Quantità di sfocatura</string>
<string name="pref_blur_amount_summary">Quantità di sfocatura applicata per i temi con sfocatura, minore è più veloce</string>
<string name="cancel_current_timer">Annulla</string>
<string name="card">Card</string>
<string name="card_color_style">Card colorata</string>
<string name="card_circular_style">Circolare</string>
<string name="image">Immagine</string>
<string name="card_style">Card</string>
<string name="cast">Forma</string>
<string name="changelog">Ultime modifiche</string>
<string name="changelog_summary">Per visualizzare le ultime modifiche, entra nel canale Telegram</string>
<string name="clear_action">Vuoto</string>
<string name="clear_blacklist">Cancella blacklist</string>
<string name="clear_playlist_title">Cancella playlist</string>
<string name="clear_playlist_x"><![CDATA[Cancella la playlist <b>% 1 $ s </ b>? Questo non pu\u00f2 essere annullato!]]></string>
<string name="close_notification">Chiudi</string>
<string name="color">Colore</string>
<string name="color_theme_name">Colore</string>
<string name="colors">Colori</string>
<string name="could_not_create_playlist">Impossibile creare la playlist</string>
<string name="could_not_download_album_cover">"Impossibile scaricare una copertina dell'album corrispondente."</string>
<string name="could_not_create_playlist">Impossibile creare la playlist.</string>
<string name="could_not_download_album_cover">"Impossibile scaricare una copertina di album corrispondente."</string>
<string name="could_not_restore_purchase">Impossibile ripristinare l\'acquisto.</string>
<string name="could_not_scan_files">Impossibile analizzare %d file</string>
<string name="could_not_scan_files">Impossibile scansionare %d file.</string>
<string name="create_action">Crea</string>
<string name="created_playlist_x">Playlist %1$s creata</string>
<string name="currently_listening_to_x_by_x">Sto ascoltando a %1$s di %2$s</string>
<string name="dark_theme_name">Scuro</string>
<string name="created_playlist_x">Playlist creata</string>
<string name="credit_title">Membri e contributori</string>
<string name="currently_listening_to_x_by_x">Ascoltando attualmente %1$s di %2$s.</string>
<string name="dark_theme_name">Tipo buio</string>
<string name="default_hint">Nessun testo</string>
<string name="delete_playlist_title">Elimina playlist</string>
<string name="delete_playlist_x"><![CDATA[Vuoi eliminare la playlist <b>%1$s</b>?]]></string>
<string name="delete_playlist_x"><![CDATA[Elimina la playlist <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Elimina playlist</string>
<string name="delete_song_x"><![CDATA[Eliminare il brano <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Eliminare <b>%1$d</b> playlist?]]></string>
<string name="delete_x_playlists"><![CDATA[Elimina <b>%1$d</b> playlist?]]></string>
<string name="delete_x_songs"><![CDATA[Eliminare <b>%1$d</b> brani?]]></string>
<string name="deleted_x_songs">Eliminati %1$d brani.</string>
<string name="do_you_want_to_clear_the_blacklist">Vuoi pulire la lista nera?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Vuoi rimuovere <b>%1$s</b> dalla lista nera?]]></string>
<string name="donate">Fai un donazione</string>
<string name="donate_summary">Se pensi che mi meriti di essere pagato per il mio lavoro, puoi lasciarmi qualche soldo qui.</string>
<string name="donation_header">Pagami un</string>
<string name="deleted_x_songs">Eliminati %1$d brani</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Unisciti al server Discord per tenerti aggiornato con le ultime notizie</string>
<string name="do_you_want_to_clear_the_blacklist">Vuoi cancellare la blacklist?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Vuoi rimuovere <b>%1$s</b> dalla blacklist?]]></string>
<string name="donate">Dona</string>
<string name="donate_summary">Se pensi che io meriti di essere pagato per il mio lavoro, puoi lasciarmi qualche soldo qui</string>
<string name="donation_header">Pagami un:</string>
<string name="download_from_last_fm">Scarica da Last.fm</string>
<string name="edit_cover">Modifica copertina</string>
<string name="empty">Vuoto</string>
<string name="equalizer">Equalizzatore</string>
<string name="faq">FAQ</string>
<string name="favorites">Preferiti</string>
<string name="flat">Piatto</string>
<string name="folders">Cartelle</string>
<string name="for_you">Per te</string>
<string name="full">Pieno</string>
<string name="general_settings_summary">Cambia i colori generali dell\'app</string>
<string name="general_settings_summary">Cambia il tema e i colori dell\'app</string>
<string name="general_settings_title">Aspetto</string>
<string name="genre">Genere</string>
<string name="genres">Generi</string>
<string name="git_hub_summary">Sviluppa il progetto su GitHub</string>
<string name="google_plus_community">Unisciti alla community di Google Plus, dove puoi chiedere aiuto o seguire gli aggiornamenti di Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
@ -124,32 +145,38 @@
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Cronologia</string>
<string name="home">Home</string>
<string name="inserted_x_songs_into_playlist_x">Inserite %1$d canzoni nella playlist %2$s.</string>
<string name="home">Casa</string>
<string name="image_settings_summary">Modifica le impostazioni di download delle immagini</string>
<string name="inserted_x_songs_into_playlist_x">Inseriti %1$d brani nella playlist %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Condividi la tua configurazione di RetroMusic per mostrarla su Instagram</string>
<string name="label_bit_rate">Bitrate</string>
<string name="label_file_format">Formato</string>
<string name="label_file_name">Nome file</string>
<string name="label_file_path">Percorso file</string>
<string name="label_file_size">Dimensioni</string>
<string name="label_sampling_rate">Campionamento</string>
<string name="label_track_length">Durata</string>
<string name="last_added">Ultimi aggiunti</string>
<string name="lets_play_something">Suoniamo qualcosa</string>
<string name="label_file_name">Nome del file</string>
<string name="label_file_path">Percorso del file</string>
<string name="label_file_size">Dimensione</string>
<string name="label_sampling_rate">Frequenza di campionamento</string>
<string name="label_track_length">Lunghezza</string>
<string name="last_added">Ultimo aggiunto</string>
<string name="lets_play_something">Suoniamo un po\' di musica</string>
<string name="library">Raccolta</string>
<string name="licenses">Licenze</string>
<string name="light_theme_name">Bianco</string>
<string name="listing_files">File di elenco</string>
<string name="loading_products">Caricando i prodotti...</string>
<string name="lyrics">Testo</string>
<string name="my_name">Il mio nome</string>
<string name="my_top_tracks">Brani migliori</string>
<string name="light_theme_name">Bianco puro</string>
<string name="listing_files">Elenco dei file</string>
<string name="loading_products">Caricamento prodotti...</string>
<string name="lyrics">Testi</string>
<string name="material">Material</string>
<string name="my_name">Nome</string>
<string name="my_top_tracks">I più riprodotti</string>
<string name="never">Mai</string>
<string name="new_banner_photo">Nuova immagine copertina</string>
<string name="new_playlist_title">Nuova playlist</string>
<string name="new_start_directory">%s é la nuova cartella di avvio.</string>
<string name="new_profile_photo">Nuova foto del profilo</string>
<string name="new_start_directory">%s è la nuova directory di avvio</string>
<string name="no_albums">Nessun album</string>
<string name="no_artists">Nessun artista</string>
<string name="no_audio_ID">"Riproduci una canzone, poi riprova"</string>
<string name="no_equalizer">Equalizzatore non trovato</string>
<string name="no_audio_ID">"Prima riproduci un brano, poi riprova."</string>
<string name="no_equalizer">Nessun equalizzatore trovato</string>
<string name="no_genres">Nessun genere</string>
<string name="no_lyrics_found">Nessun testo trovato</string>
<string name="no_playlists">Nessuna playlist</string>
@ -157,121 +184,156 @@
<string name="no_results">Nessun risultato</string>
<string name="no_songs">Nessun brano</string>
<string name="normal">Normale</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> non è elencato nel media store.]]></string>
<string name="nothing_to_scan">Niente da analizzare.</string>
<string name="normal_lyrics">Testi normali</string>
<string name="normal_style">Normale</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> non è presente nel Media Store.]]></string>
<string name="nothing_to_scan">Niente da rilevare</string>
<string name="notification">Notifica</string>
<string name="notification_settings_summary">Personalizza stile notifica</string>
<string name="notification_settings_summary">Modifica lo stile delle notifiche</string>
<string name="now_playing">In riproduzione</string>
<string name="now_playing_queue">Coda di riproduzione</string>
<string name="only_on_wifi">Solo con Wi-Fi</string>
<string name="now_playing_queue">Coda in riproduzione</string>
<string name="only_on_wifi">Solo tramite Wi-fi</string>
<string name="others">Altro</string>
<string name="past_three_months">Ultimi 3 mesi</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me è un metodo facile per donare soldi. Nel caso avessi collegato una carta di debito o credito, la tassa negli USA è del 2.9% della donazione più 0.30$, altrimenti non c\'è nessuna tassa.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">altro</a></string>
<string name="permission_external_storage_denied">Permesso di accesso alla memoria esterna negato</string>
<string name="permissions_denied">Permessi negati.</string>
<string name="paypal_summary">PayPal.me è un modo semplice per donarmi denaro. Se hai collegato solo una carta di credito o di debito, la commissione negli Stati Uniti è pari al 2,9% della donazione + 0,30$. In caso contrario, non ci sono costi. <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">Altro</a></string>
<string name="permission_external_storage_denied">Autorizzazione ad accedere all\'archiviazione esterna negata.</string>
<string name="permissions_denied">Autorizzazione negata.</string>
<string name="personalize">Personalizza</string>
<string name="personalize_settings_summary">Personalizza schermata riproduzione e interfaccia</string>
<string name="pick_from_local_storage">Prendi dalla memoria locale</string>
<string name="plain">Semplice</string>
<string name="playing_notification_description">La notifica della riproduzione prevede azioni per il play/pausa ecc...</string>
<string name="playing_notification_name">Notifica della riproduzione</string>
<string name="personalize_settings_summary">Personalizza i comandi riproduzione</string>
<string name="pick_from_local_storage">Scegli dalla memoria locale</string>
<string name="plain">Piatto</string>
<string name="playing_notification_description">La notifica di riproduzione fornisce azioni per riproduzione/pausa ecc.</string>
<string name="playing_notification_name">Notifica di riproduzione</string>
<string name="playlist_empty_text">Playlist vuota</string>
<string name="playlist_is_empty">La playlist è vuota</string>
<string name="playlist_name_empty">Nome della playlist</string>
<string name="playlist_name_empty">Nome playlist</string>
<string name="playlists">Playlist</string>
<string name="pref_header_audio">Audio</string>
<string name="pref_header_general">Generale</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">Immagini</string>
<string name="pref_header_lockscreen">Schermata di blocco</string>
<string name="pref_header_playlists">Playlists</string>
<string name="pref_only_lollipop">"Disponibile solo su Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Usa la copertina dell\'album della canzone in riproduzione come sfondo della schermata di blocco.</string>
<string name="pref_summary_audio_ducking">Notifiche, navigazione ecc.</string>
<string name="pref_summary_blurred_album_art">Applica sfocatura alla copertina dell\'album della canzone in riproduzione nella schermata di blocco. Può causare problemi con app e widget di terze parti.</string>
<string name="pref_summary_carousel_effect">Effetto scorrimento della copertina nella schermata di riproduzione. Non funziona con i temi Scheda e Scheda sfocata</string>
<string name="pref_summary_classic_notification">Usa il design classico per le notifiche</string>
<string name="pref_summary_colored_app">Lo sfondo ed il tasto di riproduzione cambiano colore in base alla copertina dell\'album</string>
<string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore in rilievo. Ogni volta che cambi colore attiva questo perché abbia effetto.</string>
<string name="pref_summary_colored_navigation_bar">Colora la barra di navigazione con il colore primario.</string>
<string name="pref_summary_colored_notification">"Colora la notifica con il colore principale della copertina dell'album."</string>
<string name="pref_summary_dominant_color">Il colore più dominante sarà preso dall\'immagine dell\'album o dell\'artista.</string>
<string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi."</string>
<string name="pref_summary_ignore_media_store_artwork">Può aumentare la qualità della copertina degli album, ma causa un rallentamento nel caricamento dell\'immagine. Abilita solo se hai problemi con la bassa qualità delle copertine.</string>
<string name="pref_summary_lock_screen">Mostra i controlli per la schermata di blocco di Retro Music</string>
<string name="pref_summary_open_source_licences">Dettagli per la licenza per l\'open source</string>
<string name="pref_summary_round_corners">Angoli arrotondati per le finestre, le copertine degli album, ecc...</string>
<string name="pref_summary_tab_titles">Abilita/disabilita i titoli nella barra in basso</string>
<string name="pref_header_playlists">Playlist</string>
<string name="pref_only_lollipop">"Disponibile solo con Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Imposta la copertina del brano riprodotto come sfondo del blocco schermo</string>
<string name="pref_summary_audio_ducking">Riduce il volume quando viene riprodotto un suono di sistema o viene ricevuta una notifica</string>
<string name="pref_summary_blurred_album_art">Sfoca la copertina dell\'album sulla schermata di blocco. Può causare problemi con app e widget di terze parti</string>
<string name="pref_summary_carousel_effect">Effetto scorrimento della copertina nella schermata in riproduzione. Non funziona con i temi Scheda e Scheda sfocata</string>
<string name="pref_summary_classic_notification">Usa il design classico delle notifiche</string>
<string name="pref_summary_colored_app">Lo sfondo e il pulsante di riproduzione cambiano colore in base alla copertina dell\'album in riproduzione</string>
<string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore in rilievo. Ogni volta che cambi colore attiva questo perché abbia effetto</string>
<string name="pref_summary_colored_navigation_bar">Colora la barra di navigazione con il colore primario</string>
<string name="pref_summary_colored_notification">"Colora la notifica con il colore principale della copertina dell'album"</string>
<string name="pref_summary_dominant_color">Il colore dominante verrà selezionato dall\'album o dalla copertina dell\'artista</string>
<string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi"</string>
<string name="pref_summary_ignore_media_store_artwork">Può aumentare la qualità delle copertine degli album, ma causa un rallentamento nel caricamento delle immagini. Abilita solo se hai problemi con la bassa qualità delle copertine</string>
<string name="pref_summary_lock_screen">Usa i comandi di Retro Music nella schermata di blocco</string>
<string name="pref_summary_open_source_licences">Dettagli licenza per il software open source</string>
<string name="pref_summary_round_corners">Arrotonda i bordi dell\'app</string>
<string name="pref_summary_tab_titles">Attiva i titoli delle schede</string>
<string name="pref_summary_toggle_full_screen">Modalità immersiva</string>
<string name="pref_summary_toggle_headset">Inizia la riproduzione musicale quando colleghi le cuffie.</string>
<string name="pref_summary_toggle_volume">Se c\'è spazio nella schermata di riproduzione, attiva i controlli per il volume</string>
<string name="pref_summary_toggle_headset">Inizia la riproduzione subito dopo aver collegato le cuffie</string>
<string name="pref_summary_toggle_shuffle">La modalità casuale viene disattivata quando si riproduce un nuovo elenco di brani</string>
<string name="pref_summary_toggle_volume">Se c\'è spazio sufficiente, mostra i controlli del volume nella schermata in riproduzione</string>
<string name="pref_summary_extra_controls">Aggiungi controlli extra nel mini player</string>
<string name="pref_summary_genre_toggle">Attiva la scheda Genere</string>
<string name="pref_summary_home_banner">Attiva banner nella home</string>
<string name="pref_title_album_art_on_lockscreen">Mostra la copertina dell\'album</string>
<string name="pref_title_tab_text_mode">Modalità titoli schede</string>
<string name="pref_title_album_grid_style">Griglia album</string>
<string name="pref_title_app_shortcuts">Scorciatoie app colorate</string>
<string name="pref_title_audio_ducking">Ridurre il volume con perdita di focalizzazione audio</string>
<string name="pref_title_auto_download_artist_images">Scarica automaticamente immagini dell\'artista</string>
<string name="pref_title_artist_grid_style">Griglia artista</string>
<string name="pref_title_audio_ducking">Riduzione volume con perdita di focalizzazione audio</string>
<string name="pref_title_auto_download_artist_images">Scarica automaticamente immagini artista</string>
<string name="pref_title_blurred_album_art">Copertina dell\'album sfocata</string>
<string name="pref_title_choose_equalizer">Scegli un equalizzatore</string>
<string name="pref_title_classic_notification">Design classico per le notifiche</string>
<string name="pref_title_colored_app">Colore adattivo</string>
<string name="pref_title_colored_notification">Notifica colorata</string>
<string name="pref_title_gapless_playback">Riproduzione senza interruzioni</string>
<string name="pref_title_general_theme">Tema generale</string>
<string name="pref_title_ignore_media_store_artwork">Ignora le copertine Media Store</string>
<string name="pref_title_last_added_interval">"Ultimo intervallo di playlist aggiunto "</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_lock_screen">Controlli a schermo intero</string>
<string name="pref_title_navigation_bar">Barra di navigazione colorata</string>
<string name="pref_title_now_playing_screen_appearance">Aspetto</string>
<string name="pref_title_now_playing_screen_appearance">Tema schermata riproduzione</string>
<string name="pref_title_open_source_licences">Licenze open source</string>
<string name="pref_title_round_corners">Angoli arrotondati</string>
<string name="pref_title_toggle_carousel_effect">Effetto scorrimento</string>
<string name="pref_title_toggle_dominant_color">Colore dominante</string>
<string name="pref_title_toggle_full_screen">Applicazione a schermo intero</string>
<string name="pref_title_toggle_tab_titles">Tab titoli</string>
<string name="pref_title_toggle_toggle_headset">Auto play</string>
<string name="pref_title_toggle_tab_titles">Titoli schede</string>
<string name="pref_title_toggle_toggle_headset">Riproduzione automatica</string>
<string name="pref_title_toggle_toggle_shuffle">Modalità casuale</string>
<string name="pref_title_toggle_volume">Controlli volume</string>
<string name="pref_title_user_info">Informazioni utente</string>
<string name="pref_title_user_info">Info utente</string>
<string name="pref_title_extra_controls">Controlli extra</string>
<string name="pref_title_home_banner">Home banner</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_album_cover_transform">Stile dell\'album in riproduzione</string>
<string name="cascading">Cascata</string>
<string name="primary_color">Colore primario</string>
<string name="primary_color_desc">Il colore primario del tema, bianco di default.</string>
<string name="primary_color_desc">Il colore primario del tema, blu-grigio di default, per ora funziona con colori scuri</string>
<string name="purchase">Acquista</string>
<string name="purchase_summary">* Pensaci prima di acquistare, non chiedere il rimborso.</string>
<string name="queue">Coda</string>
<string name="rate_app">Recensisci l\'app</string>
<string name="rate_on_google_play_summary">Lascia una buona recensione nel Play Store per farci sapere che apprezzi l\'applicazione</string>
<string name="rate_app">Valuta l\'app</string>
<string name="rate_on_google_play_summary">Adori quest\'app? Facci sapere sul Play Store come possiamo renderla ancora migliore</string>
<string name="recent_albums">Album recenti</string>
<string name="recent_artists">Artisti recenti</string>
<string name="remove_action">Rimuovi</string>
<string name="remove_banner_photo">Rimuovi la foto del banner</string>
<string name="remove_cover">Rimuovi copertina</string>
<string name="remove_from_blacklist">Rimuovi dalla blacklist</string>
<string name="remove_song_from_playlist_title">Rimuovi brano dalla playlist</string>
<string name="remove_song_x_from_playlist"><![CDATA[Rimuovere il brano <b>%1$s</b> dalla playlist?]]></string>
<string name="remove_profile_photo">Rimuovi la foto profilo</string>
<string name="remove_song_from_playlist_title">Rimuovi il brano dalla playlist</string>
<string name="remove_song_x_from_playlist"><![CDATA[Rimuovi il brano <b>%1$s</b> dalla playlist?]]></string>
<string name="remove_songs_from_playlist_title">Rimuovi brani dalla playlist</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Rimuovi <b>%1$d</b> brani dalla playlist?]]></string>
<string name="remove_x_songs_from_playlist"><![CDATA[Rimuovi i brani <b>%1$d</b> dalla playlist?]]></string>
<string name="rename_playlist_title">Rinomina playlist</string>
<string name="reset_artist_image">Resetta l\'immagine dell\'artista</string>
<string name="reset_artist_image">Ripristina immagine artista</string>
<string name="restore">Ripristina</string>
<string name="restored_previous_purchase_please_restart">Acquisto precedente ripristinato. Riavvia l\'app per utilizzare tutte le funzionalità.</string>
<string name="restored_previous_purchases">Precedenti acquisti ripristinati.</string>
<string name="restored_previous_purchases">Acquisti precedenti ripristinati.</string>
<string name="restoring_purchase">Ripristino acquisto...</string>
<string name="retro_equalizer">Equalizzatore Retro</string>
<string name="retro_equalizer">Equalizzatore di Retro Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Salva come file</string>
<string name="save_playlists_title">Salva come file</string>
<string name="saved_playlist_to">Playlist salvata in %s.</string>
<string name="saving_changes">Applicando i cambiamenti</string>
<string name="scanned_files">Analizzato %1$d di %2$d file</string>
<string name="saving_changes">Salvataggio modifiche</string>
<string name="scan_media">Scansiona media</string>
<string name="scanned_files">Scansionati %1$d di %2$d file.</string>
<string name="search_hint">Cerca nella tua raccolta...</string>
<string name="set_artist_image">Imposta l\'immagine dell\'artista</string>
<string name="select_all">Seleziona tutto</string>
<string name="select_banner_photo">Seleziona la foto del banner</string>
<string name="set_artist_image">Imposta immagine artista</string>
<string name="shuffle">Casuale</string>
<string name="simple">Semplice</string>
<string name="sleep_timer_canceled">Timer per il sonno cancellato</string>
<string name="sleep_timer_set">Timer per il sonno impostato per %d minuti da adesso.</string>
<string name="sleep_timer_canceled">Timer sonno cancellato.</string>
<string name="sleep_timer_set">Timer sonno impostato per %d minuti da ora.</string>
<string name="social">Social</string>
<string name="song">Brano</string>
<string name="song_duration">Durata della canzone</string>
<string name="song_duration">Durata brano</string>
<string name="songs">Brani</string>
<string name="sort_order">Ordina per</string>
<string name="speech_not_supported">Spiacenti! Il tuo dispositivo non supporta l\'input vocale</string>
<string name="sort_order_a_z">Crescente</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Artista</string>
<string name="sort_order_date">Data</string>
<string name="sort_order_year">Anno</string>
<string name="sort_order_z_a">Decrescente</string>
<string name="speech_not_supported">Il tuo dispositivo non supporta l\'input vocale</string>
<string name="speech_prompt">Cerca nella tua raccolta</string>
<string name="summary_user_info">Mostra il tuo nome sulla schermata principale</string>
<string name="support_development">Supporta lo sviluppo</string>
<string name="summary_user_info">Mostra il tuo nome nella schermata home</string>
<string name="support_development">Sostieni lo sviluppo</string>
<string name="synced_lyrics">Testi sincronizzati</string>
<string name="system_equalizer">Equalizzatore di sistema</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Unisciti al gruppo Telegram per discutere dei bug, dare suggerimenti e molto altro</string>
<string name="thank_you">Grazie!</string>
<string name="the_audio_file">Il file audio</string>
<string name="this_month">Questo mese</string>
@ -280,26 +342,49 @@
<string name="tiny">Piccolo</string>
<string name="title_dashboard">Dashboard</string>
<string name="title_good_afternoon">Buon pomeriggio</string>
<string name="title_good_day">Buon giorno</string>
<string name="title_good_evening">Buona sera</string>
<string name="title_good_morning">Buon mattino</string>
<string name="title_good_night">Buona notte</string>
<string name="title_user_info">Come ti chiami</string>
<string name="title_good_day">Buona giornata</string>
<string name="title_good_evening">Buonasera</string>
<string name="title_good_morning">Buongiorno</string>
<string name="title_good_night">Buonanotte</string>
<string name="title_user_info">Qual è il tuo nome</string>
<string name="today">Oggi</string>
<string name="top_albums">Album migliori</string>
<string name="top_artists">Artisti migliori</string>
<string name="track_hint">"Traccia (2 per traccia 2 oppure 3004 per traccia 4 del CD 3)"</string>
<string name="track_list">Numero della traccia</string>
<string name="track_hint">"Traccia (2 per traccia 2 o 3004 per CD3 traccia 4)"</string>
<string name="track_list">Numero traccia</string>
<string name="translate">Traduci</string>
<string name="unplayable_file">Non posso riprodurre questo brano.</string>
<string name="up_next">Avanti il prossimo</string>
<string name="translate_community">Aiutaci traducendo l\'app nella tua lingua</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Condividi il tuo design con Retro Music</string>
<string name="unplayable_file">Impossibile riprodurre il brano.</string>
<string name="up_next">Prossimo</string>
<string name="update_image">Aggiorna immagine</string>
<string name="updating">Aggiornando...</string>
<string name="updating">Aggiornamento...</string>
<string name="version">Versione</string>
<string name="web_search">Cerca sul web</string>
<string name="virtualizer">Virtualizer</string>
<string name="web_search">Ricerca web</string>
<string name="what_do_you_want_to_share">Cosa vuoi condividere?</string>
<string name="window">Finestra</string>
<string name="x_has_been_set_as_ringtone">Imposta %1$s come suoneria.</string>
<string name="x_has_been_set_as_ringtone">%1$s impostata come suoneria.</string>
<string name="x_selected">%1$d selezionato</string>
<string name="year">Anno</string>
<string name="made_with_love">Made with ❤️ in India</string>
<string name="clear_app_data">Cancella i dati dell\'app</string>
<string name="bug_report_summary">Si è verificato un errore imprevisto, mi dispiace. Se continua a bloccarsi \"Cancella i dati\" dell\'app</string>
<string name="error">Errore</string>
<string name="base_color_theme">Colore base del tema</string>
<string name="now_playing_themes">Più di 9 schermate di riproduzione</string>
<string name="carousal_effect_on_now_playing_screen">Effetto scorrimento sulla schermata di riproduzione</string>
<string name="window_corner_edges">Angoli arrotondati</string>
<string name="pref_title_album_cover_style">Tema copertina dell\'album</string>
<string name="circular">Circolare</string>
<string name="carousal">Baldoria</string>
<string name="now_playing_summary">Personalizza schermata riproduzione</string>
<string name="full_card">Scheda intera</string>
<string name="profile">Profilo</string>
<string name="bio">Bio</string>
<string name="auto">Auto</string>
<string name="labeled">Etichettato</string>
<string name="unlabeled">Senza etichetta</string>
<string name="selected">Selezionato</string>
</resources>

View File

@ -71,7 +71,6 @@
<string name="blacklist">Czarna lista</string>
<string name="blur">Rozmycie</string>
<string name="blur_card">Rozmyta Karta</string>
<string name="buy_retro_music_pro">Kup RetroMusic Pro</string>
<string name="cancel_current_timer">Anuluj aktualny licznik</string>
<string name="card">Karta</string>
<string name="changelog">Lista zmian</string>

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Cor de destaque</string>
<string name="accent_color_desc">A cor de destaque padrão é verde.</string>
<string name="accent_color_desc">A cor de destaque por padrão é verde</string>
<string name="action_about">Sobre</string>
<string name="action_add_to_favorites">Adicionar aos favoritos</string>
<string name="action_add_to_playing_queue">Adicionar à fila de reprodução</string>
<string name="action_add_to_playlist">Adicionar à lista de reprodução...</string>
<string name="action_add_to_playlist">Adicionar à playlist...</string>
<string name="action_clear_playing_queue">Limpar fila de reprodução</string>
<string name="action_clear_playlist">Limpar lista de reprodução</string>
<string name="action_clear_playlist">Limpar playlist</string>
<string name="action_delete">Excluir</string>
<string name="action_delete_from_device">Excluir do dispositivo</string>
<string name="action_details">Detalhes</string>
@ -20,31 +20,31 @@
<string name="action_grid_size_land">Tamanho da grade (horizontal)</string>
<string name="action_next">Próximo</string>
<string name="action_play">Reproduzir</string>
<string name="action_play_next">Próxima</string>
<string name="action_play_next">Reproduzir depois</string>
<string name="action_play_pause">Reproduzir/Pausar</string>
<string name="action_previous">Anterior</string>
<string name="action_remove_from_favorites">Remover dos favoritos</string>
<string name="action_remove_from_playing_queue">Remover da fila de reprodução</string>
<string name="action_remove_from_playlist">Remover da lista de reprodução</string>
<string name="action_remove_from_playlist">Remover da playlist</string>
<string name="action_rename">Renomear</string>
<string name="action_save_playing_queue">Salvar fila de reprodução</string>
<string name="action_scan">Escanear</string>
<string name="action_scan_directory">Diretório de escaneamento</string>
<string name="action_scan_directory">Escanear diretório</string>
<string name="action_search">Pesquisar</string>
<string name="action_set">Começar</string>
<string name="action_set">Iniciar</string>
<string name="action_set_as_ringtone">Definir como toque</string>
<string name="action_set_as_start_directory">Definir como diretório inicial</string>
<string name="action_settings">"Configurações"</string>
<string name="action_share">Compartilhar</string>
<string name="action_shuffle_all">Embaralhar todas</string>
<string name="action_shuffle_playlist">Embaralhar lista de reprodução</string>
<string name="action_shuffle_playlist">Embaralhar playlist</string>
<string name="action_sleep_timer">Temporizador</string>
<string name="action_sort_order">Ordem de classificação</string>
<string name="action_tag_editor">Editor de tags</string>
<string name="adaptive">Adaptável</string>
<string name="add_action">Adicionar</string>
<string name="add_photo">Adicionar foto</string>
<string name="add_playlist_title">"Adicionar à lista de reprodução"</string>
<string name="add_playlist_title">"Adicionar à playlist"</string>
<string name="added_title_to_playing_queue">"Uma música foi adicionada à fila de reprodução"</string>
<string name="added_x_titles_to_playing_queue">Foram adicionadas %1$d músicas na fila de reprodução</string>
<string name="album">Álbum</string>
@ -56,8 +56,8 @@
<string name="app_share">E aí? Teste esse player de música bem legal:
https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">Adicionada por último</string>
<string name="app_shortcut_last_added_short">Adicionada por último</string>
<string name="app_shortcut_last_added_long">Mais recentes</string>
<string name="app_shortcut_last_added_short">Mais recentes</string>
<string name="app_shortcut_shuffle_all_long">Embaralhar todas</string>
<string name="app_shortcut_shuffle_all_short">Embaralhar</string>
<string name="app_shortcut_top_tracks_long">Minhas favoritas</string>
@ -72,47 +72,46 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="audio_settings_summary">Alterar as configurações de som e ajustar os controles do equalizador</string>
<string name="bass_boost">Aumento de graves</string>
<string name="biography">Biografia</string>
<string name="black_theme_name">Apenas Preto</string>
<string name="black_theme_name">Apenas preto</string>
<string name="blacklist">Lista negra</string>
<string name="blur">Desfoque</string>
<string name="blur_card">Cartão Desfocado</string>
<string name="blur">Desfocado</string>
<string name="blur_card">Cartão desfocado</string>
<string name="pref_keep_screen_on_title">Manter a tela ligada</string>
<string name="pref_keep_screen_on_summary">Tenha em mente que ativar este recurso pode afetar a duração da bateria</string>
<string name="pref_blur_amount_title">Quantidade de desfoque</string>
<string name="pref_blur_amount_summary">Quantidade de desfoque aplicado para temas com desfoque, mais baixo é mais rápido.</string>
<string name="buy_retro_music_pro">Comprar Retro Music Pro</string>
<string name="pref_blur_amount_summary">Quantidade de desfoque aplicado aos temas com desfoque, menor é mais rápido</string>
<string name="cancel_current_timer">Cancelar</string>
<string name="card">Cartão</string>
<string name="card_color_style">Cartão Colorido</string>
<string name="card_color_style">Cartão colorido</string>
<string name="card_circular_style">Circular</string>
<string name="image">Imagem</string>
<string name="card_style">Cartão</string>
<string name="cast">Cast</string>
<string name="cast">Transmitir</string>
<string name="changelog">Lista de mudanças</string>
<string name="changelog_summary">Lista de mudanças mantida no Canal no Telegram</string>
<string name="clear_action">Limpar</string>
<string name="clear_blacklist">Limpar lista negra</string>
<string name="clear_playlist_title">Limpar lista de reprodução</string>
<string name="clear_playlist_x"><![CDATA[Limpar a lista de reprodu\u00e7\u00e3o <b>%1$s</b>? Isso n\u00e3o pode ser desfeito!]]></string>
<string name="clear_playlist_title">Limpar playlist</string>
<string name="clear_playlist_x"><![CDATA[Limpar a playlist <b>%1$s</b>? Isso n\u00e3o pode ser desfeito!]]></string>
<string name="close_notification">Fechar</string>
<string name="color">Cor</string>
<string name="color_theme_name">Cor</string>
<string name="colors">Cores</string>
<string name="could_not_create_playlist">N\u00e3o foi poss\u00edvel criar a lista de reprodu\u00e7\u00e3o.</string>
<string name="could_not_download_album_cover">"N\u00e3o foi poss\u00edvel baixar uma capa do \u00e1lbum correspondente."</string>
<string name="could_not_restore_purchase">Não foi possível restaurar a compra.</string>
<string name="could_not_scan_files">Não foi possível escanear %d arquivos.</string>
<string name="could_not_create_playlist">N\u00e3o foi poss\u00edvel criar a playlist</string>
<string name="could_not_download_album_cover">"N\u00e3o foi poss\u00edvel baixar uma capa do \u00e1lbum correspondente"</string>
<string name="could_not_restore_purchase">Não foi possível restaurar a compra</string>
<string name="could_not_scan_files">Não foi possível escanear %d arquivos</string>
<string name="create_action">Criar</string>
<string name="created_playlist_x">A lista de reprodução %1$s foi criada.</string>
<string name="created_playlist_x">A playlist %1$s foi criada</string>
<string name="credit_title">Membros e contribuidores</string>
<string name="currently_listening_to_x_by_x">Ouvindo atualmente %1$s por %2$s.</string>
<string name="dark_theme_name">Meio Escuro</string>
<string name="default_hint">Não há letras</string>
<string name="delete_playlist_title">Excluir lista de reprodução</string>
<string name="delete_playlist_x"><![CDATA[Excluir a lista de reprodução <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Excluir listas de reprodução</string>
<string name="currently_listening_to_x_by_x">Ouvindo atualmente %1$s por %2$s</string>
<string name="dark_theme_name">Meio escuro</string>
<string name="default_hint">Sem letras</string>
<string name="delete_playlist_title">Excluir playlist</string>
<string name="delete_playlist_x"><![CDATA[Excluir a playlist <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Excluir playlists</string>
<string name="delete_song_x"><![CDATA[Excluir a música <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Excluir listas de reprodução <b>%1$d</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Excluir <b>%1$d</b> playlists?]]></string>
<string name="delete_x_songs"><![CDATA[Excluir <b>%1$d</b> músicas?]]></string>
<string name="deleted_x_songs">%1$d músicas foram excluídas</string>
<string name="discord_page">Discord</string>
@ -149,47 +148,47 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="history">Histórico</string>
<string name="home">Início</string>
<string name="image_settings_summary">Alterar as configurações de download das imagens dos artistas</string>
<string name="inserted_x_songs_into_playlist_x">Inseridas %1$d músicas na lista de reprodução %2$s.</string>
<string name="inserted_x_songs_into_playlist_x">Adicionadas %1$d músicas na playlist %2$s</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Compartilhar seu perfil do Retro Music no Instagram.</string>
<string name="instagram_page_summary">Compartilhe seu perfil do Retro Music para mostrá-lo no Instagram</string>
<string name="label_bit_rate">Taxa de bits</string>
<string name="label_file_format">Formato</string>
<string name="label_file_name">Nome do arquivo</string>
<string name="label_file_path">Caminho do arquivo</string>
<string name="label_file_size">Tamanho</string>
<string name="label_sampling_rate">Taxa de amostragem</string>
<string name="label_track_length">Comprimento</string>
<string name="last_added">Adicionado recentemente</string>
<string name="lets_play_something">Vamos reproduzir algo</string>
<string name="label_track_length">Duração</string>
<string name="last_added">Mais recentes</string>
<string name="lets_play_something">Vamos reproduzir alguma música</string>
<string name="library">Biblioteca</string>
<string name="licenses">"Licenças "</string>
<string name="light_theme_name">Claramente Branco</string>
<string name="light_theme_name">Claramente branco</string>
<string name="listing_files">Listando arquivos</string>
<string name="loading_products">Carregando produtos...</string>
<string name="lyrics">Letras</string>
<string name="material">Material</string>
<string name="my_name">Meu Nome</string>
<string name="my_name">Meu nome</string>
<string name="my_top_tracks">Mais tocadas</string>
<string name="never">Nunca</string>
<string name="new_banner_photo">Nova foto no banner</string>
<string name="new_playlist_title">Nova lista de reprodução</string>
<string name="new_playlist_title">Nova playlist</string>
<string name="new_profile_photo">"Nova foto de perfil "</string>
<string name="new_start_directory">%s é o novo diretório inicial</string>
<string name="no_albums">Sem álbuns</string>
<string name="no_artists">Sem artistas</string>
<string name="no_audio_ID">"Reproduza uma música primeiro, e tente novamente"</string>
<string name="no_audio_ID">"Reproduza uma música primeiro e tente novamente"</string>
<string name="no_equalizer">Nenhum equalizador encontrado</string>
<string name="no_genres">Sem gêneros</string>
<string name="no_lyrics_found">Nenhuma letra encontrada</string>
<string name="no_playlists">Sem lista de reprodução</string>
<string name="no_purchase_found">Nenhuma compra encontrada.</string>
<string name="no_playlists">Sem playlists</string>
<string name="no_purchase_found">Nenhuma compra encontrada</string>
<string name="no_results">Sem resultados</string>
<string name="no_songs">Sem músicas</string>
<string name="normal">Normal</string>
<string name="normal_lyrics">Letras normais</string>
<string name="normal_style">Normal</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> não está listado no armazenamento de mídia.]]></string>
<string name="nothing_to_scan">Nada para escanear.</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> não está listado no armazenamento de mídia]]></string>
<string name="nothing_to_scan">Nada para escanear</string>
<string name="notification">Notificação</string>
<string name="notification_settings_summary">Personalizar o estilo de notificação</string>
<string name="now_playing">Reproduzindo agora</string>
@ -199,35 +198,35 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="past_three_months">Últimos 3 meses</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me é uma maneira fácil de me doar dinheiro. Caso você tenha vinculado apenas um cartão de débito ou de crédito a taxa nos EUA é de 2,9% da doação + US $0,30, caso contrário, não há taxa.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">mais</a></string>
<string name="permission_external_storage_denied">Permissão para acessar o armazenamento externo negada.</string>
<string name="permission_external_storage_denied">Permissão para acessar o armazenamento externo negada</string>
<string name="permissions_denied">Permissões negadas</string>
<string name="personalize">Personalizar</string>
<string name="personalize_settings_summary">Personalizar os controles em Reproduzindo agora e na Interface do Usuário</string>
<string name="personalize_settings_summary">Personalizar os controles em Reproduzindo agora e Interface do Usuário</string>
<string name="pick_from_local_storage">Escolha do armazenamento local</string>
<string name="plain">Avião</string>
<string name="playing_notification_description">A notificação de reprodução fornece ações para reprodução/pausa, etc.</string>
<string name="plain">Liso</string>
<string name="playing_notification_description">A notificação de reprodução fornece ações para reprodução/pausa, etc</string>
<string name="playing_notification_name">Notificação de reprodução</string>
<string name="playlist_empty_text">Lista de reprodução vazia</string>
<string name="playlist_is_empty">A lista de reprodução está vazia</string>
<string name="playlist_name_empty">Nome da lista de reprodução</string>
<string name="playlists">Listas de reprodução</string>
<string name="playlist_empty_text">Playlist vazia</string>
<string name="playlist_is_empty">A playlist está vazia</string>
<string name="playlist_name_empty">Nome da playlist</string>
<string name="playlists">Playlists</string>
<string name="pref_header_audio">Áudio</string>
<string name="pref_header_general">Tema</string>
<string name="pref_header_images">Imagens</string>
<string name="pref_header_lockscreen">Tela de bloqueio</string>
<string name="pref_header_playlists">Listas de reprodução</string>
<string name="pref_header_playlists">Playlists</string>
<string name="pref_only_lollipop">"Disponível apenas no Android Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Usar a capa do álbum da música em reprodução como papel de parede na tela de bloqueio</string>
<string name="pref_summary_audio_ducking">Diminuir o volume quando um som do sistema é reproduzido ou uma notificação chega</string>
<string name="pref_summary_blurred_album_art">Desfoca a capa do álbum na tela de bloqueio. Pode causar problemas com aplicativos e widgets de terceiros.</string>
<string name="pref_summary_carousel_effect">Efeito carrossel na imagem do álbum na tela de reprodução. Note que os temas \"Cartão\" e \"Cartão Desfocado\" não funcionarão.</string>
<string name="pref_summary_classic_notification">Usar o design de notificação clássico.</string>
<string name="pref_summary_colored_app">A cor da tela de fundo e dos botões de controle mudam de acordo com a imagem do álbum da tela de reprodução.</string>
<string name="pref_summary_blurred_album_art">Desfocar a capa do álbum na tela de bloqueio. Pode causar problemas com aplicativos e widgets de terceiros</string>
<string name="pref_summary_carousel_effect">Efeito carrossel na imagem do álbum na tela de reprodução. Note que nos temas \"Cartão\" e \"Cartão desfocado\" não funcionará</string>
<string name="pref_summary_classic_notification">Usar o design de notificação clássico</string>
<string name="pref_summary_colored_app">A cor da tela de fundo e dos botões de controle mudam de acordo com a imagem do álbum da tela de reprodução</string>
<string name="pref_summary_colored_app_shortcuts">Colorir os atalhos do aplicativo na cor de destaque. Toda vez que você mudar a cor por favor alterne isso para ter efeito</string>
<string name="pref_summary_colored_navigation_bar">Colore a barra de navegação na cor primária</string>
<string name="pref_summary_colored_notification">"Colore a notifica\u00e7\u00e3o na cor vibrante da capa do \u00e1lbum."</string>
<string name="pref_summary_colored_notification">"Colore a notifica\u00e7\u00e3o com a cor vibrante da capa do \u00e1lbum"</string>
<string name="pref_summary_dominant_color">A cor dominante será escolhida da capa do álbum ou artista</string>
<string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos."</string>
<string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos"</string>
<string name="pref_summary_ignore_media_store_artwork">Pode aumentar a qualidade da capa do álbum, mas diminui a velocidade do carregamento das imagens. Ative isso apenas se você tiver problemas com fotos de baixa resolução</string>
<string name="pref_summary_lock_screen">Usar controles personalizados do Retro Music na tela de bloqueio</string>
<string name="pref_summary_open_source_licences">Detalhes da licença para software de código aberto</string>
@ -235,12 +234,13 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="pref_summary_tab_titles">Ativar títulos para as guias da barra de navegação inferior</string>
<string name="pref_summary_toggle_full_screen">Modo imersivo</string>
<string name="pref_summary_toggle_headset">Comecar a reproduzir imediatamente quando os fones de ouvido forem conectados</string>
<string name="pref_summary_toggle_shuffle">O modo de reprodução aleatória será desativado ao reproduzir uma nova lista de músicas</string>
<string name="pref_summary_toggle_shuffle">O modo aleatório será desativado ao reproduzir uma nova lista de músicas</string>
<string name="pref_summary_toggle_volume">Se houver espaço suficiente, mostrar os controles de volume na tela e reprodução</string>
<string name="pref_summary_extra_controls">Adicionar botões extras para o mini reprodutor</string>
<string name="pref_summary_genre_toggle">Exibir a guia de gêneros</string>
<string name="pref_summary_home_banner">Exibir o banner na tela inicial</string>
<string name="pref_title_album_art_on_lockscreen">Mostrar capa do álbum</string>
<string name="pref_title_tab_text_mode">Modo do título das guias</string>
<string name="pref_title_album_grid_style">Grade do álbum</string>
<string name="pref_title_app_shortcuts">Atalhos de aplicativos colorido</string>
<string name="pref_title_artist_grid_style">Grade do artista</string>
@ -254,7 +254,7 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="pref_title_gapless_playback">Reprodução contínua</string>
<string name="pref_title_general_theme">Tema do aplicativo</string>
<string name="pref_title_ignore_media_store_artwork">Ignorar capas do Armazenamento de Mídia</string>
<string name="pref_title_last_added_interval">Intervalo da Lista de reprodução \"Últimos adicionados\"</string>
<string name="pref_title_last_added_interval">Intervalo da playlist \"Mais recentes\"</string>
<string name="pref_title_lock_screen">Controles em tela cheia</string>
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
<string name="pref_title_now_playing_screen_appearance">Tema da tela \"Reproduzindo agora\"</string>
@ -264,20 +264,23 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="pref_title_toggle_dominant_color">Cor dominante</string>
<string name="pref_title_toggle_full_screen">Aplicativo em tela cheia</string>
<string name="pref_title_toggle_tab_titles">Títulos das guias</string>
<string name="pref_title_toggle_toggle_headset">Reprodução automática</string>
<string name="pref_title_toggle_toggle_headset">Execuções automática</string>
<string name="pref_title_toggle_toggle_shuffle">Modo aleatório</string>
<string name="pref_title_toggle_volume">Controles de volume</string>
<string name="pref_title_toggle_volume">Controles do volume</string>
<string name="pref_title_user_info">Informação de usuário</string>
<string name="pref_title_extra_controls">Controles extras</string>
<string name="pref_title_home_banner">Banner da tela inicial</string>
<string name="pref_title_home_banner">Banner na tela inicial</string>
<string name="pref_title_genre_toggle">Mostrar a guia de gêneros</string>
<string name="pref_title_home_artist_grid_style">Grade de artista no início</string>
<string name="pref_title_album_cover_transform">Estilo de capa na tela de reprodução</string>
<string name="cascading">Cascata</string>
<string name="primary_color">Cor primária</string>
<string name="primary_color_desc">A cor principal do tema, por padrão é cinza azulado, pois agora funciona com cores escuras</string>
<string name="primary_color_desc">A cor principal do tema por padrão é cinza azulado, por enquanto funciona com cores escuras</string>
<string name="purchase">Comprar</string>
<string name="purchase_summary">*Pense antes de comprar, não pergunte por reembolso.</string>
<string name="purchase_summary">*Pense antes de comprar, não pergunte por reembolso!</string>
<string name="queue">Fila</string>
<string name="rate_app">Avaliar o aplicativo</string>
<string name="rate_on_google_play_summary">Adorou este aplicativo? Informe-nos na Google Play Score como podemos melhorar o aplicativo</string>
<string name="rate_on_google_play_summary">Adorou este aplicativo? Informe-nos na Google Play Store como podemos melhorar o aplicativo</string>
<string name="recent_albums">Álbuns recentes</string>
<string name="recent_artists">Artistas recentes</string>
<string name="remove_action">Remover</string>
@ -285,33 +288,33 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="remove_cover">Remover capa</string>
<string name="remove_from_blacklist">Remover da lista negra</string>
<string name="remove_profile_photo">Remover foto do perfil</string>
<string name="remove_song_from_playlist_title">Remover música da lista de reprodução</string>
<string name="remove_song_x_from_playlist"><![CDATA[Remover a música <b>%1$s</b> da lista de reprodução?]]></string>
<string name="remove_songs_from_playlist_title">Remover músicas da lista de reprodução</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Remover <b>%1$d</b> músicas da lista de reprodução?]]></string>
<string name="rename_playlist_title">Renomear lista de reprodução</string>
<string name="reset_artist_image">Resetar a imagem do artista</string>
<string name="remove_song_from_playlist_title">Remover música da playlist</string>
<string name="remove_song_x_from_playlist"><![CDATA[Remover a música <b>%1$s</b> da playlist?]]></string>
<string name="remove_songs_from_playlist_title">Remover músicas da playlist</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Remover <b>%1$d</b> músicas da playlist?]]></string>
<string name="rename_playlist_title">Renomear playlist</string>
<string name="reset_artist_image">Restaurar imagem do artista</string>
<string name="restore">Restaurar</string>
<string name="restored_previous_purchase_please_restart">Compra anterior foi restaurada. Por favor, reinicie o aplicativo para fazer uso de todos os recursos.</string>
<string name="restored_previous_purchases">Compra anterior foi restaurada.</string>
<string name="restoring_purchase">Restaurando licença...</string>
<string name="restored_previous_purchase_please_restart">A compra anterior foi restaurada. Por favor, reinicie o aplicativo para fazer uso de todos os recursos</string>
<string name="restored_previous_purchases">Compra anterior foi restaurada</string>
<string name="restoring_purchase">Restaurando compra...</string>
<string name="retro_equalizer">Equalizador do Retro Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Salvar como arquivo</string>
<string name="save_playlists_title">Salvar como arquivos</string>
<string name="saved_playlist_to">Lista de reprodução salva para %s.</string>
<string name="saved_playlist_to">Playlist salva para %s</string>
<string name="saving_changes">Salvando alterações</string>
<string name="scan_media">Escanear mídia</string>
<string name="scanned_files">Escaneamento %1$d dos %2$d arquivos.</string>
<string name="search_hint">Pesquise sua biblioteca...</string>
<string name="scanned_files">Escaneados %1$d dos %2$d arquivos</string>
<string name="search_hint">Pesquisar na sua biblioteca</string>
<string name="select_all">Selecionar tudo</string>
<string name="select_banner_photo">Definir foto do banner</string>
<string name="set_artist_image">Definir imagem do artista</string>
<string name="shuffle">Aleatório</string>
<string name="simple">Simples</string>
<string name="sleep_timer_canceled">Temporizador cancelado.</string>
<string name="sleep_timer_set">Temporizador definido para %d minutos a partir de agora.</string>
<string name="sleep_timer_canceled">Temporizador cancelado</string>
<string name="sleep_timer_set">Temporizador definido para %d minutos a partir de agora</string>
<string name="social">Social</string>
<string name="song">Música</string>
<string name="song_duration">Duração da música</string>
@ -341,8 +344,8 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="title_dashboard">Painel de controle</string>
<string name="title_good_afternoon">Boa tarde</string>
<string name="title_good_day">Bom dia</string>
<string name="title_good_evening">Boa tarde</string>
<string name="title_good_morning">Boa manhã</string>
<string name="title_good_evening">Boa noite</string>
<string name="title_good_morning">Bom dia</string>
<string name="title_good_night">Boa noite</string>
<string name="title_user_info">Qual o seu nome?</string>
<string name="today">Hoje</string>
@ -352,10 +355,10 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="track_list">Número da música</string>
<string name="translate">Traduzir</string>
<string name="translate_community">Ajude-nos a traduzir o aplicativo para seu idioma</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Compartilhe seu design com o Retro Music!</string>
<string name="unplayable_file">N\u00e3o foi poss\u00edvel reproduzir esta m\u00fasica.</string>
<string name="up_next">Próxima</string>
<string name="twitter_page">"Twitter "</string>
<string name="twitter_page_summary">Compartilhe seu design com o Retro Music</string>
<string name="unplayable_file">N\u00e3o foi poss\u00edvel reproduzir esta m\u00fasica</string>
<string name="up_next">A seguir</string>
<string name="update_image">Atualizar imagem</string>
<string name="updating">Atualizando...</string>
<string name="version">Versão</string>
@ -363,8 +366,8 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="web_search">Pesquisar na internet</string>
<string name="what_do_you_want_to_share">O que você quer compartilhar?</string>
<string name="window">Janela</string>
<string name="x_has_been_set_as_ringtone">Selecionar %1$s como seu toque.</string>
<string name="x_selected">%1$d selecionado.</string>
<string name="x_has_been_set_as_ringtone">Definir %1$s como seu toque</string>
<string name="x_selected">%1$d selecionado</string>
<string name="year">Ano</string>
<string name="made_with_love">Feito com ❤️ na Índia</string>
<string name="clear_app_data">Limpar dados do aplicativo</string>
@ -381,4 +384,8 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="full_card">Cartão cheio</string>
<string name="profile">Perfil</string>
<string name="bio">Bibliografia</string>
<string name="auto">Automático</string>
<string name="labeled">Rotulado</string>
<string name="unlabeled">Não rotulado</string>
<string name="selected">Selecionado</string>
</resources>

View File

@ -1,121 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Основной цвет</string>
<string name="accent_color_desc">Второстепенный цвет темы, по умолчанию - зелёный</string>
<string name="action_about">О приложении</string>
<string name="action_add_to_favorites">Добавить в избранное</string>
<string name="action_add_to_playing_queue">Добавить в очередь воспроизведения</string>
<string name="action_add_to_playlist">В плейлист...</string>
<string name="accent_color_desc">По умолчанию, основной цвет зеленовато-голубоватый.</string>
<string name="action_about">О программe</string>
<string name="action_add_to_favorites">В избранное</string>
<string name="action_add_to_playing_queue">"Добавить в очередь "</string>
<string name="action_add_to_playlist">Добавить в плейлист</string>
<string name="action_clear_playing_queue">Очистить очередь</string>
<string name="action_clear_playlist">Очистить плейлист</string>
<string name="action_delete">Удалить</string>
<string name="action_delete_from_device">"Удалить с устройства "</string>
<string name="action_details">Информация о файле</string>
<string name="action_delete_from_device">Удалить из устройства</string>
<string name="action_details">Детали</string>
<string name="action_go_to_album">Перейти к альбому</string>
<string name="action_go_to_artist">Перейти к исполнителю</string>
<string name="action_go_to_start_directory">Перейти к началу каталога</string>
<string name="action_grant">Предоставить</string>
<string name="action_go_to_genre">Перейти к жанру</string>
<string name="action_go_to_start_directory">В начало</string>
<string name="action_grant">Пожертвование</string>
<string name="action_grid_size">Размер сетки</string>
<string name="action_grid_size_land">Размер сетки (ландшафтный)</string>
<string name="action_grid_size_land">Размер сетки (горизонтальной)</string>
<string name="action_next">Следующий</string>
<string name="action_play">Воспроизвести</string>
<string name="action_play_next">Воспроизвести следующим</string>
<string name="action_play_pause">Воспроизвести/Пауза</string>
<string name="action_previous">Предыдущий</string>
<string name="action_play_pause">Воспроизведение/Пауза</string>
<string name="action_previous">Предыдуший</string>
<string name="action_remove_from_favorites">Удалить из избранного</string>
<string name="action_remove_from_playing_queue">Удалить из очередь воспроизведения</string>
<string name="action_remove_from_playing_queue">Удалить из очереди</string>
<string name="action_remove_from_playlist">Удалить из плейлиста</string>
<string name="action_rename">Переименовать</string>
<string name="action_save_playing_queue">Сохранить эту очередь</string>
<string name="action_save_playing_queue">Сохранить очередь</string>
<string name="action_scan">Сканировать</string>
<string name="action_search">Поиск</string>
<string name="action_set">Задать</string>
<string name="action_set_as_ringtone">На рингтон</string>
<string name="action_set_as_start_directory">Установить как домашний каталог</string>
<string name="action_scan_directory">Сканировать каталог</string>
<string name="action_search">Искать</string>
<string name="action_set">Запустить</string>
<string name="action_set_as_ringtone">Задать в качества рингтона</string>
<string name="action_set_as_start_directory">Установить начальной директорией</string>
<string name="action_settings">"Настройки"</string>
<string name="action_share">Поделиться</string>
<string name="action_shuffle_all">Перемешать все</string>
<string name="action_shuffle_playlist">Перемешать плейлист</string>
<string name="action_shuffle_all">Случайный порядок для всех песен</string>
<string name="action_shuffle_playlist">Случайный плейлист</string>
<string name="action_sleep_timer">Таймер сна</string>
<string name="action_sort_order">Сортировка</string>
<string name="action_tag_editor">Редактор тегов</string>
<string name="adaptive">Адаптивный</string>
<string name="add_action">Добавить</string>
<string name="add_photo">Добавить \nфото</string>
<string name="add_playlist_title">"Добавить в плейлист"</string>
<string name="added_title_to_playing_queue">"1 трек добавлен в очередь воспроизведения"</string>
<string name="added_x_titles_to_playing_queue">Добавлено в очередь: %1$d</string>
<string name="added_title_to_playing_queue">"В очередь добавлен 1 трек"</string>
<string name="added_x_titles_to_playing_queue">В очередь добавлено %1$d треков.</string>
<string name="album">Альбом</string>
<string name="album_artist">Исполнитель альбома</string>
<string name="album_or_artist_empty">Название или исполнитель отсутствуют</string>
<string name="album_or_artist_empty">Трек или альбом отсутствуют.</string>
<string name="albums">Альбомы</string>
<!-- Android Auto -->
<string name="always">Всегда</string>
<string name="app_share">Хей! Попробуй этот клёвый музыкальный плеер тут:
https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">Эй, попробуй этот крутой музыкальный плеер на: https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">\@строка/последние_добавленные</string>
<string name="app_shortcut_last_added_short">Недавно добавлено</string>
<string name="app_shortcut_last_added_long">Последние добавленные</string>
<string name="app_shortcut_last_added_short">Последние добавленные</string>
<string name="app_shortcut_shuffle_all_long">Перемешать все</string>
<string name="app_shortcut_shuffle_all_short">Перемешать</string>
<string name="app_shortcut_top_tracks_long">Мои лучшие треки</string>
<string name="app_shortcut_top_tracks_short">Лучшие треки</string>
<string name="app_widget_big_name">Большой</string>
<string name="app_shortcut_top_tracks_long">Мои любимые треки</string>
<string name="app_shortcut_top_tracks_short">Любимые треки</string>
<string name="app_widget_big_name">Retro music - Крупный</string>
<string name="app_widget_card_name">Retro music - Карточка</string>
<string name="app_widget_classic_name">Классика</string>
<string name="app_widget_small_name">Маленький</string>
<string name="app_widget_classic_name">Retro music - Классический</string>
<string name="app_widget_small_name">Retro music - Маленький</string>
<string name="artist">Исполнитель</string>
<string name="artists">Исполнители</string>
<string name="audio_focus_denied">Аудио фокус отключен</string>
<string name="audio_settings_summary">Регулировка звука и эквалайзер</string>
<string name="audio_focus_denied">Фокус на аудио отключен.</string>
<string name="audio_settings_summary">Отрегулировать настройки звука и эквалайзера</string>
<string name="bass_boost">Усиление баса</string>
<string name="biography">Биография</string>
<string name="black_theme_name">Чёрная</string>
<string name="blacklist">Исключения</string>
<string name="blur">Размытая</string>
<string name="black_theme_name">Только черный</string>
<string name="blacklist">Черный список</string>
<string name="blur">Размытие</string>
<string name="blur_card">Размытая карточка</string>
<string name="buy_retro_music_pro">Купить RetroMusic Pro</string>
<string name="cancel_current_timer">Отменить текущий таймер</string>
<string name="pref_keep_screen_on_title">Оставить экран включенным</string>
<string name="pref_keep_screen_on_summary">Имейте в виду, что включение этой функции может повлиять на заряд батареи</string>
<string name="pref_blur_amount_title">Размытие</string>
<string name="pref_blur_amount_summary">Количество размытия, применяемое для размытых тем, чем ниже эта опция, тем быстрее работает приложение</string>
<string name="cancel_current_timer">Отменить</string>
<string name="card">Карточка</string>
<string name="card_color_style">Цветная карточка</string>
<string name="card_circular_style">Круговой</string>
<string name="image">Изображение</string>
<string name="card_style">Карточка</string>
<string name="cast">Передать на устройство</string>
<string name="changelog">Список изменений</string>
<string name="changelog_summary">Список изменений в Telegram-канале</string>
<string name="changelog_summary">Список изменений хранится на канале Telegram</string>
<string name="clear_action">Очистить</string>
<string name="clear_blacklist">Очистить исключения</string>
<string name="clear_blacklist">Очистить черный список</string>
<string name="clear_playlist_title">Очистить плейлист</string>
<string name="clear_playlist_x"><![CDATA[\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043f\u043b\u0435\u0439\u043b\u0438\u0441\u0442 <b>%1$s</b>? \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0435\u043b\u044c\u0437\u044f!]]></string>
<string name="clear_playlist_x"><![CDATA[\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043f\u043b\u0435\u0439\u043b\u0438\u0441\u0442 <b>%1$s</b>? \u042d\u0442\u043e \u043d\u0435\u043b\u044c\u0437\u044f \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c!]]></string>
<string name="close_notification">Закрыть</string>
<string name="color">Цвет</string>
<string name="color_theme_name">Цвет</string>
<string name="colors">Цвета</string>
<string name="could_not_create_playlist">\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043b\u0435\u0439\u043b\u0438\u0441\u0442.</string>
<string name="could_not_download_album_cover">"\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u043e\u0431\u043b\u043e\u0436\u043a\u0443 \u0430\u043b\u044c\u0431\u043e\u043c\u0430"</string>
<string name="could_not_restore_purchase">Невозможно восстановить покупку.</string>
<string name="could_not_scan_files">Не удалось сканировать %d файлы.</string>
<string name="could_not_download_album_cover">"\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043a\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0443\u044e \u043e\u0431\u043b\u043e\u0436\u043a\u0430 \u0430\u043b\u044c\u0431\u043e\u043c\u0430."</string>
<string name="could_not_restore_purchase">Не удалось восстановить покупку.</string>
<string name="could_not_scan_files">Не удалось отсканировать %d файлов.</string>
<string name="create_action">Создать</string>
<string name="created_playlist_x">Создан плейлист %1$s</string>
<string name="currently_listening_to_x_by_x">Сейчас играет %1$s от %2$s</string>
<string name="dark_theme_name">Тёмная</string>
<string name="default_hint">Нет слов</string>
<string name="created_playlist_x">Создан плейлист %1$s.</string>
<string name="credit_title">Участники и помощники</string>
<string name="currently_listening_to_x_by_x">Сейчас играет %1$s от %2$s.</string>
<string name="dark_theme_name">Типа черный</string>
<string name="default_hint">Нет текста</string>
<string name="delete_playlist_title">Удалить плейлист</string>
<string name="delete_playlist_x"><![CDATA[Удалить плейлист <b>%1$s</b>?]]></string>
<string name="delete_playlists_title">Удалить плейлисты</string>
<string name="delete_song_x"><![CDATA[Удалить песню <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Удалить плейлисты <b>%1$d</b>?]]></string>
<string name="delete_x_songs"><![CDATA[Удалить песни <b>%1$d</b>?]]></string>
<string name="deleted_x_songs">Удалено %1$d песен</string>
<string name="do_you_want_to_clear_the_blacklist">Вы хотите очистить исключения?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Вы действительно хотите убрать <b>%1$s</b> из исключений?]]></string>
<string name="donate">Дать копеечку</string>
<string name="donate_summary">Если вы думаете, что я не зря поработал, оставьте мне пару долларов здесь.</string>
<string name="donation_header">Купи мне</string>
<string name="download_from_last_fm">Скачать с Last.fm</string>
<string name="delete_song_x"><![CDATA[Удалить трек <b>%1$s</b>?]]></string>
<string name="delete_x_playlists"><![CDATA[Удалить <b>%1$d</b> плейлистов?]]></string>
<string name="delete_x_songs"><![CDATA[Удалить <b>%1$d</b> треков?]]></string>
<string name="deleted_x_songs">Удалено %1$d треков.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Присоединяйтесь к серверу Discord, чтобы следить за последними новостями</string>
<string name="do_you_want_to_clear_the_blacklist">Хотите очистить черный список?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Хотите удалить <b>%1$s</b> из черного списка?]]></string>
<string name="donate">Пожертвовать</string>
<string name="donate_summary">Если вы считаете, что я заслуживаю награды за свою работу, можете отправить мне несколько долларов здесь.</string>
<string name="donation_header">Купить мне:</string>
<string name="download_from_last_fm">Загрузить с Last.fm</string>
<string name="edit_cover">Изменить обложку</string>
<string name="empty">Пусто</string>
<string name="equalizer">Эквалайзер</string>
<string name="favorites">Избранные</string>
<string name="flat">Плоская</string>
<string name="equalizer">Эквадайзер</string>
<string name="faq">ЧаВО</string>
<string name="favorites">Избранное</string>
<string name="flat">Плоский</string>
<string name="folders">Папки</string>
<string name="for_you">Для вас</string>
<string name="full">Обильная</string>
<string name="general_settings_summary">Поменять все цвета приложения</string>
<string name="general_settings_title">Внешний вид и ощущения</string>
<string name="full">Полный</string>
<string name="general_settings_summary">Изменить тему и цвета приложения</string>
<string name="general_settings_title">Смотри и чувствуй</string>
<string name="genre">Жанр</string>
<string name="genres">Жанры</string>
<string name="git_hub_summary">Развивай проект на GitHub</string>
<string name="google_plus_community">Присоединяйся к сообществу Google Plus, где ты можешь попросить о помощи или следить за обновлениями Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
@ -126,181 +146,246 @@ https://play.google.com/store/apps/details?id=%s</string>
<string name="grid_size_8">8</string>
<string name="history">История</string>
<string name="home">Главная</string>
<string name="inserted_x_songs_into_playlist_x">Вложено %1$d песен в список воспроизведения %2$s.</string>
<string name="image_settings_summary">Изменение настроек загрузки изображения артиста</string>
<string name="inserted_x_songs_into_playlist_x">В плейлист %2$s внесено %1$d песен.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Поделитесь своим обзором на приложение Retro Music в Instagram</string>
<string name="label_bit_rate">Битрейт</string>
<string name="label_file_format">Формат</string>
<string name="label_file_name">Имя файла</string>
<string name="label_file_path">Путь к файлу</string>
<string name="label_file_path">Расположение файла</string>
<string name="label_file_size">Размер</string>
<string name="label_sampling_rate">Частота дискретизации</string>
<string name="label_track_length">Длина</string>
<string name="last_added">Недавно добавлено</string>
<string name="lets_play_something">Давайте послушаем что-нибудь</string>
<string name="last_added">Последние добавленные</string>
<string name="lets_play_something">Давайте послушаем немного музыки</string>
<string name="library">Библиотека</string>
<string name="licenses">Лицензии</string>
<string name="light_theme_name">Светлая</string>
<string name="light_theme_name">Чисто белый</string>
<string name="listing_files">Список файлов</string>
<string name="loading_products">Загрузка продуктов...</string>
<string name="lyrics">Слова</string>
<string name="loading_products">Загрузка товаров...</string>
<string name="lyrics">Текст</string>
<string name="material">Материальный</string>
<string name="my_name">Моё имя</string>
<string name="my_top_tracks">Мои лучшие треки</string>
<string name="my_top_tracks">Любимые треки</string>
<string name="never">Никогда</string>
<string name="new_banner_photo">Новая фото баннера</string>
<string name="new_playlist_title">Новый плейлист</string>
<string name="new_start_directory">%s - это новая начальная папка</string>
<string name="no_albums">Нет альбомов</string>
<string name="no_artists">Нет исполнителей</string>
<string name="no_audio_ID">"Сначала воспроизведите песню, затем повторите попытку."</string>
<string name="new_profile_photo">Новое фото профиля</string>
<string name="new_start_directory">%s новая стартовая директория.</string>
<string name="no_albums">Альбомы отсутствуют</string>
<string name="no_artists">Исполнители отсутствуют</string>
<string name="no_audio_ID">"Сначала проиграйте песню, затем попробуйте заново."</string>
<string name="no_equalizer">Эквалайзер не найден.</string>
<string name="no_genres">Жанры отсутствуют</string>
<string name="no_lyrics_found">Не найдены слова песни</string>
<string name="no_lyrics_found">Текст отсутствует</string>
<string name="no_playlists">Плейлисты отсутствуют</string>
<string name="no_purchase_found">Покупка не найдена.</string>
<string name="no_results">Безрезультатно</string>
<string name="no_purchase_found">Покупки отсутствуют.</string>
<string name="no_results">Нет результатов</string>
<string name="no_songs">Нет песен</string>
<string name="normal">Основные</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> не указан в хранилище мультимедиа]]></string>
<string name="nothing_to_scan">Нечего сканировать</string>
<string name="normal">Обычный</string>
<string name="normal_lyrics">Обычный текст</string>
<string name="normal_style">Нормальный</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> не найден в media store.]]></string>
<string name="nothing_to_scan">Нечего сканировать.</string>
<string name="notification">Уведомления</string>
<string name="notification_settings_summary">Настроить тему уведомлений</string>
<string name="notification_settings_summary">Настроить стиль уведомлений</string>
<string name="now_playing">Сейчас играет</string>
<string name="now_playing_queue">Очередь</string>
<string name="now_playing_queue">Очередь в \"Сейчас играет\"</string>
<string name="only_on_wifi">Только по Wi-Fi</string>
<string name="others">Ещё</string>
<string name="past_three_months">За последние 3 месяца</string>
<string name="others">Другое</string>
<string name="past_three_months">Последние 3 месяца</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me — простой способ пожертвовать нам деньги. При переводе с банковской карты через PayPal, комиссия в России составляет от 2,9% + 10 руб. до 3,9% + 10 руб. от отправляемой суммы, в противном случае платёж не проходит. <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">Подробнее</a></string>
<string name="permission_external_storage_denied">Нет разрешения на доступ к внешнему хранилищу.</string>
<string name="permissions_denied">Нет разрешений.</string>
<string name="paypal_summary">PayPal.me - это простой способ пожертвовать мне деньги. Если у вас привязаны только дебетовая или кредитная карта, то плата в США составит 2,9% от пожертвования + 0,30 доллара. В противном случае плата не взимается.<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">подробнее</a></string>
<string name="permission_external_storage_denied">Разрешение для доступа у внешнему хранилищу не получено.</string>
<string name="permissions_denied">Разрешения не получены.</string>
<string name="personalize">Персонализировать</string>
<string name="personalize_settings_summary">Отредактировать ваш текущий экран проигрывания и интерфейс</string>
<string name="pick_from_local_storage">Из локального хранилища</string>
<string name="plain">Гладкая</string>
<string name="playing_notification_description">Уведомление предоставляет действия для воспроизведения/паузы и т.д.</string>
<string name="playing_notification_name">Проигрываемое уведомление</string>
<string name="personalize_settings_summary">Настройте управление экрана текущего воспроизведения и интерфейса</string>
<string name="pick_from_local_storage">Взять из хранилища</string>
<string name="plain">Простой</string>
<string name="playing_notification_description">Уведомление о песне предоставляет действия для воспроизведения / паузы и т.д.</string>
<string name="playing_notification_name">Уведомления воспроизведения</string>
<string name="playlist_empty_text">Пустой плейлист</string>
<string name="playlist_is_empty">Плейлист пуст</string>
<string name="playlist_name_empty">Имя плейлиста</string>
<string name="playlist_name_empty">Название плейлиста</string>
<string name="playlists">Плейлисты</string>
<string name="pref_header_audio">Аудио</string>
<string name="pref_header_general">Основная</string>
<string name="pref_header_general">Тема</string>
<string name="pref_header_images">Изображения</string>
<string name="pref_header_lockscreen">Экран блокировки</string>
<string name="pref_header_playlists">Плейлисты</string>
<string name="pref_only_lollipop">"Доступно только на Android L и выше"</string>
<string name="pref_summary_album_art_on_lockscreen">Использует текущую обложку альбома в качестве обоев экрана.</string>
<string name="pref_summary_audio_ducking">Уведомления, навигация и т.д.</string>
<string name="pref_summary_blurred_album_art">Размывает обложку альбома на заблокированном экране. Может вызвать проблемы со сторонними приложениями и виджетами.</string>
<string name="pref_summary_carousel_effect">Эффект карусели на обложке в экране проигрывания. Учтите, что темы Карточка и Размытая не будут работать</string>
<string name="pref_only_lollipop">"Доступно только на Lollipop."</string>
<string name="pref_summary_album_art_on_lockscreen">Использовать обложку альбома текущей песни в качестве обоев на экране блокировки.</string>
<string name="pref_summary_audio_ducking">Снизить громкость воспроизведения когда приходить звуковое уве</string>
<string name="pref_summary_blurred_album_art">Размыть обложку альбома на экране блокировки. Может вызывать проблемы со сторонними приложениями и виджетами.</string>
<string name="pref_summary_carousel_effect">Эффект карусели для обложек альбома на экране текущего воспроизведения. Учтите, что темы \"Карточка\" и \"Размытая карточка\" не будут работать.</string>
<string name="pref_summary_classic_notification">Использовать классический дизайн уведомлений.</string>
<string name="pref_summary_colored_app">Фон и кнопка управления на экране проигрывания меняют цвета под обложку альбома</string>
<string name="pref_summary_colored_app_shortcuts">Цвета ярлыков приложений в второстепенном цвете. Каждый раз, когда меняете цвет, переключайте это действие</string>
<string name="pref_summary_colored_navigation_bar">Цвета на панели навигации в основном цвете.</string>
<string name="pref_summary_colored_notification">"\u0426\u0432\u0435\u0442\u0430: \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u0430\u043b\u044c\u0431\u043e\u043c\u0435 \u043e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u044f\u0440\u043a\u0438\u0439 \u0446\u0432\u0435\u0442"</string>
<string name="pref_summary_dominant_color">Самый преобладающий цвет будет выбран в качестве обложки альбома или исполнителя</string>
<string name="pref_summary_colored_app">Цвет кнопок фона и кнопок управления изменяется в соответствии с обложкой альбома с экрана воспроизведения</string>
<string name="pref_summary_colored_app_shortcuts">Окрашивает ярлыки в главный цвет (Accent). Каждый раз, когда вы меняете цвет, вкл-выкл эту настройку, чтобы изменение вступило в силу</string>
<string name="pref_summary_colored_navigation_bar">Окрашивает панель навигации в главный цвет</string>
<string name="pref_summary_colored_notification">"\u041e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u044f\u0440\u043a\u0438\u0439 \u0446\u0432\u0435\u0442 \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430"</string>
<string name="pref_summary_dominant_color">Наиболее доминирующий цвет будет выбран из обложки альбома или исполнителя</string>
<string name="pref_summary_gapless_playback">"Может вызвать проблемы с воспроизведением на некоторых устройствах."</string>
<string name="pref_summary_ignore_media_store_artwork">Может повысить качество обложки альбома, но приводит к более медленному времени загрузки изображения. Включите это только в том случае, если у вас проблемы с картинками с низким разрешением.</string>
<string name="pref_summary_lock_screen">Элементы управления на экране блокировки от Retro Music</string>
<string name="pref_summary_open_source_licences">Сведения о лицензии для ПО с открытым исходным кодом</string>
<string name="pref_summary_round_corners">Скруглённые края для окна, обложки альбома и т.д.</string>
<string name="pref_summary_tab_titles">Отображение названий вкладок в нижней части экрана</string>
<string name="pref_summary_toggle_full_screen">Режим погружения</string>
<string name="pref_summary_toggle_headset">Начать воспроизведение при подключении наушников</string>
<string name="pref_summary_toggle_volume">Показывает переключатели громкости если есть свободное место на экране воспроизведения</string>
<string name="pref_summary_ignore_media_store_artwork">Может повысить качество обложки альбома, но приведет к более медленной загрузки изображения. Включите это только в том случае, если у вас есть картинки с низким разрешением</string>
<string name="pref_summary_lock_screen">Используйте экран блокировки Retro Music</string>
<string name="pref_summary_open_source_licences">Сведения о лицензии для программного обеспечения с открытым исходным кодом</string>
<string name="pref_summary_round_corners">Закруглить края в приложении</string>
<string name="pref_summary_tab_titles">Включить заголовки для вкладок нижней панели навигации</string>
<string name="pref_summary_toggle_full_screen">Полноэкранный режим</string>
<string name="pref_summary_toggle_headset">Начать воспроизведение музыки сразу после подключения наушников</string>
<string name="pref_summary_toggle_shuffle">Режим перемешивания выключится при проигрывании нового списка треков</string>
<string name="pref_summary_toggle_volume">Если доступно достаточно места, показывать управление громкостью на экране воспроизведения</string>
<string name="pref_summary_extra_controls">Добавить дополнительные элементы управления для мини-плеера</string>
<string name="pref_summary_genre_toggle">Включить вкладку жанр</string>
<string name="pref_summary_home_banner">Включить кнопку Домой</string>
<string name="pref_title_album_art_on_lockscreen">Показать обложку альбома</string>
<string name="pref_title_app_shortcuts">Цветные ярлыки</string>
<string name="pref_title_audio_ducking">Заглушать при потере фокуса</string>
<string name="pref_title_auto_download_artist_images">Автоматически скачивать изображения исполнителя</string>
<string name="pref_title_tab_text_mode">Название кнопок</string>
<string name="pref_title_album_grid_style">Сетка альбомов</string>
<string name="pref_title_app_shortcuts">Цветные шорткаты</string>
<string name="pref_title_artist_grid_style">Сетка исполнителей</string>
<string name="pref_title_audio_ducking">Уменьшить громкость при потере фокуса</string>
<string name="pref_title_auto_download_artist_images">Автозагрузка изображений исполнителя</string>
<string name="pref_title_blurred_album_art">Размытие обложки альбома</string>
<string name="pref_title_classic_notification">Классический стиль уведомлений</string>
<string name="pref_title_choose_equalizer">Выбрать эквалайзер</string>
<string name="pref_title_classic_notification">Классический дизайн уведомлений</string>
<string name="pref_title_colored_app">Адаптивный цвет</string>
<string name="pref_title_colored_notification">Цветное уведомление</string>
<string name="pref_title_gapless_playback">Непрерывное воспроизведение</string>
<string name="pref_title_general_theme">Основная тема</string>
<string name="pref_title_ignore_media_store_artwork">Игнорировать обложки из хранилища мультимедиа</string>
<string name="pref_title_last_added_interval">Интервал последних добавленных треков</string>
<string name="pref_title_lock_screen">Полноэкранный режим</string>
<string name="pref_title_gapless_playback">Беспроблемное воспроизведение</string>
<string name="pref_title_general_theme">Тема приложения</string>
<string name="pref_title_ignore_media_store_artwork">Игнорировать обложки из хранилища</string>
<string name="pref_title_last_added_interval">Дата последнего добавления плейлиста</string>
<string name="pref_title_lock_screen">Полноэкранное управление</string>
<string name="pref_title_navigation_bar">Цветная панель навигации</string>
<string name="pref_title_now_playing_screen_appearance">Внешний вид</string>
<string name="pref_title_open_source_licences">Лицензии ПО с открытым исходным кодом</string>
<string name="pref_title_round_corners">Скруглённые края</string>
<string name="pref_title_now_playing_screen_appearance">Тема экрана текущего воспроизведение</string>
<string name="pref_title_open_source_licences">Лицензии с открытым кодом</string>
<string name="pref_title_round_corners">Угловые края</string>
<string name="pref_title_toggle_carousel_effect">Эффект карусели</string>
<string name="pref_title_toggle_dominant_color">Преобладающий цвет</string>
<string name="pref_title_toggle_full_screen">Полноэкранный режим</string>
<string name="pref_title_toggle_tab_titles">Название вкладок</string>
<string name="pref_title_toggle_toggle_headset">Автоматическое воспроизведение</string>
<string name="pref_title_toggle_volume">Переключатели громкости</string>
<string name="pref_title_user_info">О пользователе</string>
<string name="pref_title_toggle_dominant_color">Главный цвет</string>
<string name="pref_title_toggle_full_screen">Полноэкранное приложение</string>
<string name="pref_title_toggle_tab_titles">Заголовки</string>
<string name="pref_title_toggle_toggle_headset">Автовоспроизведение</string>
<string name="pref_title_toggle_toggle_shuffle">Режим перемешивания</string>
<string name="pref_title_toggle_volume">Управление громкостью</string>
<string name="pref_title_user_info">Информация о пользователе</string>
<string name="pref_title_extra_controls">Дополнительные элементы управления</string>
<string name="pref_title_home_banner">Кнопка домой</string>
<string name="pref_title_genre_toggle">Показать вкладку жанра</string>
<string name="pref_title_home_artist_grid_style">Сетка исполнителя на Главной странице</string>
<string name="pref_title_album_cover_transform">Стиль обложки экрана текущего воспроизведение</string>
<string name="cascading">Каскадный</string>
<string name="primary_color">Основной цвет</string>
<string name="primary_color_desc">Основной цвет темы по умолчанию - сине-серый</string>
<string name="purchase">Покупка</string>
<string name="primary_color_desc">Основной цвет темы, по умолчанию - синий, теперь работает с темными цветами</string>
<string name="purchase">Купить</string>
<string name="purchase_summary">* Подумайте, прежде чем покупать, не просите возврата.</string>
<string name="queue">Очередь</string>
<string name="rate_app">Оценить приложение</string>
<string name="rate_on_google_play_summary">Если тебе понравилось приложение - дай нам знать об этом в Google Play, чтобы улучшить приложение.</string>
<string name="rate_on_google_play_summary">Любите это приложение? Сообщите нам в Google Play Store, как мы можем сделать его еще лучше</string>
<string name="recent_albums">Последние альбомы</string>
<string name="recent_artists">Последние исполнители</string>
<string name="remove_action">Удалить</string>
<string name="remove_banner_photo">Удалить фотографию баннера</string>
<string name="remove_cover">Удалить обложку</string>
<string name="remove_from_blacklist">Убрать из списка исключений</string>
<string name="remove_from_blacklist">Удалить из черного списка</string>
<string name="remove_profile_photo">Удалить фотографию профиля</string>
<string name="remove_song_from_playlist_title">Удалить песню из плейлиста</string>
<string name="remove_song_x_from_playlist"><![CDATA[Удалить песню <b>%1$s</b> из плейлиста?]]></string>
<string name="remove_songs_from_playlist_title">Удалить песни из плейлиста</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Удалить песни <b>%1$d</b> из плейлиста?]]></string>
<string name="rename_playlist_title">Переименование плейлиста</string>
<string name="reset_artist_image">Восстановить изображение исполнителя</string>
<string name="restore">Восстановить</string>
<string name="restored_previous_purchase_please_restart">Восстановлена предыдущая покупка. Пожалуйста перезапустите приложение для использование всех возможностей.</string>
<string name="remove_x_songs_from_playlist"><![CDATA[Удалить %1$d песни(ю) из плейлиста?]]></string>
<string name="rename_playlist_title">Переименовать плейлист</string>
<string name="reset_artist_image">Сбросить изображение исполнителя</string>
<string name="restore">Restore</string>
<string name="restored_previous_purchase_please_restart">Предыдущая покупка восстановлена. Перезагрузите приложение, чтобы использовать все функции.</string>
<string name="restored_previous_purchases">Восстановленные предыдущие покупки.</string>
<string name="restoring_purchase">Восстановление покупки...</string>
<string name="retro_equalizer">Retro - Эквалайзер</string>
<string name="restoring_purchase">Восстановление покупки ...</string>
<string name="retro_equalizer">Эквалайзер Retro Music</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Сохранить как файл</string>
<string name="saved_playlist_to">Сохроненный плейлист в %s</string>
<string name="save_playlist_title">Сохранить как...</string>
<string name="save_playlists_title">Сохранить как...</string>
<string name="saved_playlist_to">Сохраненный список воспроизведения в %s.</string>
<string name="saving_changes">Сохранение изменений</string>
<string name="scanned_files">Отсканированные файлы %1$d из %2$d.</string>
<string name="search_hint">Поиск в библиотеке</string>
<string name="scan_media">Сканировать медиа-файлы</string>
<string name="scanned_files">Просканировано %1$d из %2$d файлов.</string>
<string name="search_hint">Найдите свою библиотеку ...</string>
<string name="select_all">Выбрать все</string>
<string name="select_banner_photo">Выбрать фото баннера</string>
<string name="set_artist_image">Установить изображение исполнителя</string>
<string name="shuffle">Перемешать</string>
<string name="simple">Простенькая</string>
<string name="sleep_timer_canceled">Таймер отключения отменен</string>
<string name="simple">Простая</string>
<string name="sleep_timer_canceled">Таймер отключения отменен.</string>
<string name="sleep_timer_set">Таймер сна установлен на %d минут.</string>
<string name="social">Общее</string>
<string name="song">Песня</string>
<string name="song_duration">Длительность</string>
<string name="song_duration">Длительность песни</string>
<string name="songs">Песни</string>
<string name="sort_order">Порядок сортировки</string>
<string name="speech_not_supported">Простите, ваше устройство не поддерживает голосовой ввод</string>
<string name="speech_prompt">Поиск в библиотеке</string>
<string name="summary_user_info">Ваше имя будет отображаться на главном экране</string>
<string name="support_development">Поддержка разработки</string>
<string name="sort_order_a_z">По возрастанию</string>
<string name="sort_order_album">Альбом</string>
<string name="sort_order_artist">Исполнитель</string>
<string name="sort_order_date">Дата</string>
<string name="sort_order_year">Год</string>
<string name="sort_order_z_a">По убыванию</string>
<string name="speech_not_supported">Извините! Ваше устройство не поддерживает ввод с помощью речи</string>
<string name="speech_prompt">Поиск в вашей библиотеке</string>
<string name="summary_user_info">Просто покажите свое имя на главном экране</string>
<string name="support_development">Поддержать разработку</string>
<string name="synced_lyrics">Синхронизированный текст</string>
<string name="system_equalizer">Системный эквалайзер</string>
<!-- Message displayed when tag editing fails -->
<string name="thank_you">Спасибо!</string>
<string name="the_audio_file">Аудио-файл</string>
<string name="this_month">В этом месяце</string>
<string name="this_week">На этой неделе</string>
<string name="this_year">В этом году</string>
<string name="tiny">Крохотная</string>
<string name="title_dashboard">Доска инструментов</string>
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Присоединитесь к группе Telegram, чтобы обсуждать ошибки, предлагать улучшения, хвастаться и делать многое другое</string>
<string name="thank_you">Благодарю!</string>
<string name="the_audio_file">Аудиофайл</string>
<string name="this_month">Этот месяц</string>
<string name="this_week">Это неделя</string>
<string name="this_year">Этот год</string>
<string name="tiny">Крошечный</string>
<string name="title_dashboard">Панель приборов</string>
<string name="title_good_afternoon">Добрый день</string>
<string name="title_good_day">Добрый день</string>
<string name="title_good_evening">Добрый вечер</string>
<string name="title_good_morning">Доброе утро</string>
<string name="title_good_night">Доброй ночи</string>
<string name="title_user_info">Как вас зовут?</string>
<string name="title_user_info">Как тебя зовут</string>
<string name="today">Сегодня</string>
<string name="top_albums">Топ альбомы</string>
<string name="top_artists">Топ исполнители</string>
<string name="top_albums">Топ альбомов</string>
<string name="top_artists">Топ исполнителей</string>
<string name="track_hint">"Трек (2 для трека 2 или 3004 для CD3 трека 4)"</string>
<string name="track_list">Номер трека</string>
<string name="translate">Перевод</string>
<string name="translate">Переведите</string>
<string name="translate_community">Помогите нам перевести приложение на ваш язык</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Поделитесь своим дизайном с Retro Music</string>
<string name="unplayable_file">\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u044d\u0442\u0443 \u043f\u0435\u0441\u043d\u044e.</string>
<string name="up_next">Следующий</string>
<string name="update_image">Обновить изображение</string>
<string name="updating">Обновление...</string>
<string name="updating">Обновленяется ...</string>
<string name="version">Версия</string>
<string name="web_search">Веб поиск</string>
<string name="what_do_you_want_to_share">"Чем вы хотите поделиться? "</string>
<string name="virtualizer">Виртуализация</string>
<string name="web_search">Поиск в интернете</string>
<string name="what_do_you_want_to_share">Чем вы хотите поделиться?</string>
<string name="window">Окно</string>
<string name="x_has_been_set_as_ringtone">Установить %1$s как мелодию звонка.</string>
<string name="x_selected">%1$d выбрано</string>
<string name="x_has_been_set_as_ringtone">Установите %1$s в качестве мелодии звонка.</string>
<string name="x_selected">Выбрано %1$d</string>
<string name="year">Год</string>
<string name="made_with_love">Сделано с ❤️ в Индии</string>
<string name="clear_app_data">Очистить данные приложения</string>
<string name="bug_report_summary">Произошла непредвиденная ошибка. Извините, если это продолжится
то «Очистите данные приложения»</string>
<string name="error">Ошибка</string>
<string name="base_color_theme">Основная цветовая тема</string>
<string name="now_playing_themes">9+ тем экрана текущего воспроизведения</string>
<string name="carousal_effect_on_now_playing_screen">Эффект карусели на экране текущего воспроизведения</string>
<string name="window_corner_edges">Закругленные углы</string>
<string name="pref_title_album_cover_style">Тема обложки альбома</string>
<string name="circular">Круговая</string>
<string name="carousal">Карусель</string>
<string name="now_playing_summary">Настроить экран текущего воспроизведения</string>
<string name="full_card">Полная карточка</string>
<string name="profile">Профиль</string>
<string name="bio">Биография</string>
<string name="auto">Авто</string>
<string name="labeled">Помечено</string>
<string name="unlabeled">Не помечено</string>
<string name="selected">Выбрано</string>
</resources>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">Màu sắc nhấn mạnh</string>
<string name="accent_color_desc">Màu sắc chủ đạo của chủ đề, mặc định là xanh lá cây</string>
<string name="accent_color_desc">Màu sắc chủ đạo của chủ đề, mặc định màu xanh thiên thanh</string>
<string name="action_about">Giới thiệu</string>
<string name="action_add_to_favorites">Thêm vào yêu thích</string>
<string name="action_add_to_playing_queue">Thêm vào hàng đợi</string>
@ -13,6 +13,7 @@
<string name="action_details">Chi tiết</string>
<string name="action_go_to_album">Đi đến album</string>
<string name="action_go_to_artist">Đi đến nghệ sĩ</string>
<string name="action_go_to_genre">Chuyển đến thể loại</string>
<string name="action_go_to_start_directory">Đến trang bắt đầu</string>
<string name="action_grant">Cho phép</string>
<string name="action_grid_size">Kích thước lưới</string>
@ -28,8 +29,9 @@
<string name="action_rename">Đổi tên</string>
<string name="action_save_playing_queue">Lưu hàng đợi phát</string>
<string name="action_scan">Quét</string>
<string name="action_scan_directory">Quét thư mục</string>
<string name="action_search">Tìm kiếm</string>
<string name="action_set">Đặt</string>
<string name="action_set">Bắt đầu</string>
<string name="action_set_as_ringtone">Đặt làm nhạc chuông</string>
<string name="action_set_as_start_directory">Đặt làm trang bắt đầu</string>
<string name="action_settings">"Cài đặt"</string>
@ -37,7 +39,9 @@
<string name="action_shuffle_all">Phát ngẫu nhiên tất cả</string>
<string name="action_shuffle_playlist">Phát ngẫu nhiên theo danh sách phát</string>
<string name="action_sleep_timer">Hẹn giờ ngủ</string>
<string name="action_sort_order">Thứ tự sắp xếp</string>
<string name="action_tag_editor">Chỉnh sửa thẻ</string>
<string name="adaptive">Thích nghi</string>
<string name="add_action">Thêm</string>
<string name="add_photo">Thêm \nhình ảnh</string>
<string name="add_playlist_title">"Thêm vào danh sách phát"</string>
@ -64,22 +68,31 @@
<string name="artist">Nghệ sĩ</string>
<string name="artists">Nghệ sĩ</string>
<string name="audio_focus_denied">Tập trung âm thanh bị từ chối</string>
<string name="audio_settings_summary">Điều chỉnh cài đặt âm thanh và điều khiển bộ chỉnh âm</string>
<string name="audio_settings_summary">Thay đổi cài đặt âm thanh và điều chỉnh các điều khiển bộ chỉnh âm</string>
<string name="bass_boost">Tăng cường Bass</string>
<string name="biography">Tiểu sử</string>
<string name="black_theme_name">Đen hoàn toàn</string>
<string name="black_theme_name">Hoàn toàn đen</string>
<string name="blacklist">Danh sách đen</string>
<string name="blur">Mờ phông</string>
<string name="blur_card">Thẻ mờ</string>
<string name="buy_retro_music_pro">Mua RetroMusic Pro</string>
<string name="cancel_current_timer">Hủy hẹn giờ hiện tại</string>
<string name="pref_keep_screen_on_title">Giữ màn hình bật</string>
<string name="pref_keep_screen_on_summary">Lưu ý rằng việc bật tính năng này có thể ảnh hưởng đến tuổi thọ pin</string>
<string name="pref_blur_amount_title">Độ mờ</string>
<string name="pref_blur_amount_summary">Độ mờ được áp dụng cho các chủ đề mờ, thấp hơn là nhanh hơn</string>
<string name="cancel_current_timer">Hủy</string>
<string name="card">Thẻ</string>
<string name="card_color_style">Thẻ màu</string>
<string name="card_circular_style">Tròn</string>
<string name="image">Hình ảnh</string>
<string name="card_style">Thẻ</string>
<string name="cast">Cast</string>
<string name="changelog">Thay đổi</string>
<string name="changelog_summary">Nhật ký thay đổi được cập nhật trong ứng dụng Telegram</string>
<string name="clear_action">Xóa</string>
<string name="clear_blacklist">Xóa danh sách đen</string>
<string name="clear_playlist_title">Xoá danh sách phát</string>
<string name="clear_playlist_x"><![CDATA[Xo\u00e1 danh s\u00e1ch ph\u00e1t <b>%1$s</b>? Thao t\u00e1c kh\u00f4ng th\u1ec3 ho\u00e0n t\u00e1c!]]></string>
<string name="close_notification">Đóng</string>
<string name="color">Màu sắc</string>
<string name="color_theme_name">Màu sắc</string>
<string name="colors">Màu sắc</string>
@ -89,6 +102,7 @@
<string name="could_not_scan_files">Không thể quét %d tập tin.</string>
<string name="create_action">Tạo</string>
<string name="created_playlist_x">Đã tạo danh sách phát %1$s.</string>
<string name="credit_title">Thành viên và cộng tác viên</string>
<string name="currently_listening_to_x_by_x">Đang nghe %1$s bởi %2$s.</string>
<string name="dark_theme_name">Xám đen</string>
<string name="default_hint">Không có lời</string>
@ -99,31 +113,43 @@
<string name="delete_x_playlists"><![CDATA[Xoá <b>%1$d</b> danh sách phát?]]></string>
<string name="delete_x_songs"><![CDATA[Xoá <b>%1$d</b> bài hát?]]></string>
<string name="deleted_x_songs">Đã xoá %1$d bài hát.</string>
<string name="discord_page">Discord</string>
<string name="discord_summary">Tham gia vào máy chủ Discord để cập nhật tin tức mới nhất</string>
<string name="do_you_want_to_clear_the_blacklist">Bạn có muốn xóa danh sách đen?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[Bạn có muốn gỡ <b>%1$s</b> khỏi danh sách đen?]]></string>
<string name="donate">Ủng hộ</string>
<string name="donate_summary">Nếu bạn nghĩ tôi xứng đáng được trả tiền khi làm công việc này, hãy để lại một vài đồng ở dưới đây. Cảm ơn bạn! :D</string>
<string name="donation_header">Mua cho tôi một</string>
<string name="donate_summary">Nếu bạn nghĩ rằng tôi xứng đáng được trả tiền cho công việc này, bạn có thể để lại một số tiền ở đây. Cảm ơn bạn! :D</string>
<string name="donation_header">Mua cho tôi một:</string>
<string name="download_from_last_fm">Tải xuống từ Last.fm</string>
<string name="edit_cover">Chỉnh sửa ảnh bìa</string>
<string name="empty">Trống</string>
<string name="equalizer">Bộ chỉnh âm</string>
<string name="faq">Câu hỏi thường gặp</string>
<string name="favorites">Yêu thích</string>
<string name="flat">Phẳng</string>
<string name="folders">Thư mục</string>
<string name="for_you">Cho bạn</string>
<string name="full">Toàn bộ</string>
<string name="general_settings_summary">Thay đổi màu sắc tổng thể của ứng dụng</string>
<string name="general_settings_summary">Thay đổi chủ đề và màu sắc của ứng dụng</string>
<string name="general_settings_title">Nhìn và cảm nhận</string>
<string name="genre">Thể loại</string>
<string name="genres">Thể loại</string>
<string name="git_hub_summary">Tham gia phát triển dự án trên Github</string>
<string name="google_plus_community">Tham gia cộng đồng Google Plus, nơi bạn có thể yêu cầu trợ giúp hoặc theo dõi cập nhật RetroMusicApp</string>
<string name="google_plus_community">Tham gia cộng đồng Google Plus, nơi bạn có thể yêu cầu trợ giúp hoặc theo dõi các cập nhật Retro Music</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
<string name="grid_size_4">4</string>
<string name="grid_size_5">5</string>
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">Lịch sử</string>
<string name="home">Trang chủ</string>
<string name="image_settings_summary">Thay đổi cách tải xuống hình ảnh nghệ sĩ</string>
<string name="image_settings_summary">Thay đổi cài đặt tải xuống hình ảnh nghệ sĩ</string>
<string name="inserted_x_songs_into_playlist_x">Đã chèn %1$d bài hát vào danh sách phát %2$s.</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">Chia sẻ thiết lập RetroMusic của bạn trong instagram</string>
<string name="instagram_page_summary">Chia sẻ thiết lập Retro Music của bạn trong Instagram</string>
<string name="label_bit_rate">Bitrate</string>
<string name="label_file_format">Định dạng</string>
<string name="label_file_name">Tên tệp</string>
@ -139,16 +165,18 @@
<string name="listing_files">Danh sách tập tin</string>
<string name="loading_products">Đang tải sản phẩm...</string>
<string name="lyrics">Lời bài hát</string>
<string name="material">Vật liệu</string>
<string name="my_name">Tên của bạn</string>
<string name="my_top_tracks">Bản nhạc hàng đầu</string>
<string name="my_top_tracks">Phát nhiều nhất</string>
<string name="never">Không bao giờ</string>
<string name="new_banner_photo">Ảnh biểu ngữ mới</string>
<string name="new_playlist_title">Danh sách phát mới</string>
<string name="new_profile_photo">Ảnh tiểu sử mới</string>
<string name="new_start_directory">%s là trang bắt đầu mới.</string>
<string name="no_albums">Không có album</string>
<string name="no_artists">Không có nghệ sĩ</string>
<string name="no_audio_ID">"Phát một bài hát trước, sau đó thử lại."</string>
<string name="no_equalizer">Không tìm thấy bộ chỉnh âm.</string>
<string name="no_equalizer">Không tìm thấy bộ chỉnh âm</string>
<string name="no_genres">Không có thể loại</string>
<string name="no_lyrics_found">Không tìm thấy lời bài hát</string>
<string name="no_playlists">Không có danh sách phát</string>
@ -157,17 +185,18 @@
<string name="no_songs">Không có bài hát</string>
<string name="normal">Tiêu chuẩn</string>
<string name="normal_lyrics">Lời chuẩn</string>
<string name="normal_style">Bình thường</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b> không được liệt kê trong thư mục nhạc.]]></string>
<string name="nothing_to_scan">Không có gì để quét.</string>
<string name="notification">Thông báo</string>
<string name="notification_settings_summary">Tuỳ chỉnh phong cách thông báo</string>
<string name="notification_settings_summary">Tùy chỉnh kiểu thông báo</string>
<string name="now_playing">Đang phát</string>
<string name="now_playing_queue">Đang phát hàng đợi</string>
<string name="only_on_wifi">Chỉ khi dùng Wi-Fi</string>
<string name="others">Khác</string>
<string name="past_three_months">Mỗi tháng</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me là cách đơn giản nhất để quyên góp ủng hộ chúng tôi. Trong trường hợp bạn chỉ có thẻ ghi nợ hoặc thẻ tín dụng, PayPal sẽ lấy 2,9% số tiền (US) và 0.30$ <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">chi tiết</a></string>
<string name="paypal_summary">PayPal.me là một cách dễ dàng để tặng tiền cho tôi. Trong trường hợp bạn chỉ liên kết thẻ ghi nợ hoặc thẻ tín dụng, phí ở Hoa Kỳ là 2,9% khoản đóng góp + 0,30 đô la Mỹ. Nếu không sẽ không mất phí. <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">chi tiết</a></string>
<string name="permission_external_storage_denied">Quyền truy cập bộ nhớ ngoài bị từ chối.</string>
<string name="permissions_denied">Quyền đã bị từ chối.</string>
<string name="personalize">Cá nhân hoá</string>
@ -181,49 +210,53 @@
<string name="playlist_name_empty">Tên danh sách phát</string>
<string name="playlists">Danh sách phát</string>
<string name="pref_header_audio">Âm thanh</string>
<string name="pref_header_general">Chung</string>
<string name="pref_header_general">Chủ đề</string>
<string name="pref_header_images">Hình ảnh</string>
<string name="pref_header_lockscreen">Màn hình khoá</string>
<string name="pref_header_playlists">Danh sách phát</string>
<string name="pref_only_lollipop">"Chỉ có trên phiên bản Lollipop"</string>
<string name="pref_summary_album_art_on_lockscreen">Sử dụng ảnh bìa album bài hát đang phát làm ảnh nền màn hình khóa.</string>
<string name="pref_summary_audio_ducking">Thông báo, điều hướng,...</string>
<string name="pref_summary_blurred_album_art">Làm mờ ảnh bìa album trên màn hình khóa. Có thể gây ra sự cố với các ứng dụng và tiện ích con của bên thứ ba.</string>
<string name="pref_summary_carousel_effect">Hiệu ứng quay vòng ảnh bìa album trong màn hình đang phát, không hoạt động với chủ đề Thẻ, Thẻ mờ, Toàn bộ, Nhỏ, Thích ứng.</string>
<string name="pref_summary_classic_notification">Dùng thiết kế thông báo cổ điển.</string>
<string name="pref_summary_colored_app">Màu nền, nút điều khiển sẽ thay đổi theo màu sắc ảnh bìa album đang phát</string>
<string name="pref_summary_audio_ducking">Giảm âm lượng khi có âm báo hệ thống hoặc khi bạn có thông báo</string>
<string name="pref_summary_blurred_album_art">Làm mờ ảnh bìa album trên màn hình khóa. Có thể gây ra sự cố với các ứng dụng và tiện ích của bên thứ ba</string>
<string name="pref_summary_carousel_effect">Hiệu ứng băng chuyền cho ảnh bìa album trong màn hình đang phát. Lưu ý rằng nó không hoạt động với chủ đề Thẻ và Thẻ mờ</string>
<string name="pref_summary_classic_notification">Dùng thiết kế thông báo cổ điển</string>
<string name="pref_summary_colored_app">Màu nền và các nút điều khiển sẽ thay đổi theo màu sắc ảnh bìa album đang phát</string>
<string name="pref_summary_colored_app_shortcuts">Màu sắc trong lối tắt ứng dụng dùng màu sắc chủ đạo. Mỗi khi bạn thay đổi màu chủ đạo, hãy bật/tắt lại công tắc này để thay đổi có hiệu lực</string>
<string name="pref_summary_colored_navigation_bar">Thay đổi màu sắc thanh điều hướng theo màu chủ đề chung.</string>
<string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc th\u00f4ng b\u00e1o theo m\u00e0u s\u1eafc chi ph\u1ed1i \u1ea3nh b\u00eca album"</string>
<string name="pref_summary_dominant_color">Màu sắc chi phối sẽ được chọn từ ảnh bìa album hoặc nghệ sĩ.</string>
<string name="pref_summary_colored_navigation_bar">Thay đổi màu sắc thanh điều hướng theo màu chủ đề chung</string>
<string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc th\u00f4ng b\u00e1o thay \u0111\u1ed5i theo m\u00e0u s\u1eafc chi ph\u1ed1i \u1ea3nh b\u00eca album"</string>
<string name="pref_summary_dominant_color">Màu sắc chi phối sẽ được chọn từ ảnh bìa album hoặc nghệ sĩ</string>
<string name="pref_summary_gapless_playback">"Có thể gây ra vấn đề phát lại trên một số thiết bị."</string>
<string name="pref_summary_ignore_media_store_artwork">Có thể tăng chất lượng hiển thị ảnh bìa album nhưng thời gian tải hình ảnh chậm hơn. Chỉ bật tính năng này khi bạn không hài lòng với chất lượng hiển thị ảnh bìa album.</string>
<string name="pref_summary_lock_screen">Màn hình khóa tuỳ chỉnh của Retro Music.</string>
<string name="pref_summary_ignore_media_store_artwork">Có thể tăng chất lượng hiển thị ảnh bìa album, nhưng thời gian tải hình ảnh chậm hơn. Chỉ bật tính năng này nếu bạn không hài lòng với chất lượng ảnh hiện tại</string>
<string name="pref_summary_lock_screen">Sử dụng các điều khiển màn hình khóa tùy chỉnh của Retro Music</string>
<string name="pref_summary_open_source_licences">Chi tiết giấy phép của phần mềm mã nguồn mở</string>
<string name="pref_summary_round_corners">Bo tròn các góc ứng dụng, bìa album,...</string>
<string name="pref_summary_tab_titles">Bật/tắt tiêu đề thanh dưới cùng.</string>
<string name="pref_summary_round_corners">Bo tròn các góc ứng dụng</string>
<string name="pref_summary_tab_titles">Bật/tắt tiêu đề thanh điều hướng dưới</string>
<string name="pref_summary_toggle_full_screen">Chế độ hoà nhập</string>
<string name="pref_summary_toggle_headset">Tự động phát nhạc khi kết nối tai nghe, loa.</string>
<string name="pref_summary_toggle_headset">Tự động phát nhạc khi kết nối tai nghe</string>
<string name="pref_summary_toggle_shuffle">Chế độ phát ngẫu nhiên sẽ tắt khi phát danh sách bài hát mới</string>
<string name="pref_summary_toggle_volume">Hiện thanh âm lượng nếu có không gian trống trong màn hình đang phát</string>
<string name="pref_summary_toggle_volume">Hiện thanh điều chỉnh âm lượng nếu có không gian trống trong màn hình đang phát</string>
<string name="pref_summary_extra_controls">Thêm điều khiển bổ sung cho trình phát mini</string>
<string name="pref_summary_genre_toggle">Bật/tắt thẻ thể loại</string>
<string name="pref_summary_home_banner">Ẩn/hiện biểu ngữ trong trang chủ</string>
<string name="pref_title_album_art_on_lockscreen">Hiện ảnh bìa album</string>
<string name="pref_title_album_grid_style">Kiểu lưới album</string>
<string name="pref_title_tab_text_mode">Chế độ tiêu đề thẻ</string>
<string name="pref_title_album_grid_style">Lưới album</string>
<string name="pref_title_app_shortcuts">Đổi màu lối tắt ứng dụng</string>
<string name="pref_title_artist_grid_style">Kiểu lưới nghệ sĩ</string>
<string name="pref_title_artist_grid_style">Lưới nghệ sĩ</string>
<string name="pref_title_audio_ducking">Giảm âm lượng khi có âm báo</string>
<string name="pref_title_auto_download_artist_images">Tự động tải ảnh nghệ sĩ</string>
<string name="pref_title_auto_download_artist_images">Tự động tải xuống hình ảnh nghệ sĩ</string>
<string name="pref_title_blurred_album_art">Làm mờ bìa album</string>
<string name="pref_title_choose_equalizer">Chọn bộ chỉnh âm</string>
<string name="pref_title_classic_notification">Thiết kế thông báo cổ điển</string>
<string name="pref_title_colored_app">Màu sắc thích nghi</string>
<string name="pref_title_colored_notification">Đổi màu thông báo</string>
<string name="pref_title_gapless_playback">Phát không gián đoạn</string>
<string name="pref_title_general_theme">Chủ đề chung</string>
<string name="pref_title_general_theme">Chủ đề ứng dụng</string>
<string name="pref_title_ignore_media_store_artwork">Ảnh bìa chất lượng nguyên bản</string>
<string name="pref_title_last_added_interval">Làm mới danh sách thêm gần đây sau</string>
<string name="pref_title_lock_screen">Điều khiển toàn màn hình.</string>
<string name="pref_title_navigation_bar">Đổi màu thanh điều hướng</string>
<string name="pref_title_now_playing_screen_appearance">Giao diện Đang phát</string>
<string name="pref_title_now_playing_screen_appearance">Giao diện đang phát</string>
<string name="pref_title_open_source_licences">Giấy phép nguồn mở</string>
<string name="pref_title_round_corners">Bo tròn các góc</string>
<string name="pref_title_toggle_carousel_effect">Hiệu ứng quay vòng</string>
@ -234,16 +267,23 @@
<string name="pref_title_toggle_toggle_shuffle">Chế độ ngẫu nhiên</string>
<string name="pref_title_toggle_volume">Điều khiển âm lượng</string>
<string name="pref_title_user_info">Thông tin người dùng</string>
<string name="pref_title_extra_controls">Điều khiển bổ sung</string>
<string name="pref_title_home_banner">Biểu ngữ trang chủ</string>
<string name="pref_title_genre_toggle">Hiện thẻ thể loại</string>
<string name="pref_title_home_artist_grid_style">Lưới nghệ sĩ trang chủ</string>
<string name="pref_title_album_cover_transform">Kiểu bìa album đang phát</string>
<string name="cascading">Xếp tầng</string>
<string name="primary_color">Màu chủ đạo</string>
<string name="primary_color_desc">Màu sắc chủ đạo, mặc định là màu xanh xám, bây giờ hoạt động với màu tối</string>
<string name="purchase">Mua</string>
<string name="purchase_summary">*Hãy suy nghĩ kĩ trước khi mua, không yêu cầu hoàn tiền.</string>
<string name="queue">Hàng đợi</string>
<string name="rate_app">Đánh giá ứng dụng</string>
<string name="rate_on_google_play_summary">Bạn thích ứng dụng này không? Hãy cho chúng tôi biết suy nghĩ của bạn trên CH Play để có thể cung cấp trải nghiệm tốt hơn!</string>
<string name="rate_on_google_play_summary">Bạn thích ứng dụng này không? Hãy cho chúng tôi biết suy nghĩ của bạn trên Cửa hàng Play để chúng tôi có thể làm cho nó tốt hơn nữa</string>
<string name="recent_albums">Album mới thêm</string>
<string name="recent_artists">Nghệ sĩ mới thêm</string>
<string name="remove_action">Loại bỏ</string>
<string name="remove_banner_photo">Xóa ảnh biểu ngữ</string>
<string name="remove_cover">Xoá ảnh bìa</string>
<string name="remove_from_blacklist">Xóa khỏi danh sách đen</string>
<string name="remove_profile_photo">Xóa ảnh tiểu sử</string>
@ -261,10 +301,14 @@
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">Lưu thành</string>
<string name="save_playlists_title">Lưu thành tệp</string>
<string name="saved_playlist_to">Danh sách phát đã lưu đến %s.</string>
<string name="saving_changes">Lưu thay đổi</string>
<string name="scan_media">Quét phương tiện</string>
<string name="scanned_files">Đã sửa %1$d trong %2$d tập tin.</string>
<string name="search_hint">Tìm kiếm trong thư viện của bạn...</string>
<string name="select_all">Chọn tất cả</string>
<string name="select_banner_photo">Chọn ảnh biểu ngữ</string>
<string name="set_artist_image">Đặt ảnh nghệ sĩ thủ công</string>
<string name="shuffle">Ngẫu nhiên</string>
<string name="simple">Đơn giản</string>
@ -275,6 +319,12 @@
<string name="song_duration">Thời lượng bài hát</string>
<string name="songs">Bài hát</string>
<string name="sort_order">Thứ tự sắp xếp</string>
<string name="sort_order_a_z">Tăng dần</string>
<string name="sort_order_album">Album</string>
<string name="sort_order_artist">Nghệ sĩ</string>
<string name="sort_order_date">Ngày</string>
<string name="sort_order_year">Năm</string>
<string name="sort_order_z_a">Giảm dần</string>
<string name="speech_not_supported">Xin lỗi! Thiết bị không hỗ trợ nhập liệu bằng giọng nói</string>
<string name="speech_prompt">Tìm kiếm trong thư viện của bạn</string>
<string name="summary_user_info">Tên của bạn chỉ hiển thị trên trang chủ</string>
@ -282,6 +332,8 @@
<string name="synced_lyrics">Karaoke</string>
<string name="system_equalizer">Bộ chỉnh âm hệ thống</string>
<!-- Message displayed when tag editing fails -->
<string name="telegram_group">Telegram</string>
<string name="telegram_group_summary">Tham gia nhóm Telegram để thảo luận về lỗi, đưa ra đề xuất, và hơn thế nữa</string>
<string name="thank_you">Cảm ơn!</string>
<string name="the_audio_file">Tệp âm thanh</string>
<string name="this_month">Mỗi tháng</string>
@ -301,9 +353,9 @@
<string name="track_hint">"Rãnh (2 cho bài số 2 hoặc 3004 cho CD3 bài số 4)"</string>
<string name="track_list">Số rãnh</string>
<string name="translate">Dịch</string>
<string name="translate_community">Hỗ trợ dịch Retro Music sang ngôn ngữ của bạn.</string>
<string name="twitter_page">Trang Twitter</string>
<string name="twitter_page_summary">Chia sẻ thiết kế của bạn với RetroMusicApp</string>
<string name="translate_community">Giúp chúng tôi dịch ứng dụng sang ngôn ngữ của bạn</string>
<string name="twitter_page">Twitter</string>
<string name="twitter_page_summary">Chia sẻ thiết kế của bạn với Retro Music</string>
<string name="unplayable_file">Kh\u00f4ng th\u1ec3 ph\u00e1t b\u00e0i h\u00e1t n\u00e0y.</string>
<string name="up_next">Tiếp theo</string>
<string name="update_image">Cập nhật hình ảnh</string>
@ -316,4 +368,24 @@
<string name="x_has_been_set_as_ringtone">Đặt %1$s làm nhạc chuông.</string>
<string name="x_selected">%1$d đã chọn</string>
<string name="year">Năm</string>
<string name="made_with_love">Được làm bằng ❤️ ở Ấn Độ</string>
<string name="clear_app_data">Xóa dữ liệu ứng dụng</string>
<string name="bug_report_summary">Đã xảy ra lỗi không mong muốn. Xin lỗi bạn vì lỗi này, nếu nó
tiếp tục xảy ra hãy \"Xóa dữ liệu ứng dụng\"</string>
<string name="error">Lỗi</string>
<string name="base_color_theme">Chủ đề màu cơ bản</string>
<string name="now_playing_themes">Hơn 9 giao diện đang phát</string>
<string name="carousal_effect_on_now_playing_screen">Hiệu ứng băng chuyền trên màn hình đang phát</string>
<string name="window_corner_edges">Góc tròn</string>
<string name="pref_title_album_cover_style">Chủ đề bìa album</string>
<string name="circular">Thông tư</string>
<string name="carousal">Tiệc tùng</string>
<string name="now_playing_summary">Tùy chỉnh màn hình đang phát</string>
<string name="full_card">Thẻ đầy đủ</string>
<string name="profile">Hồ sơ</string>
<string name="bio">Tiểu sử</string>
<string name="auto">Tự động</string>
<string name="labeled">Được dán nhãn</string>
<string name="unlabeled">Chưa gắn nhãn</string>
<string name="selected">Đã chọn</string>
</resources>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<resources>
<string name="accent_color">强调色</string>
<string name="accent_color_desc">主题强调色默认为浅绿</string>
<string name="accent_color_desc">主题强调色,默认为蓝绿色</string>
<string name="action_about">关于</string>
<string name="action_add_to_favorites">添加到收藏夹</string>
<string name="action_add_to_playing_queue">添加到播放队列</string>
@ -12,14 +12,15 @@
<string name="action_delete_from_device">从设备中移除</string>
<string name="action_details">详情</string>
<string name="action_go_to_album">查看此专辑</string>
<string name="action_go_to_artist">查看此艺术家</string>
<string name="action_go_to_start_directory">跳转到起始目录</string>
<string name="action_go_to_artist">查看艺术家</string>
<string name="action_go_to_genre">流派显示</string>
<string name="action_go_to_start_directory">返回起始目录</string>
<string name="action_grant">授权</string>
<string name="action_grid_size">网格大小</string>
<string name="action_grid_size_land">网格大小(横</string>
<string name="action_grid_size_land">网格大小(横</string>
<string name="action_next">下一首</string>
<string name="action_play">播放</string>
<string name="action_play_next">下一首播放</string>
<string name="action_play_next">播放下一首</string>
<string name="action_play_pause">播放/暂停</string>
<string name="action_previous">上一首</string>
<string name="action_remove_from_favorites">从收藏夹中移除</string>
@ -28,278 +29,261 @@
<string name="action_rename">重命名</string>
<string name="action_save_playing_queue">保存播放队列</string>
<string name="action_scan">扫描</string>
<string name="action_scan_directory">目录扫描</string>
<string name="action_search">搜索</string>
<string name="action_set">设置</string>
<string name="action_set_as_ringtone">设为铃声</string>
<string name="action_set_as_start_directory">为起始目录</string>
<string name="action_set">开始</string>
<string name="action_set_as_ringtone">为铃声</string>
<string name="action_set_as_start_directory">置为主目录</string>
<string name="action_settings">"设置"</string>
<string name="action_share">分享</string>
<string name="action_shuffle_all">随机播放全部</string>
<string name="action_shuffle_playlist">随机播放列表</string>
<string name="action_shuffle_playlist">随机播放播放列表</string>
<string name="action_sleep_timer">睡眠定时器</string>
<string name="action_tag_editor">编辑乐曲信息</string>
<string name="action_sort_order">排序</string>
<string name="action_tag_editor">标签编辑器</string>
<string name="adaptive">自适应</string>
<string name="add_action">添加</string>
<string name="add_photo">添加\n图片</string>
<string name="add_photo">添加\n头像</string>
<string name="add_playlist_title">"添加到播放列表"</string>
<string name="added_title_to_playing_queue">"已添加 1 首乐曲到播放队列。"</string>
<string name="added_x_titles_to_playing_queue">已添加 %1$d 首歌到播放队列</string>
<string name="added_title_to_playing_queue">"已加入播放队列"</string>
<string name="added_x_titles_to_playing_queue">已添加 %1$d 首歌到播放队列</string>
<string name="album">专辑</string>
<string name="album_artist">专辑艺术家</string>
<string name="album_or_artist_empty">标题或者艺术家为空。</string>
<string name="album_or_artist_empty">标题或歌手为空</string>
<string name="albums">专辑</string>
<!-- Android Auto -->
<string name="always">始终</string>
<string name="app_share">了解关于这款炫酷的播放器的更多信息尽在https://play.google.com/store/apps/details?id=%s</string>
<string name="app_share">嘿快来瞧瞧这个酷炫的音乐播放器https://play.google.com/store/apps/details?id=%s</string>
<!-- App Shortcuts -->
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_shuffle_all_short">随机播放</string>
<string name="app_shortcut_top_tracks_short">最多播放</string>
<string name="app_widget_big_name">Retro music - 大尺寸</string>
<string name="app_widget_card_name">Retro music - 卡片</string>
<string name="app_widget_classic_name">Retro music - 经典</string>
<string name="app_widget_small_name">Retro music - 小尺寸</string>
<string name="artist">艺术家</string>
<string name="artists">艺术家</string>
<string name="audio_focus_denied">请求音频焦点被拒绝。</string>
<string name="audio_settings_summary">调整音量设置和均衡器控制</string>
<string name="app_shortcut_top_tracks_short">顶级轨道</string>
<string name="app_widget_big_name">Retro音乐 - 大</string>
<string name="app_widget_card_name">Retro Music - 卡片模式</string>
<string name="app_widget_classic_name">Retro Music - 经典模式</string>
<string name="app_widget_small_name">Retro音乐 - 小</string>
<string name="artist">歌手</string>
<string name="artists">歌手</string>
<string name="audio_focus_denied">音频焦点丢失</string>
<string name="audio_settings_summary">更改声音设置和均衡器设置</string>
<string name="bass_boost">低音增强</string>
<string name="biography">简介</string>
<string name="black_theme_name">纯黑</string>
<string name="blacklist">黑名单</string>
<string name="blur">模糊</string>
<string name="blur_card">模糊卡片</string>
<string name="buy_retro_music_pro">购买RetroMusic专业版</string>
<string name="cancel_current_timer">取消当前定时器</string>
<string name="pref_keep_screen_on_title">屏幕常亮</string>
<string name="pref_keep_screen_on_summary">请注意,启用此功能可能会降低电池续航时间</string>
<string name="pref_blur_amount_title">模糊量</string>
<string name="pref_blur_amount_summary">应用于模糊主题,数量越低加载越快</string>
<string name="cancel_current_timer">取消</string>
<string name="card">卡片</string>
<string name="card_color_style">彩色卡片</string>
<string name="card_circular_style">圆形</string>
<string name="image">图片</string>
<string name="card_style">卡片</string>
<string name="cast">投射</string>
<string name="changelog">更新日志</string>
<string name="changelog_summary">从 Telegram 获取更新日志</string>
<string name="clear_action">清空</string>
<string name="changelog_summary">在Telegram频道上维护更新日志</string>
<string name="clear_action">透明</string>
<string name="clear_blacklist">清空黑名单</string>
<string name="clear_playlist_title">清空播放列表</string>
<string name="clear_playlist_x"><![CDATA[\u786e\u5b9a\u8981\u6e05\u7a7a\u64ad\u653e\u5217\u8868 <b>%1$s</b> \u5417\uff1f\u64cd\u4f5c\u5c06\u65e0\u6cd5\u64a4\u9500\uff01]]></string>
<string name="clear_playlist_title">清除播放列表</string>
<string name="clear_playlist_x"><![CDATA[\u786e\u8ba4\u6e05\u9664\u64ad\u653e\u5217\u8868 <b>%1$s</b> \u5417\uff1f\u8bf7\u6ce8\u610f\uff0c\u6b64\u64cd\u4f5c\u4e0d\u53ef\u6062\u590d\uff01]]></string>
<string name="close_notification">关闭</string>
<string name="color">颜色</string>
<string name="color_theme_name">颜色</string>
<string name="colors">颜色</string>
<string name="could_not_create_playlist">\u65e0\u6cd5\u521b\u5efa\u64ad\u653e\u5217\u8868\u3002</string>
<string name="could_not_download_album_cover">"\u65e0\u6cd5\u4e0b\u8f7d\u5230\u5339\u914d\u7684\u5c01\u9762\u3002"</string>
<string name="could_not_restore_purchase">无法恢复您的购买。请稍候再试。</string>
<string name="could_not_scan_files">无法扫描 %d 中的文件。</string>
<string name="create_action">创建</string>
<string name="created_playlist_x">已创建播放列表 %1$s。</string>
<string name="currently_listening_to_x_by_x">正在播放 %1$s by %2$s.</string>
<string name="dark_theme_name">暗黑</string>
<string name="default_hint">无歌词</string>
<string name="colors">更多颜色</string>
<string name="could_not_create_playlist">\u4e0d\u80fd\u521b\u5efa\u64ad\u653e\u5217\u8868</string>
<string name="could_not_download_album_cover">"\u65e0\u6cd5\u4e0b\u8f7d\u5339\u914d\u7684\u4e13\u8f91\u5c01\u9762"</string>
<string name="could_not_restore_purchase">无法恢复购买</string>
<string name="could_not_scan_files">无法扫描文件 %d</string>
<string name="create_action">新建</string>
<string name="created_playlist_x">已创建播放列表 %1$s</string>
<string name="credit_title">开发团队和贡献者</string>
<string name="currently_listening_to_x_by_x">当前通过 %2$s 收听 %1$s</string>
<string name="dark_theme_name">浅黑</string>
<string name="default_hint">没有歌词</string>
<string name="delete_playlist_title">删除播放列表</string>
<string name="delete_playlist_x"><![CDATA[确认要删除播放列表 <b>%1$s</b> 吗?]]></string>
<string name="delete_playlists_title">删除多个播放列表</string>
<string name="delete_song_x"><![CDATA[确认要删除歌曲 <b>%1$s</b> 吗?]]></string>
<string name="delete_x_playlists"><![CDATA[确认要删除播放列表 <b>%1$d</b> 吗?]]></string>
<string name="delete_x_songs"><![CDATA[确认要删除歌曲 <b>%1$d</b> 吗?]]></string>
<string name="deleted_x_songs">已删除 %1$d 首歌曲。</string>
<string name="do_you_want_to_clear_the_blacklist">确认清空黑名单吗?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[确认从黑名单中移除 <b>%1$s</b> 吗?]]></string>
<string name="delete_playlist_x"><![CDATA[确认删除播放列表 <b>%1$s</b> 吗?]]></string>
<string name="delete_playlists_title">删除播放列表</string>
<string name="delete_song_x"><![CDATA[确认删除音乐 <b>%1$s</b> 吗?]]></string>
<string name="delete_x_playlists"><![CDATA[删除播放列表 <b>%1$s</b> 吗?]]></string>
<string name="delete_x_songs"><![CDATA[删除歌曲 <b>%1$s</b> 吗?]]></string>
<string name="deleted_x_songs">已删除 %1$d 首歌曲</string>
<string name="discord_page">不谐和</string>
<string name="discord_summary">加入Discord服务器以了解最新消息</string>
<string name="do_you_want_to_clear_the_blacklist">你想清除黑名单吗?</string>
<string name="do_you_want_to_remove_from_the_blacklist"><![CDATA[要从黑名单中删除 <b>%1$s</b> 吗?]]></string>
<string name="donate">捐赠</string>
<string name="donate_summary">如果您认为我的开发值得回报,您可以为我捐赠一些资金。</string>
<string name="donation_header">给我买一个</string>
<string name="download_from_last_fm">从 Last.fm 上下载</string>
<string name="empty"></string>
<string name="donate_summary">如果你觉得我的应用好用,你可以在这里捐赠一些资金,你的支持是我开发的动力</string>
<string name="donation_header">用以下方式捐赠:</string>
<string name="download_from_last_fm">从 Last.fm 下载</string>
<string name="edit_cover">编辑专辑封面</string>
<string name="empty">空空如也</string>
<string name="equalizer">均衡器</string>
<string name="faq">常见问题和解答</string>
<string name="favorites">收藏夹</string>
<string name="flat">扁平</string>
<string name="folders">文件夹</string>
<string name="for_you">为您</string>
<string name="full">全屏</string>
<string name="general_settings_summary">修改整体配</string>
<string name="general_settings_title">外观</string>
<string name="for_you">给你的</string>
<string name="full"></string>
<string name="general_settings_summary">更改应用的主题和颜</string>
<string name="general_settings_title">界面外观</string>
<string name="genre">流派</string>
<string name="genres">风格</string>
<string name="grid_size_1">1</string>
<string name="grid_size_2">2</string>
<string name="grid_size_3">3</string>
<string name="grid_size_4">4</string>
<string name="grid_size_5">5</string>
<string name="grid_size_6">6</string>
<string name="grid_size_7">7</string>
<string name="grid_size_8">8</string>
<string name="history">最近播放</string>
<string name="home">首页</string>
<string name="inserted_x_songs_into_playlist_x">已将 %1$d 首歌曲添加到播放列表 %2$s 中。</string>
<string name="genres">流派</string>
<string name="git_hub_summary">在GitHub上Fork项目</string>
<string name="google_plus_community">加入Google+社区获得帮助或者更新信息</string>
<string name="history">历史记录</string>
<string name="home">主页</string>
<string name="image_settings_summary">更改艺术家图片下载设置</string>
<string name="inserted_x_songs_into_playlist_x">将歌曲%1$d加入%2$s列表</string>
<string name="instagram_page">Instagram</string>
<string name="instagram_page_summary">分享你的设置到Instagram</string>
<string name="label_bit_rate">比特率</string>
<string name="label_file_format">格式</string>
<string name="label_file_name">文件名</string>
<string name="label_file_path">文件路径</string>
<string name="label_file_size">大小</string>
<string name="label_sampling_rate">采样率</string>
<string name="label_track_length"></string>
<string name="last_added">最近添加</string>
<string name="lets_play_something">让我们来播放些什么吧!</string>
<string name="library">浏览</string>
<string name="licenses">开源许可</string>
<string name="label_track_length"></string>
<string name="last_added">上次添加</string>
<string name="lets_play_something">来点音乐吧!</string>
<string name="library"></string>
<string name="licenses">许可</string>
<string name="light_theme_name">纯白</string>
<string name="listing_files">正在加载文件</string>
<string name="loading_products">加载产品</string>
<string name="listing_files">正在罗列所有文件</string>
<string name="loading_products">加载产品...</string>
<string name="lyrics">歌词</string>
<string name="my_name">我的名称</string>
<string name="my_top_tracks">最常播放</string>
<string name="never">永不</string>
<string name="new_playlist_title">新建播放列表</string>
<string name="new_start_directory">%s 已被设为新起始目录。</string>
<string name="material">材质</string>
<string name="my_name">我的名字</string>
<string name="my_top_tracks">播放最多</string>
<string name="never">从不</string>
<string name="new_playlist_title">新播放列表</string>
<string name="new_profile_photo">新头像</string>
<string name="new_start_directory">%s是新的开始目录</string>
<string name="no_albums">无专辑</string>
<string name="no_artists">无艺术家</string>
<string name="no_audio_ID">"先播放一首乐曲,稍后再作尝试。"</string>
<string name="no_equalizer">找不到均衡器</string>
<string name="no_audio_ID">"先放首曲子,然后再试试"</string>
<string name="no_equalizer">找不到均衡器</string>
<string name="no_genres">无流派</string>
<string name="no_lyrics_found">没有找到歌词</string>
<string name="no_lyrics_found">到歌词</string>
<string name="no_playlists">无播放列表</string>
<string name="no_purchase_found">没有发现您的购买记录。</string>
<string name="no_purchase_found">找不到支付记录</string>
<string name="no_results">无结果</string>
<string name="no_songs">无乐曲</string>
<string name="normal">一般设定</string>
<string name="not_listed_in_media_store"><![CDATA[媒体商店中没有 <b>%s</b>。]]></string>
<string name="nothing_to_scan">没有项目可供扫描。</string>
<string name="notification">通知</string>
<string name="notification_settings_summary">自定义通知类型</string>
<string name="no_songs">无歌曲</string>
<string name="normal">正常</string>
<string name="normal_lyrics">正常歌词</string>
<string name="normal_style">正常</string>
<string name="not_listed_in_media_store"><![CDATA[<b>%s</b>在多媒体商店没列出]]></string>
<string name="nothing_to_scan">检索不到任何东西</string>
<string name="notification">通知烂</string>
<string name="notification_settings_summary">自定义通知栏风格</string>
<string name="now_playing">正在播放</string>
<string name="now_playing_queue">当前播放队列</string>
<string name="only_on_wifi">通过 WiFi</string>
<string name="now_playing_queue">播放队列</string>
<string name="only_on_wifi">限Wi-Fi</string>
<string name="others">其他</string>
<string name="past_three_months">3个月内</string>
<string name="paypal">使用 PayPal 支付</string>
<string name="paypal_summary">使用 PayPal.me 可以方便地向我们捐赠。如果您只链接了一张信用卡或储蓄卡,在美国 PayPal 将会收取捐款中的 2.9% 另加 0.3 美元作为手续费,其他情况下无手续费。 <a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">更多</a></string>
<string name="permission_external_storage_denied">访问外部存储的权限被拒绝。</string>
<string name="permissions_denied">权限被拒绝。</string>
<string name="past_three_months">前三个月</string>
<string name="paypal">PayPal.me</string>
<string name="paypal_summary">PayPal.me是一种捐赠支持我的快捷方式。如果你只关联了一张借记卡或者一张信用卡那么要支付捐赠款额的2.9%以及0.3美元作为手续费,其他情况下免手续费。<a href="https://www.paypal.com/us/selfhelp/article/What-are-the-fees-for-PayPal-accounts-FAQ690">详情查看</a></string>
<string name="permission_external_storage_denied">无权访问外部存储</string>
<string name="permissions_denied">无权访问</string>
<string name="personalize">个性化</string>
<string name="personalize_settings_summary">自定义播放界面</string>
<string name="pick_from_local_storage">在本地存储中选取</string>
<string name="plain">纯色</string>
<string name="playing_notification_description">播放通知提供 播放/暂停 等操作。</string>
<string name="playing_notification_name">播放通知</string>
<string name="personalize_settings_summary">自定义正在播放控件和UI控件</string>
<string name="pick_from_local_storage">从本地选取</string>
<string name="playing_notification_description">播放通知栏提供播放/暂停等操作</string>
<string name="playing_notification_name">播放通知栏</string>
<string name="playlist_empty_text">空播放列表</string>
<string name="playlist_is_empty">播放列表为空</string>
<string name="playlist_name_empty">播放列表名</string>
<string name="playlist_name_empty">播放列表名</string>
<string name="playlists">播放列表</string>
<string name="pref_header_audio">音频</string>
<string name="pref_header_general">一般</string>
<string name="pref_header_images"></string>
<string name="pref_header_general">主题</string>
<string name="pref_header_images"></string>
<string name="pref_header_lockscreen">锁屏</string>
<string name="pref_header_playlists">播放列表</string>
<string name="pref_only_lollipop">"只适用于Android Lollipop (API 22) 及以上"</string>
<string name="pref_summary_album_art_on_lockscreen">将当前乐曲的专辑封面用作锁屏壁纸。</string>
<string name="pref_summary_audio_ducking">通知、导航及其他。</string>
<string name="pref_summary_blurred_album_art">在锁屏界面使用模糊专辑封面。可能导致第三方应用和小部件出现问题。</string>
<string name="pref_summary_carousel_effect">播放界面中专辑封面的旋转效果</string>
<string name="pref_summary_classic_notification">使用经典的通知风格。</string>
<string name="pref_summary_colored_app">背景与控制按钮的颜色随播放界面的专辑封面变化。</string>
<string name="pref_summary_colored_app_shortcuts">使用强调颜色作为应用快捷方式颜色。每次更改强调色后,请重新打开此选项。</string>
<string name="pref_summary_colored_navigation_bar">使用基础色作为导航栏颜色。</string>
<string name="pref_summary_colored_notification">"\u4f7f\u7528\u4e13\u8f91\u5c01\u9762\u4e3b\u8272\u5f69\u4f5c\u4e3a\u64ad\u653e\u901a\u77e5\u989c\u8272\u3002"</string>
<string name="pref_summary_dominant_color">主色彩将从专辑封面或艺术家肖像中选取</string>
<string name="pref_summary_gapless_playback">"在某些设备上可能会引起播放问题。"</string>
<string name="pref_summary_ignore_media_store_artwork">可提高专辑封面质量,但会使图片加载速度变慢。建议在专辑封面分辨率较低的情况下启用。</string>
<string name="pref_summary_lock_screen">锁屏页面控制</string>
<string name="pref_summary_open_source_licences">开源软件许可协议详情</string>
<string name="pref_summary_round_corners">在窗口、专辑封面等处启用圆角样式。</string>
<string name="pref_summary_tab_titles">启用/ 禁用底栏标题</string>
<string name="pref_summary_toggle_full_screen">启用沉浸模式</string>
<string name="pref_summary_toggle_headset">耳机插入时自动播放</string>
<string name="pref_summary_toggle_volume">如果正在播放界面有多余空间,显示音量控制</string>
<string name="pref_only_lollipop">"仅在Android 5.x(Lollipop)上可用"</string>
<string name="pref_summary_album_art_on_lockscreen">将正在播放的歌曲专辑封面设置为锁屏壁纸</string>
<string name="pref_summary_audio_ducking">系统音响起或消息提醒时降低音量</string>
<string name="pref_summary_blurred_album_art">在锁屏显示模糊化的专辑封面(可能会影响第三方应用或者小部件的正常运行)</string>
<string name="pref_summary_carousel_effect">在正在播放界面轮播专辑封面,需要注意在卡片模式以及模糊卡片主题下无效</string>
<string name="pref_summary_classic_notification">使用经典通知栏设计</string>
<string name="pref_summary_colored_app">背景色以及控件色跟随正在播放界面的专辑封面变化</string>
<string name="pref_summary_colored_app_shortcuts">将快捷方式颜色更改为强调色,每次颜色更改后需要切换一下该设置才能生效</string>
<string name="pref_summary_colored_navigation_bar">修改导航栏颜色为主调色</string>
<string name="pref_summary_colored_notification">"\u4fee\u6539\u901a\u77e5\u680f\u989c\u8272\u4e3a\u4e13\u8f91\u5c01\u9762\u7684\u4e3b\u8272\u8c03"</string>
<string name="pref_summary_dominant_color">从专辑封面或艺术家图中选取主色调</string>
<string name="pref_summary_gapless_playback">"在一些设备上可能会播放异常"</string>
<string name="pref_summary_ignore_media_store_artwork">可以提高专辑封面的质量,但是加载时候会较慢。建议只在不满意图片分辨率时开启</string>
<string name="pref_summary_lock_screen">使用Retro Music的自定义锁屏</string>
<string name="pref_summary_open_source_licences">开源许可详情</string>
<string name="pref_summary_round_corners">对应用边缘进行圆角化</string>
<string name="pref_summary_tab_titles">切换底部导航栏的标签标题</string>
<string name="pref_summary_toggle_full_screen">沉浸式</string>
<string name="pref_summary_toggle_headset">耳机连接后立刻播放</string>
<string name="pref_summary_toggle_shuffle">播放新列表时会关闭随机播放</string>
<string name="pref_summary_toggle_volume">空间充足时在播放界面显示音量控制控件</string>
<string name="pref_summary_extra_controls">给迷你播放器添加额外控件</string>
<string name="pref_summary_genre_toggle">切换流派标签</string>
<string name="pref_title_album_art_on_lockscreen">显示专辑封面</string>
<string name="pref_title_app_shortcuts">多彩应用快捷方式</string>
<string name="pref_title_audio_ducking">音频焦点丢失时降低音量</string>
<string name="pref_title_tab_text_mode">标签标题模式</string>
<string name="pref_title_album_grid_style">专辑方格</string>
<string name="pref_title_app_shortcuts">带颜色的快捷方式</string>
<string name="pref_title_artist_grid_style">艺术家方格</string>
<string name="pref_title_audio_ducking">不显示的时候降低音量</string>
<string name="pref_title_auto_download_artist_images">自动下载艺术家图片</string>
<string name="pref_title_blurred_album_art">模糊专辑封面</string>
<string name="pref_title_classic_notification">经典通知风格</string>
<string name="pref_title_choose_equalizer">选择均衡器</string>
<string name="pref_title_classic_notification">经典通知栏设计</string>
<string name="pref_title_colored_app">自适应颜色</string>
<string name="pref_title_colored_notification">多彩通知</string>
<string name="pref_title_gapless_playback">无缝播放</string>
<string name="pref_title_general_theme">一般主题</string>
<string name="pref_title_ignore_media_store_artwork">忽略内嵌专辑封面</string>
<string name="pref_title_last_added_interval">最近添加列表间隔</string>
<string name="pref_title_lock_screen">全屏播放控制</string>
<string name="pref_title_navigation_bar">多彩导航栏</string>
<string name="pref_title_now_playing_screen_appearance">外观</string>
<string name="pref_title_open_source_licences">开源许可协议</string>
<string name="pref_title_round_corners">屏幕圆角</string>
<string name="pref_title_toggle_carousel_effect">旋转效果</string>
<string name="pref_title_toggle_dominant_color">主色彩</string>
<string name="pref_title_toggle_full_screen">全屏控制</string>
<string name="pref_title_toggle_tab_titles">底栏标题</string>
<string name="pref_title_toggle_toggle_headset">自动播放</string>
<string name="pref_title_toggle_volume">音量控制</string>
<string name="pref_title_colored_notification">带颜色的通知栏</string>
<string name="pref_title_gapless_playback">无间隙连续播放</string>
<string name="pref_title_general_theme">应用主题</string>
<string name="pref_title_ignore_media_store_artwork">忽略多媒体商店封面</string>
<string name="pref_title_last_added_interval">上次添加播放列表到现在的间隔</string>
<string name="pref_title_lock_screen">全屏控件</string>
<string name="pref_title_navigation_bar">带颜色的导航栏</string>
<string name="pref_title_now_playing_screen_appearance">播放主题</string>
<string name="pref_title_open_source_licences">开源许可</string>
<string name="pref_title_round_corners">边角</string>
<string name="pref_title_toggle_carousel_effect">轮播效果</string>
<string name="pref_title_toggle_dominant_color">主色调</string>
<string name="pref_title_toggle_full_screen">全屏应用</string>
<string name="pref_title_toggle_tab_titles">标签标题</string>
<string name="pref_title_toggle_toggle_headset">音频播放</string>
<string name="pref_title_toggle_toggle_shuffle">随机播放</string>
<string name="pref_title_toggle_volume">音量控件</string>
<string name="pref_title_user_info">用户信息</string>
<string name="primary_color">基础色</string>
<string name="primary_color_desc">主题基础色默认为白色</string>
<string name="purchase">购买</string>
<string name="queue">播放队列</string>
<string name="rate_app">为本应用评分</string>
<string name="rate_on_google_play_summary">如果你喜欢 Retro Music请通过 Google Play 向我们反馈,以获得更好的体验。</string>
<string name="recent_albums">最近播放的专辑</string>
<string name="recent_artists">最近播放的艺术家</string>
<string name="remove_action">移除</string>
<string name="remove_cover">移除封面</string>
<string name="pref_title_extra_controls">额外控件</string>
<string name="pref_title_home_banner">主页横幅</string>
<string name="pref_title_genre_toggle">显示流派标签</string>
<string name="pref_title_album_cover_transform">正在播放的专辑封面风格</string>
<string name="primary_color">主颜色</string>
<string name="rate_app">评价这个应用</string>
<string name="remove_action">删除</string>
<string name="remove_from_blacklist">从黑名单中移除</string>
<string name="remove_song_from_playlist_title">从播放列表中删除乐曲</string>
<string name="remove_song_x_from_playlist"><![CDATA[确认要从播放列表中删除歌曲 <b>%1$s</b> 吗?]]></string>
<string name="remove_songs_from_playlist_title">从播放列表中删除多首乐曲</string>
<string name="remove_x_songs_from_playlist"><![CDATA[确认要从播放列表中删除 <b>%1$d</b> 首乐曲吗?]]></string>
<string name="remove_profile_photo">删除简介照片</string>
<string name="remove_song_from_playlist_title">从播放列表中删除歌曲</string>
<string name="remove_songs_from_playlist_title">从播放列表中删除歌曲</string>
<string name="rename_playlist_title">重命名播放列表</string>
<string name="reset_artist_image">重设艺术家图片</string>
<string name="restore">恢复</string>
<string name="restored_previous_purchase_please_restart">已经恢复以前的购买。 请重新启动 Retro Music 以使用所有功能。</string>
<string name="restored_previous_purchases">恢复购买。</string>
<string name="restoring_purchase">恢复您的购买</string>
<string name="retro_equalizer">Retro 均衡器</string>
<!-- SAF -->
<!-- SAF guide -->
<string name="save_playlist_title">保存为文件</string>
<string name="saved_playlist_to">已将播放列表保存到 %s。</string>
<string name="saving_changes">保存更改</string>
<string name="scanned_files">已扫描 %2$d 中的 %1$d 个文件。</string>
<string name="search_hint">在曲库中查找…</string>
<string name="set_artist_image">设置艺术家图片</string>
<string name="shuffle">随机播放</string>
<string name="simple">简单的</string>
<string name="sleep_timer_canceled">睡眠定时器已取消。</string>
<string name="sleep_timer_set">%d 分钟后自动停止播放。</string>
<string name="song">乐曲</string>
<string name="song_duration">歌曲时长</string>
<string name="songs">歌曲</string>
<string name="sort_order">排序</string>
<string name="speech_not_supported">抱歉!您的设备不支持语音输入。</string>
<string name="speech_prompt">在曲库中搜索</string>
<string name="summary_user_info">仅在主页面显示您的名字</string>
<string name="support_development">支持开发者</string>
<string name="saving_changes">保存修改</string>
<string name="scan_media">扫描媒体</string>
<!-- Message displayed when tag editing fails -->
<string name="thank_you">感谢!</string>
<string name="the_audio_file">音频文件</string>
<string name="this_month">本月</string>
<string name="this_week">本周</string>
<string name="this_year">今年</string>
<string name="tiny">极小的</string>
<string name="title_dashboard">控制面板</string>
<string name="title_good_afternoon">下午好</string>
<string name="title_good_day">完美的一天</string>
<string name="title_good_evening">晚上好</string>
<string name="title_good_morning">早上好</string>
<string name="title_good_night">晚安</string>
<string name="title_user_info">您的名字是?</string>
<string name="today">今天</string>
<string name="top_albums">播放次数最多的专辑</string>
<string name="top_artists">播放次数最多的艺术家</string>
<string name="track_hint">"曲目2 表示第 2 首歌曲,而 3004 表示第 3 张 CD 的第 4 首歌曲)"</string>
<string name="track_list">曲目编号</string>
<string name="translate">翻译</string>
<string name="unplayable_file">\u65e0\u6cd5\u64ad\u653e\u6b64\u4e50\u66f2\u3002</string>
<string name="up_next">接下来播放</string>
<string name="twitter_page">推特</string>
<string name="unplayable_file">\u65e0\u6cd5\u64ad\u653e\u8fd9\u9996\u6b4c\u3002</string>
<string name="update_image">更新图片</string>
<string name="updating">更新中</string>
<string name="updating">更新中...</string>
<string name="version">版本</string>
<string name="web_search">网络搜索</string>
<string name="what_do_you_want_to_share">您想分享什么?</string>
<string name="window">界面</string>
<string name="x_has_been_set_as_ringtone">将 %1$s 设为您的铃声。</string>
<string name="x_selected">已选择 %1$d 首</string>
<string name="year">年份</string>
<string name="what_do_you_want_to_share">你想分享什么?</string>
<string name="year"></string>
<string name="clear_app_data">清除应用数据</string>
<string name="error">错误</string>
<string name="now_playing_themes">9+种播放主题</string>
<string name="carousal_effect_on_now_playing_screen">在播放界面使用轮播效果</string>
<string name="now_playing_summary">自定义播放界面</string>
</resources>

View File

@ -79,7 +79,6 @@
<string name="pref_keep_screen_on_summary">請記住當您啟用此選項後或會影響電池壽命</string>
<string name="pref_blur_amount_title">模糊值</string>
<string name="pref_blur_amount_summary">給模糊模式主題的值,每值愈低就愈快</string>
<string name="buy_retro_music_pro">購買Retro Music Pro</string>
<string name="cancel_current_timer">取消</string>
<string name="card">卡片</string>
<string name="card_color_style">彩色卡片</string>
@ -172,7 +171,7 @@
<string name="never">永不</string>
<string name="new_banner_photo">新橫幅圖片</string>
<string name="new_playlist_title">新播放清單</string>
<string name="new_profile_photo">新個人資料圖片</string>
<string name="new_profile_photo">新個人資料圖片</string>
<string name="new_start_directory">最新的主目錄是%s。</string>
<string name="no_albums">沒有專輯</string>
<string name="no_artists">沒有歌手</string>
@ -240,6 +239,7 @@
<string name="pref_summary_genre_toggle">切換類型標籤</string>
<string name="pref_summary_home_banner">切換首頁橫幅樣式</string>
<string name="pref_title_album_art_on_lockscreen">顯示專輯圖片</string>
<string name="pref_title_tab_text_mode">標題標籤模式</string>
<string name="pref_title_album_grid_style">專輯網格</string>
<string name="pref_title_app_shortcuts">彩色程式捷徑</string>
<string name="pref_title_artist_grid_style">歌手網格</string>
@ -270,6 +270,8 @@
<string name="pref_title_extra_controls">額外控制項</string>
<string name="pref_title_home_banner">首頁橫幅</string>
<string name="pref_title_genre_toggle">顯示類型標籤</string>
<string name="pref_title_home_artist_grid_style">首頁歌手網格</string>
<string name="pref_title_album_cover_transform">現在播放專輯圖片風格</string>
<string name="primary_color">原色</string>
<string name="primary_color_desc">主原色預設為灰藍色,現在適用於深色色彩</string>
<string name="purchase">購買</string>
@ -380,4 +382,8 @@
<string name="full_card">完整卡片</string>
<string name="profile">個人資料</string>
<string name="bio">個人簡歷</string>
<string name="auto">自動</string>
<string name="labeled">已標記</string>
<string name="unlabeled">未標記</string>
<string name="selected">已選</string>
</resources>

View File

@ -67,8 +67,8 @@
<string name="app_shortcut_last_added_long">@string/last_added</string>
<string name="app_shortcut_last_added_short">@string/last_added</string>
<string name="app_shortcut_shuffle_all_long">@string/action_shuffle_all</string>
<string name="app_shortcut_shuffle_all_short">Shuffle</string>
<string name="app_shortcut_top_tracks_long">@string/my_top_tracks</string>
<string name="app_shortcut_shuffle_all_short">Shuffle</string>
<string name="app_shortcut_top_tracks_short">Top Tracks</string>
<string name="app_widget_big_name">Retro music - Big</string>
<string name="app_widget_card_name">Retro music - Card</string>
@ -526,7 +526,7 @@
<string name="made_with_love">Made with ❤️ in India</string>
<string name="clear_app_data">Clear app data</string>
<string name="bug_report_summary">An unexpected error occurred. Sorry you found this bug, if it
keeps crashing \"Clear app data\"</string>
keeps crashing \"Clear app data\" or Send an Email </string>
<string name="error">Error</string>
<string name="base_color_theme">Base color theme</string>
<string name="now_playing_themes">9+ now playing themes</string>
@ -588,4 +588,7 @@
<string name="copied_device_info_to_clipboard">Copied device info to clipboard.</string>
<string name="your_account_data_is_only_used_for_authentication">Your account data is only used for authentication.</string>
<string name="pref_snow_fall_title">Snow fall effect</string>
<string name="pref_title_blacklist">Blacklist</string>
<string name="pref_summary_blacklist">The content of blacklisted folders is hidden from your library.</string>
<string name="send_crash_log">Send crash log</string>
</resources>

View File

@ -130,4 +130,12 @@
<item name="rippleColor">?iconColor</item>
<item name="android:gravity">center_vertical</item>
</style>
<style name="ErrorHandlingTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="colorPrimary">@color/md_white_1000</item>
<item name="colorPrimaryDark">@color/md_white_1000</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowLightNavigationBar">true</item>
<item name="android:windowBackground">@color/md_white_1000</item>
</style>
</resources>

View File

@ -5,8 +5,8 @@
<code.name.monkey.retromusic.preferences.BlacklistPreference
android:key="blacklist"
android:summary="The content of blacklisted folders is hidden from your library."
android:title="Blacklist"
android:summary="@string/pref_summary_blacklist"
android:title="@string/pref_title_blacklist"
app:iconSpaceReserved="false" />
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>