overhaul existing preferences
This commit is contained in:
parent
6d9d3101c1
commit
7c83b50179
66 changed files with 98 additions and 543 deletions
|
|
@ -59,9 +59,7 @@ public class AlbumCoverPagerAdapter extends CustomFragmentStatePagerAdapter {
|
||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// only the latest ColorReceiver is guaranteed a response
|
||||||
* Only the latest passed {@link AlbumCoverFragment.ColorReceiver} is guaranteed to receive a response
|
|
||||||
*/
|
|
||||||
public void receiveColor(AlbumCoverFragment.ColorReceiver colorReceiver, int position) {
|
public void receiveColor(AlbumCoverFragment.ColorReceiver colorReceiver, int position) {
|
||||||
AlbumCoverFragment fragment = (AlbumCoverFragment) getFragment(position);
|
AlbumCoverFragment fragment = (AlbumCoverFragment) getFragment(position);
|
||||||
if (fragment != null) {
|
if (fragment != null) {
|
||||||
|
|
@ -74,7 +72,7 @@ public class AlbumCoverPagerAdapter extends CustomFragmentStatePagerAdapter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class AlbumCoverFragment extends Fragment implements SharedPreferences.OnSharedPreferenceChangeListener {
|
public static class AlbumCoverFragment extends Fragment {
|
||||||
private static final String SONG_ARG = "song";
|
private static final String SONG_ARG = "song";
|
||||||
|
|
||||||
private Unbinder unbinder;
|
private Unbinder unbinder;
|
||||||
|
|
@ -112,24 +110,18 @@ public class AlbumCoverPagerAdapter extends CustomFragmentStatePagerAdapter {
|
||||||
@Override
|
@Override
|
||||||
public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
|
public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
|
||||||
super.onViewCreated(view, savedInstanceState);
|
super.onViewCreated(view, savedInstanceState);
|
||||||
forceSquareAlbumCover(false);
|
|
||||||
// TODO
|
|
||||||
// forceSquareAlbumCover(PreferenceUtil.getInstance(getContext()).forceSquareAlbumCover());
|
|
||||||
PreferenceUtil.getInstance(getActivity()).registerOnSharedPreferenceChangedListener(this);
|
|
||||||
loadAlbumCover();
|
loadAlbumCover();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDestroyView() {
|
public void onDestroyView() {
|
||||||
super.onDestroyView();
|
super.onDestroyView();
|
||||||
PreferenceUtil.getInstance(getActivity()).unregisterOnSharedPreferenceChangedListener(this);
|
|
||||||
unbinder.unbind();
|
unbinder.unbind();
|
||||||
colorReceiver = null;
|
colorReceiver = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadAlbumCover() {
|
private void loadAlbumCover() {
|
||||||
SongGlideRequest.Builder.from(Glide.with(this), song)
|
SongGlideRequest.Builder.from(Glide.with(getContext()), song)
|
||||||
.checkIgnoreMediaStore(getActivity())
|
|
||||||
.generatePalette(getActivity()).build()
|
.generatePalette(getActivity()).build()
|
||||||
.into(new CustomPaletteTarget(albumCover) {
|
.into(new CustomPaletteTarget(albumCover) {
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -139,20 +131,6 @@ public class AlbumCoverPagerAdapter extends CustomFragmentStatePagerAdapter {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
|
|
||||||
switch (key) {
|
|
||||||
case PreferenceUtil.FORCE_SQUARE_ALBUM_COVER:
|
|
||||||
// TODO
|
|
||||||
// forceSquareAlbumCover(PreferenceUtil.getInstance(getActivity()).forceSquareAlbumCover());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void forceSquareAlbumCover(boolean forceSquareAlbumCover) {
|
|
||||||
albumCover.setScaleType(forceSquareAlbumCover ? ImageView.ScaleType.FIT_CENTER : ImageView.ScaleType.CENTER_CROP);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setColor(int color) {
|
private void setColor(int color) {
|
||||||
this.color = color;
|
this.color = color;
|
||||||
isColorReady = true;
|
isColorReady = true;
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ public class MusicLibraryPagerAdapter extends FragmentPagerAdapter {
|
||||||
public MusicLibraryPagerAdapter(@NonNull final Context context, final FragmentManager fragmentManager) {
|
public MusicLibraryPagerAdapter(@NonNull final Context context, final FragmentManager fragmentManager) {
|
||||||
super(fragmentManager);
|
super(fragmentManager);
|
||||||
mContext = context;
|
mContext = context;
|
||||||
setCategoryInfos(PreferenceUtil.getInstance(context).getLibraryCategoryInfos());
|
setCategoryInfos(PreferenceUtil.getInstance(context).getLibraryCategories());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCategoryInfos(@NonNull List<CategoryInfo> categoryInfos) {
|
public void setCategoryInfos(@NonNull List<CategoryInfo> categoryInfos) {
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ public class SearchAdapter extends RecyclerView.Adapter<SearchAdapter.ViewHolder
|
||||||
holder.title.setText(album.getTitle());
|
holder.title.setText(album.getTitle());
|
||||||
holder.text.setText(MusicUtil.getAlbumInfoString(activity, album));
|
holder.text.setText(MusicUtil.getAlbumInfoString(activity, album));
|
||||||
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
||||||
.checkIgnoreMediaStore(activity).build()
|
.build()
|
||||||
.into(holder.image);
|
.into(holder.image);
|
||||||
break;
|
break;
|
||||||
case ARTIST:
|
case ARTIST:
|
||||||
|
|
|
||||||
|
|
@ -134,7 +134,6 @@ public class AlbumAdapter extends AbsMultiSelectAdapter<AlbumAdapter.ViewHolder,
|
||||||
if (holder.image == null) return;
|
if (holder.image == null) return;
|
||||||
|
|
||||||
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
||||||
.checkIgnoreMediaStore(activity)
|
|
||||||
.generatePalette(activity).build()
|
.generatePalette(activity).build()
|
||||||
.into(new CustomPaletteTarget(holder.image) {
|
.into(new CustomPaletteTarget(holder.image) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,6 @@ public class HorizontalAlbumAdapter extends AlbumAdapter {
|
||||||
if (holder.image == null) return;
|
if (holder.image == null) return;
|
||||||
|
|
||||||
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
SongGlideRequest.Builder.from(Glide.with(activity), album.safeGetFirstSong())
|
||||||
.checkIgnoreMediaStore(activity)
|
|
||||||
.generatePalette(activity).build()
|
.generatePalette(activity).build()
|
||||||
.into(new CustomPaletteTarget(holder.image) {
|
.into(new CustomPaletteTarget(holder.image) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@ public class ArtistSongAdapter extends ArrayAdapter<Song> implements MaterialCab
|
||||||
songInfo.setText(song.albumName);
|
songInfo.setText(song.albumName);
|
||||||
|
|
||||||
SongGlideRequest.Builder.from(Glide.with(activity), song)
|
SongGlideRequest.Builder.from(Glide.with(activity), song)
|
||||||
.checkIgnoreMediaStore(activity).build()
|
.build()
|
||||||
.into(albumArt);
|
.into(albumArt);
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||||
|
|
|
||||||
|
|
@ -134,7 +134,6 @@ public class SongAdapter extends AbsMultiSelectAdapter<SongAdapter.ViewHolder, S
|
||||||
if (holder.image == null) return;
|
if (holder.image == null) return;
|
||||||
|
|
||||||
SongGlideRequest.Builder.from(Glide.with(activity), song)
|
SongGlideRequest.Builder.from(Glide.with(activity), song)
|
||||||
.checkIgnoreMediaStore(activity)
|
|
||||||
.generatePalette(activity).build()
|
.generatePalette(activity).build()
|
||||||
.into(new CustomPaletteTarget(holder.image) {
|
.into(new CustomPaletteTarget(holder.image) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -17,14 +17,11 @@ import com.kabouzeid.gramophone.glide.audiocover.AudioFileCover;
|
||||||
import com.kabouzeid.gramophone.glide.palette.BitmapPaletteTranscoder;
|
import com.kabouzeid.gramophone.glide.palette.BitmapPaletteTranscoder;
|
||||||
import com.kabouzeid.gramophone.glide.palette.BitmapPaletteWrapper;
|
import com.kabouzeid.gramophone.glide.palette.BitmapPaletteWrapper;
|
||||||
import com.kabouzeid.gramophone.model.Song;
|
import com.kabouzeid.gramophone.model.Song;
|
||||||
import com.kabouzeid.gramophone.util.MusicUtil;
|
|
||||||
import com.kabouzeid.gramophone.util.PreferenceUtil;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Karim Abou Zeid (kabouzeid)
|
* @author Karim Abou Zeid (kabouzeid)
|
||||||
*/
|
*/
|
||||||
public class SongGlideRequest {
|
public class SongGlideRequest {
|
||||||
|
|
||||||
public static final DiskCacheStrategy DEFAULT_DISK_CACHE_STRATEGY = DiskCacheStrategy.NONE;
|
public static final DiskCacheStrategy DEFAULT_DISK_CACHE_STRATEGY = DiskCacheStrategy.NONE;
|
||||||
public static final int DEFAULT_ERROR_IMAGE = R.drawable.default_album_art;
|
public static final int DEFAULT_ERROR_IMAGE = R.drawable.default_album_art;
|
||||||
public static final int DEFAULT_ANIMATION = android.R.anim.fade_in;
|
public static final int DEFAULT_ANIMATION = android.R.anim.fade_in;
|
||||||
|
|
@ -32,7 +29,6 @@ public class SongGlideRequest {
|
||||||
public static class Builder {
|
public static class Builder {
|
||||||
final RequestManager requestManager;
|
final RequestManager requestManager;
|
||||||
final Song song;
|
final Song song;
|
||||||
boolean ignoreMediaStore;
|
|
||||||
|
|
||||||
public static Builder from(@NonNull RequestManager requestManager, Song song) {
|
public static Builder from(@NonNull RequestManager requestManager, Song song) {
|
||||||
return new Builder(requestManager, song);
|
return new Builder(requestManager, song);
|
||||||
|
|
@ -51,18 +47,9 @@ public class SongGlideRequest {
|
||||||
return new BitmapBuilder(this);
|
return new BitmapBuilder(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder checkIgnoreMediaStore(Context context) {
|
|
||||||
return ignoreMediaStore(PreferenceUtil.getInstance(context).ignoreMediaStoreArtwork());
|
|
||||||
}
|
|
||||||
|
|
||||||
public Builder ignoreMediaStore(boolean ignoreMediaStore) {
|
|
||||||
this.ignoreMediaStore = ignoreMediaStore;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public DrawableRequestBuilder<GlideDrawable> build() {
|
public DrawableRequestBuilder<GlideDrawable> build() {
|
||||||
//noinspection unchecked
|
//noinspection unchecked
|
||||||
return createBaseRequest(requestManager, song, ignoreMediaStore)
|
return createBaseRequest(requestManager, song)
|
||||||
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
||||||
.error(DEFAULT_ERROR_IMAGE)
|
.error(DEFAULT_ERROR_IMAGE)
|
||||||
.animate(DEFAULT_ANIMATION)
|
.animate(DEFAULT_ANIMATION)
|
||||||
|
|
@ -79,7 +66,7 @@ public class SongGlideRequest {
|
||||||
|
|
||||||
public BitmapRequestBuilder<?, Bitmap> build() {
|
public BitmapRequestBuilder<?, Bitmap> build() {
|
||||||
//noinspection unchecked
|
//noinspection unchecked
|
||||||
return createBaseRequest(builder.requestManager, builder.song, builder.ignoreMediaStore)
|
return createBaseRequest(builder.requestManager, builder.song)
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
||||||
.error(DEFAULT_ERROR_IMAGE)
|
.error(DEFAULT_ERROR_IMAGE)
|
||||||
|
|
@ -99,7 +86,7 @@ public class SongGlideRequest {
|
||||||
|
|
||||||
public BitmapRequestBuilder<?, BitmapPaletteWrapper> build() {
|
public BitmapRequestBuilder<?, BitmapPaletteWrapper> build() {
|
||||||
//noinspection unchecked
|
//noinspection unchecked
|
||||||
return createBaseRequest(builder.requestManager, builder.song, builder.ignoreMediaStore)
|
return createBaseRequest(builder.requestManager, builder.song)
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.transcode(new BitmapPaletteTranscoder(context), BitmapPaletteWrapper.class)
|
.transcode(new BitmapPaletteTranscoder(context), BitmapPaletteWrapper.class)
|
||||||
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
.diskCacheStrategy(DEFAULT_DISK_CACHE_STRATEGY)
|
||||||
|
|
@ -109,12 +96,8 @@ public class SongGlideRequest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static DrawableTypeRequest createBaseRequest(RequestManager requestManager, Song song, boolean ignoreMediaStore) {
|
public static DrawableTypeRequest createBaseRequest(RequestManager requestManager, Song song) {
|
||||||
if (ignoreMediaStore) {
|
return requestManager.load(new AudioFileCover(song.data));
|
||||||
return requestManager.load(new AudioFileCover(song.data));
|
|
||||||
} else {
|
|
||||||
return requestManager.loadFromMediaStore(MusicUtil.getMediaStoreAlbumCoverUri(song.albumId));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Key createSignature(Song song) {
|
public static Key createSignature(Song song) {
|
||||||
|
|
|
||||||
|
|
@ -19,31 +19,25 @@ import com.bumptech.glide.Priority;
|
||||||
import com.bumptech.glide.load.data.DataFetcher;
|
import com.bumptech.glide.load.data.DataFetcher;
|
||||||
import com.kabouzeid.gramophone.glide.audiocover.AudioFileCoverUtils;
|
import com.kabouzeid.gramophone.glide.audiocover.AudioFileCoverUtils;
|
||||||
import com.kabouzeid.gramophone.util.ImageUtil;
|
import com.kabouzeid.gramophone.util.ImageUtil;
|
||||||
import com.kabouzeid.gramophone.util.PreferenceUtil;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Karim Abou Zeid (kabouzeid)
|
* @author Karim Abou Zeid (kabouzeid)
|
||||||
*/
|
*/
|
||||||
public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
||||||
|
|
||||||
private final ArtistImage model;
|
private ArtistImage model;
|
||||||
|
|
||||||
private InputStream stream;
|
private InputStream stream;
|
||||||
|
|
||||||
private boolean ignoreMediaStore;
|
public ArtistImageFetcher(final ArtistImage model) {
|
||||||
|
|
||||||
public ArtistImageFetcher(final ArtistImage model, boolean ignoreMediaStore) {
|
|
||||||
this.model = model;
|
this.model = model;
|
||||||
this.ignoreMediaStore = ignoreMediaStore;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getId() {
|
public String getId() {
|
||||||
Log.d("MOSAIC", "get id for" + model.artistName);
|
Log.d("MOSAIC", "get id for" + model.artistName);
|
||||||
// never return NULL here!
|
|
||||||
// this id is used to determine whether the image is already cached
|
// this id is used to determine whether the image is already cached
|
||||||
// we use the artist name as well as the album years + file paths
|
// we use the artist name as well as the album years + file paths
|
||||||
return model.toIdString() + "ignoremediastore:" + ignoreMediaStore;
|
return model.toIdString();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -65,18 +59,7 @@ public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for (final AlbumCover cover : albumCovers) {
|
for (final AlbumCover cover : albumCovers) {
|
||||||
byte[] picture = null;
|
InputStream stream = AudioFileCoverUtils.fallback(cover.getFilePath());
|
||||||
if (!ignoreMediaStore) {
|
|
||||||
retriever.setDataSource(cover.getFilePath());
|
|
||||||
picture = retriever.getEmbeddedPicture();
|
|
||||||
}
|
|
||||||
final InputStream stream;
|
|
||||||
if (picture != null) {
|
|
||||||
stream = new ByteArrayInputStream(picture);
|
|
||||||
} else {
|
|
||||||
stream = AudioFileCoverUtils.fallback(cover.getFilePath());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stream != null) {
|
if (stream != null) {
|
||||||
images.put(stream, cover.getYear());
|
images.put(stream, cover.getYear());
|
||||||
}
|
}
|
||||||
|
|
@ -120,14 +103,11 @@ public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
||||||
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
|
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
|
||||||
bitmap.compress(Bitmap.CompressFormat.PNG, 0, bos);
|
bitmap.compress(Bitmap.CompressFormat.PNG, 0, bos);
|
||||||
result = new ByteArrayInputStream(bos.toByteArray());
|
result = new ByteArrayInputStream(bos.toByteArray());
|
||||||
|
|
||||||
} else if (nbImages > 0) {
|
} else if (nbImages > 0) {
|
||||||
// we return the last cover album of the artist
|
// we return the last cover album of the artist
|
||||||
Map.Entry<InputStream, Integer> maxEntryYear = null;
|
Map.Entry<InputStream, Integer> maxEntryYear = null;
|
||||||
|
|
||||||
for (final Map.Entry<InputStream, Integer> entry : images.entrySet()) {
|
for (final Map.Entry<InputStream, Integer> entry : images.entrySet()) {
|
||||||
if (maxEntryYear == null || entry.getValue()
|
if (maxEntryYear == null || entry.getValue().compareTo(maxEntryYear.getValue()) > 0) {
|
||||||
.compareTo(maxEntryYear.getValue()) > 0) {
|
|
||||||
maxEntryYear = entry;
|
maxEntryYear = entry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -135,12 +115,8 @@ public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
||||||
if (maxEntryYear != null) {
|
if (maxEntryYear != null) {
|
||||||
result = maxEntryYear.getKey();
|
result = maxEntryYear.getKey();
|
||||||
} else {
|
} else {
|
||||||
result = images.entrySet()
|
result = images.entrySet().iterator().next().getKey();
|
||||||
.iterator()
|
|
||||||
.next()
|
|
||||||
.getKey();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
retriever.release();
|
retriever.release();
|
||||||
|
|
@ -151,7 +127,6 @@ public class ArtistImageFetcher implements DataFetcher<InputStream> {
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,12 +24,10 @@ public class ArtistImageLoader implements StreamModelLoader<ArtistImage> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DataFetcher<InputStream> getResourceFetcher(final ArtistImage model, int width, int height) {
|
public DataFetcher<InputStream> getResourceFetcher(final ArtistImage model, int width, int height) {
|
||||||
|
return new ArtistImageFetcher(model);
|
||||||
return new ArtistImageFetcher(model, PreferenceUtil.getInstance(context).ignoreMediaStoreArtwork());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Factory implements ModelLoaderFactory<ArtistImage, InputStream> {
|
public static class Factory implements ModelLoaderFactory<ArtistImage, InputStream> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ModelLoader<ArtistImage, InputStream> build(Context context, GenericLoaderFactory factories) {
|
public ModelLoader<ArtistImage, InputStream> build(Context context, GenericLoaderFactory factories) {
|
||||||
return new ArtistImageLoader(context);
|
return new ArtistImageLoader(context);
|
||||||
|
|
@ -37,8 +35,6 @@ public class ArtistImageLoader implements StreamModelLoader<ArtistImage> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void teardown() {
|
public void teardown() {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -178,7 +178,7 @@ public class MusicPlayerRemote {
|
||||||
public static void openQueue(final List<Song> queue, final int startPosition, final boolean startPlaying) {
|
public static void openQueue(final List<Song> queue, final int startPosition, final boolean startPlaying) {
|
||||||
if (!tryToHandleOpenPlayingQueue(queue, startPosition, startPlaying) && musicService != null) {
|
if (!tryToHandleOpenPlayingQueue(queue, startPosition, startPlaying) && musicService != null) {
|
||||||
musicService.openQueue(queue, startPosition, startPlaying);
|
musicService.openQueue(queue, startPosition, startPlaying);
|
||||||
if (!PreferenceUtil.getInstance(musicService).rememberShuffle()){
|
if (!PreferenceUtil.getInstance(musicService).getRememberShuffle()){
|
||||||
setShuffleMode(MusicService.SHUFFLE_MODE_NONE);
|
setShuffleMode(MusicService.SHUFFLE_MODE_NONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ public class LibraryPreferenceDialog extends DialogFragment {
|
||||||
if (savedInstanceState != null) {
|
if (savedInstanceState != null) {
|
||||||
categoryInfos = savedInstanceState.getParcelableArrayList(PreferenceUtil.LIBRARY_CATEGORIES);
|
categoryInfos = savedInstanceState.getParcelableArrayList(PreferenceUtil.LIBRARY_CATEGORIES);
|
||||||
} else {
|
} else {
|
||||||
categoryInfos = PreferenceUtil.getInstance(getContext()).getLibraryCategoryInfos();
|
categoryInfos = PreferenceUtil.getInstance(getContext()).getLibraryCategories();
|
||||||
}
|
}
|
||||||
adapter = new CategoryInfoAdapter(categoryInfos);
|
adapter = new CategoryInfoAdapter(categoryInfos);
|
||||||
|
|
||||||
|
|
@ -51,7 +51,7 @@ public class LibraryPreferenceDialog extends DialogFragment {
|
||||||
.negativeText(android.R.string.cancel)
|
.negativeText(android.R.string.cancel)
|
||||||
.neutralText(R.string.reset_action)
|
.neutralText(R.string.reset_action)
|
||||||
.autoDismiss(false)
|
.autoDismiss(false)
|
||||||
.onNeutral((dialog, action) -> adapter.setCategoryInfos(PreferenceUtil.getInstance(getContext()).getDefaultLibraryCategoryInfos()))
|
.onNeutral((dialog, action) -> adapter.setCategoryInfos(PreferenceUtil.getInstance(getContext()).getDefaultLibraryCategories()))
|
||||||
.onNegative((dialog, action) -> dismiss())
|
.onNegative((dialog, action) -> dismiss())
|
||||||
.onPositive((dialog, action) -> {
|
.onPositive((dialog, action) -> {
|
||||||
updateCategories(adapter.getCategoryInfos());
|
updateCategories(adapter.getCategoryInfos());
|
||||||
|
|
@ -69,7 +69,7 @@ public class LibraryPreferenceDialog extends DialogFragment {
|
||||||
private void updateCategories(List<CategoryInfo> categories) {
|
private void updateCategories(List<CategoryInfo> categories) {
|
||||||
if (getSelected(categories) == 0) return;
|
if (getSelected(categories) == 0) return;
|
||||||
|
|
||||||
PreferenceUtil.getInstance(getContext()).setLibraryCategoryInfos(categories);
|
PreferenceUtil.getInstance(getContext()).setLibraryCategories(categories);
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getSelected(List<CategoryInfo> categories) {
|
private int getSelected(List<CategoryInfo> categories) {
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ public class MultiPlayer implements Playback, MediaPlayer.OnErrorListener, Media
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (PreferenceUtil.getInstance(context).gaplessPlayback()) {
|
if (PreferenceUtil.getInstance(context).getGaplessPlayback()) {
|
||||||
mNextMediaPlayer = new MediaPlayer();
|
mNextMediaPlayer = new MediaPlayer();
|
||||||
mNextMediaPlayer.setWakeMode(context, PowerManager.PARTIAL_WAKE_LOCK);
|
mNextMediaPlayer.setWakeMode(context, PowerManager.PARTIAL_WAKE_LOCK);
|
||||||
mNextMediaPlayer.setAudioSessionId(getAudioSessionId());
|
mNextMediaPlayer.setAudioSessionId(getAudioSessionId());
|
||||||
|
|
|
||||||
|
|
@ -587,12 +587,11 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
metaData.putLong(MediaMetadataCompat.METADATA_KEY_NUM_TRACKS, getPlayingQueue().size());
|
metaData.putLong(MediaMetadataCompat.METADATA_KEY_NUM_TRACKS, getPlayingQueue().size());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PreferenceUtil.getInstance(this).albumArtOnLockscreen()) {
|
if (PreferenceUtil.getInstance(this).getShowAlbumCover()) {
|
||||||
final Point screenSize = Util.getScreenSize(MusicService.this);
|
final Point screenSize = Util.getScreenSize(MusicService.this);
|
||||||
final BitmapRequestBuilder<?, Bitmap> request = SongGlideRequest.Builder.from(Glide.with(MusicService.this), song)
|
final BitmapRequestBuilder<?, Bitmap> request = SongGlideRequest.Builder.from(Glide.with(MusicService.this), song)
|
||||||
.checkIgnoreMediaStore(MusicService.this)
|
|
||||||
.asBitmap().build();
|
.asBitmap().build();
|
||||||
if (PreferenceUtil.getInstance(this).blurredAlbumArt()) {
|
if (PreferenceUtil.getInstance(this).getBlurAlbumCover()) {
|
||||||
request.transform(new BlurTransformation.Builder(MusicService.this).build());
|
request.transform(new BlurTransformation.Builder(MusicService.this).build());
|
||||||
}
|
}
|
||||||
runOnUiThread(new Runnable() {
|
runOnUiThread(new Runnable() {
|
||||||
|
|
@ -1118,8 +1117,8 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
playback.setNextDataSource(null);
|
playback.setNextDataSource(null);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case PreferenceUtil.ALBUM_ART_ON_LOCKSCREEN:
|
case PreferenceUtil.SHOW_ALBUM_COVER:
|
||||||
case PreferenceUtil.BLURRED_ALBUM_ART:
|
case PreferenceUtil.BLUR_ALBUM_COVER:
|
||||||
updateMediaSessionMetaData();
|
updateMediaSessionMetaData();
|
||||||
break;
|
break;
|
||||||
case PreferenceUtil.COLORED_NOTIFICATION:
|
case PreferenceUtil.COLORED_NOTIFICATION:
|
||||||
|
|
@ -1162,7 +1161,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
|
|
||||||
switch (msg.what) {
|
switch (msg.what) {
|
||||||
case DUCK:
|
case DUCK:
|
||||||
if (PreferenceUtil.getInstance(service).audioDucking()) {
|
if (PreferenceUtil.getInstance(service).getAudioDucking()) {
|
||||||
currentDuckVolume -= .05f;
|
currentDuckVolume -= .05f;
|
||||||
if (currentDuckVolume > .2f) {
|
if (currentDuckVolume > .2f) {
|
||||||
sendEmptyMessageDelayed(DUCK, 10);
|
sendEmptyMessageDelayed(DUCK, 10);
|
||||||
|
|
@ -1176,7 +1175,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case UNDUCK:
|
case UNDUCK:
|
||||||
if (PreferenceUtil.getInstance(service).audioDucking()) {
|
if (PreferenceUtil.getInstance(service).getAudioDucking()) {
|
||||||
currentDuckVolume += .03f;
|
currentDuckVolume += .03f;
|
||||||
if (currentDuckVolume < 1f) {
|
if (currentDuckVolume < 1f) {
|
||||||
sendEmptyMessageDelayed(UNDUCK, 10);
|
sendEmptyMessageDelayed(UNDUCK, 10);
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,6 @@ public class PlayingNotificationImpl extends PlayingNotification {
|
||||||
Glide.clear(target);
|
Glide.clear(target);
|
||||||
}
|
}
|
||||||
target = SongGlideRequest.Builder.from(Glide.with(service), song)
|
target = SongGlideRequest.Builder.from(Glide.with(service), song)
|
||||||
.checkIgnoreMediaStore(service)
|
|
||||||
.generatePalette(service).build()
|
.generatePalette(service).build()
|
||||||
.into(new SimpleTarget<BitmapPaletteWrapper>(bigNotificationImageSize, bigNotificationImageSize) {
|
.into(new SimpleTarget<BitmapPaletteWrapper>(bigNotificationImageSize, bigNotificationImageSize) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,6 @@ public class PlayingNotificationImpl24 extends PlayingNotification {
|
||||||
|
|
||||||
final int bigNotificationImageSize = service.getResources().getDimensionPixelSize(R.dimen.notification_big_image_size);
|
final int bigNotificationImageSize = service.getResources().getDimensionPixelSize(R.dimen.notification_big_image_size);
|
||||||
service.runOnUiThread(() -> SongGlideRequest.Builder.from(Glide.with(service), song)
|
service.runOnUiThread(() -> SongGlideRequest.Builder.from(Glide.with(service), song)
|
||||||
.checkIgnoreMediaStore(service)
|
|
||||||
.generatePalette(service).build()
|
.generatePalette(service).build()
|
||||||
.into(new SimpleTarget<BitmapPaletteWrapper>(bigNotificationImageSize, bigNotificationImageSize) {
|
.into(new SimpleTarget<BitmapPaletteWrapper>(bigNotificationImageSize, bigNotificationImageSize) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -140,7 +140,6 @@ public class AlbumDetailActivity extends AbsSlidingMusicPanelActivity implements
|
||||||
|
|
||||||
private void loadAlbumCover() {
|
private void loadAlbumCover() {
|
||||||
SongGlideRequest.Builder.from(Glide.with(this), getAlbum().safeGetFirstSong())
|
SongGlideRequest.Builder.from(Glide.with(this), getAlbum().safeGetFirstSong())
|
||||||
.checkIgnoreMediaStore(this)
|
|
||||||
.generatePalette(this).build()
|
.generatePalette(this).build()
|
||||||
.dontAnimate()
|
.dontAnimate()
|
||||||
.into(new CustomPaletteTarget(albumArtImageView) {
|
.into(new CustomPaletteTarget(albumArtImageView) {
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ public class ArtistDetailActivity extends AbsSlidingMusicPanelActivity implement
|
||||||
setDrawUnderStatusbar();
|
setDrawUnderStatusbar();
|
||||||
ButterKnife.bind(this);
|
ButterKnife.bind(this);
|
||||||
|
|
||||||
usePalette = PreferenceUtil.getInstance(this).albumArtistColoredFooters();
|
usePalette = PreferenceUtil.getInstance(this).getAlbumArtistColoredFooters();
|
||||||
|
|
||||||
initViews();
|
initViews();
|
||||||
setUpObservableListViewParams();
|
setUpObservableListViewParams();
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ public class MainActivity extends AbsSlidingMusicPanelActivity {
|
||||||
((TextView) navigationDrawerHeader.findViewById(R.id.title)).setText(song.title);
|
((TextView) navigationDrawerHeader.findViewById(R.id.title)).setText(song.title);
|
||||||
((TextView) navigationDrawerHeader.findViewById(R.id.text)).setText(MusicUtil.getSongInfoString(song));
|
((TextView) navigationDrawerHeader.findViewById(R.id.text)).setText(MusicUtil.getSongInfoString(song));
|
||||||
SongGlideRequest.Builder.from(Glide.with(this), song)
|
SongGlideRequest.Builder.from(Glide.with(this), song)
|
||||||
.checkIgnoreMediaStore(this).build()
|
.build()
|
||||||
.into(((ImageView) navigationDrawerHeader.findViewById(R.id.image)));
|
.into(((ImageView) navigationDrawerHeader.findViewById(R.id.image)));
|
||||||
} else {
|
} else {
|
||||||
if (navigationDrawerHeader != null) {
|
if (navigationDrawerHeader != null) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
package com.kabouzeid.gramophone.ui.activities;
|
package com.kabouzeid.gramophone.ui.activities;
|
||||||
|
|
||||||
import android.content.Intent;
|
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
|
@ -15,14 +14,12 @@ import androidx.preference.TwoStatePreference;
|
||||||
import androidx.appcompat.widget.Toolbar;
|
import androidx.appcompat.widget.Toolbar;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.Toast;
|
|
||||||
|
|
||||||
import com.afollestad.materialdialogs.color.ColorChooserDialog;
|
import com.afollestad.materialdialogs.color.ColorChooserDialog;
|
||||||
import com.kabouzeid.appthemehelper.ThemeStore;
|
import com.kabouzeid.appthemehelper.ThemeStore;
|
||||||
import com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEColorPreference;
|
import com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEColorPreference;
|
||||||
import com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceFragmentCompat;
|
import com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceFragmentCompat;
|
||||||
import com.kabouzeid.appthemehelper.util.ColorUtil;
|
import com.kabouzeid.appthemehelper.util.ColorUtil;
|
||||||
import com.kabouzeid.gramophone.App;
|
|
||||||
import com.kabouzeid.gramophone.R;
|
import com.kabouzeid.gramophone.R;
|
||||||
import com.kabouzeid.gramophone.shortcuts.DynamicShortcutManager;
|
import com.kabouzeid.gramophone.shortcuts.DynamicShortcutManager;
|
||||||
import com.kabouzeid.gramophone.preferences.LibraryPreference;
|
import com.kabouzeid.gramophone.preferences.LibraryPreference;
|
||||||
|
|
@ -123,7 +120,6 @@ public class SettingsActivity extends AbsBaseActivity implements ColorChooserDia
|
||||||
addPreferencesFromResource(R.xml.pref_colors);
|
addPreferencesFromResource(R.xml.pref_colors);
|
||||||
addPreferencesFromResource(R.xml.pref_notification);
|
addPreferencesFromResource(R.xml.pref_notification);
|
||||||
addPreferencesFromResource(R.xml.pref_now_playing_screen);
|
addPreferencesFromResource(R.xml.pref_now_playing_screen);
|
||||||
addPreferencesFromResource(R.xml.pref_images);
|
|
||||||
addPreferencesFromResource(R.xml.pref_lockscreen);
|
addPreferencesFromResource(R.xml.pref_lockscreen);
|
||||||
addPreferencesFromResource(R.xml.pref_audio);
|
addPreferencesFromResource(R.xml.pref_audio);
|
||||||
addPreferencesFromResource(R.xml.pref_playlists);
|
addPreferencesFromResource(R.xml.pref_playlists);
|
||||||
|
|
@ -172,13 +168,6 @@ public class SettingsActivity extends AbsBaseActivity implements ColorChooserDia
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
final Preference autoDownloadImagesPolicy = findPreference("auto_download_images_policy");
|
|
||||||
setSummary(autoDownloadImagesPolicy);
|
|
||||||
autoDownloadImagesPolicy.setOnPreferenceChangeListener((preference, o) -> {
|
|
||||||
setSummary(autoDownloadImagesPolicy, o);
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
|
|
||||||
final ATEColorPreference primaryColorPref = (ATEColorPreference) findPreference("primary_color");
|
final ATEColorPreference primaryColorPref = (ATEColorPreference) findPreference("primary_color");
|
||||||
final int primaryColor = ThemeStore.primaryColor(getActivity());
|
final int primaryColor = ThemeStore.primaryColor(getActivity());
|
||||||
primaryColorPref.setColor(primaryColor, ColorUtil.darkenColor(primaryColor));
|
primaryColorPref.setColor(primaryColor, ColorUtil.darkenColor(primaryColor));
|
||||||
|
|
@ -265,7 +254,7 @@ public class SettingsActivity extends AbsBaseActivity implements ColorChooserDia
|
||||||
@Override
|
@Override
|
||||||
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case PreferenceUtil.NOW_PLAYING_SCREEN_ID:
|
case PreferenceUtil.NOW_PLAYING_SCREEN:
|
||||||
updateNowPlayingScreenSummary();
|
updateNowPlayingScreenSummary();
|
||||||
break;
|
break;
|
||||||
case PreferenceUtil.CLASSIC_NOTIFICATION:
|
case PreferenceUtil.CLASSIC_NOTIFICATION:
|
||||||
|
|
|
||||||
|
|
@ -101,12 +101,12 @@ public class LibraryFragment extends AbsMainActivityFragment implements CabHolde
|
||||||
public void onSharedPreferenceChanged(SharedPreferences preferences, String key) {
|
public void onSharedPreferenceChanged(SharedPreferences preferences, String key) {
|
||||||
if (PreferenceUtil.LIBRARY_CATEGORIES.equals(key)) {
|
if (PreferenceUtil.LIBRARY_CATEGORIES.equals(key)) {
|
||||||
Fragment current = getCurrentFragment();
|
Fragment current = getCurrentFragment();
|
||||||
pagerAdapter.setCategoryInfos(PreferenceUtil.getInstance(getActivity()).getLibraryCategoryInfos());
|
pagerAdapter.setCategoryInfos(PreferenceUtil.getInstance(getActivity()).getLibraryCategories());
|
||||||
pager.setOffscreenPageLimit(pagerAdapter.getCount() - 1);
|
pager.setOffscreenPageLimit(pagerAdapter.getCount() - 1);
|
||||||
int position = pagerAdapter.getItemPosition(current);
|
int position = pagerAdapter.getItemPosition(current);
|
||||||
if (position < 0) position = 0;
|
if (position < 0) position = 0;
|
||||||
pager.setCurrentItem(position);
|
pager.setCurrentItem(position);
|
||||||
PreferenceUtil.getInstance(getContext()).setLastPage(position);
|
PreferenceUtil.getInstance(getContext()).setLastTab(position);
|
||||||
|
|
||||||
updateTabVisibility();
|
updateTabVisibility();
|
||||||
}
|
}
|
||||||
|
|
@ -137,8 +137,8 @@ public class LibraryFragment extends AbsMainActivityFragment implements CabHolde
|
||||||
|
|
||||||
updateTabVisibility();
|
updateTabVisibility();
|
||||||
|
|
||||||
if (PreferenceUtil.getInstance(getContext()).rememberLastTab()) {
|
if (PreferenceUtil.getInstance(getContext()).getRememberLastTab()) {
|
||||||
pager.setCurrentItem(PreferenceUtil.getInstance(getContext()).getLastPage());
|
pager.setCurrentItem(PreferenceUtil.getInstance(getContext()).getLastTab());
|
||||||
}
|
}
|
||||||
pager.addOnPageChangeListener(this);
|
pager.addOnPageChangeListener(this);
|
||||||
}
|
}
|
||||||
|
|
@ -443,7 +443,7 @@ public class LibraryFragment extends AbsMainActivityFragment implements CabHolde
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPageSelected(int position) {
|
public void onPageSelected(int position) {
|
||||||
PreferenceUtil.getInstance(getActivity()).setLastPage(position);
|
PreferenceUtil.getInstance(getActivity()).setLastTab(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ public class AlbumsFragment extends AbsLibraryPagerRecyclerViewCustomGridSizeFra
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean loadUsePalette() {
|
public boolean loadUsePalette() {
|
||||||
return PreferenceUtil.getInstance(getActivity()).albumColoredFooters();
|
return PreferenceUtil.getInstance(getActivity()).getAlbumColoredFooters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@ public class ArtistsFragment extends AbsLibraryPagerRecyclerViewCustomGridSizeFr
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean loadUsePalette() {
|
public boolean loadUsePalette() {
|
||||||
return PreferenceUtil.getInstance(getActivity()).artistColoredFooters();
|
return PreferenceUtil.getInstance(getActivity()).getArtistColoredFooters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ public class SongsFragment extends AbsLibraryPagerRecyclerViewCustomGridSizeFrag
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean loadUsePalette() {
|
public boolean loadUsePalette() {
|
||||||
return PreferenceUtil.getInstance(getActivity()).songColoredFooters();
|
return PreferenceUtil.getInstance(getActivity()).getSongColoredFooters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -37,13 +37,6 @@ import java.util.Locale;
|
||||||
* @author Karim Abou Zeid (kabouzeid)
|
* @author Karim Abou Zeid (kabouzeid)
|
||||||
*/
|
*/
|
||||||
public class MusicUtil {
|
public class MusicUtil {
|
||||||
|
|
||||||
public static Uri getMediaStoreAlbumCoverUri(int albumId) {
|
|
||||||
final Uri sArtworkUri = Uri.parse("content://media/external/audio/albumart");
|
|
||||||
|
|
||||||
return ContentUris.withAppendedId(sArtworkUri, albumId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Uri getSongFileUri(int songId) {
|
public static Uri getSongFileUri(int songId) {
|
||||||
return ContentUris.withAppendedId(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, songId);
|
return ContentUris.withAppendedId(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, songId);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
package com.kabouzeid.gramophone.util;
|
package com.kabouzeid.gramophone.util;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.net.ConnectivityManager;
|
|
||||||
import android.net.NetworkInfo;
|
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import androidx.annotation.StyleRes;
|
import androidx.annotation.StyleRes;
|
||||||
|
|
||||||
|
|
@ -22,10 +19,11 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public final class PreferenceUtil {
|
public final class PreferenceUtil {
|
||||||
public static final String GENERAL_THEME = "general_theme";
|
public static final String LIBRARY_CATEGORIES = "library_categories";
|
||||||
public static final String REMEMBER_LAST_TAB = "remember_last_tab";
|
public static final String REMEMBER_LAST_TAB = "remember_last_tab";
|
||||||
public static final String LAST_PAGE = "last_start_page";
|
public static final String LAST_TAB = "last_tab";
|
||||||
public static final String NOW_PLAYING_SCREEN_ID = "now_playing_screen_id";
|
|
||||||
|
public static final String NOW_PLAYING_SCREEN = "now_playing_screen";
|
||||||
|
|
||||||
public static final String ARTIST_SORT_ORDER = "artist_sort_order";
|
public static final String ARTIST_SORT_ORDER = "artist_sort_order";
|
||||||
public static final String ARTIST_SONG_SORT_ORDER = "artist_song_sort_order";
|
public static final String ARTIST_SONG_SORT_ORDER = "artist_song_sort_order";
|
||||||
|
|
@ -49,35 +47,25 @@ public final class PreferenceUtil {
|
||||||
public static final String ARTIST_COLORED_FOOTERS = "artist_colored_footers";
|
public static final String ARTIST_COLORED_FOOTERS = "artist_colored_footers";
|
||||||
public static final String ALBUM_ARTIST_COLORED_FOOTERS = "album_artist_colored_footers";
|
public static final String ALBUM_ARTIST_COLORED_FOOTERS = "album_artist_colored_footers";
|
||||||
|
|
||||||
public static final String FORCE_SQUARE_ALBUM_COVER = "force_square_album_art";
|
|
||||||
|
|
||||||
public static final String COLORED_NOTIFICATION = "colored_notification";
|
public static final String COLORED_NOTIFICATION = "colored_notification";
|
||||||
public static final String CLASSIC_NOTIFICATION = "classic_notification";
|
public static final String CLASSIC_NOTIFICATION = "classic_notification";
|
||||||
|
|
||||||
|
public static final String GENERAL_THEME = "general_theme";
|
||||||
public static final String COLORED_APP_SHORTCUTS = "colored_app_shortcuts";
|
public static final String COLORED_APP_SHORTCUTS = "colored_app_shortcuts";
|
||||||
|
|
||||||
public static final String AUDIO_DUCKING = "audio_ducking";
|
public static final String AUDIO_DUCKING = "audio_ducking";
|
||||||
public static final String GAPLESS_PLAYBACK = "gapless_playback";
|
public static final String GAPLESS_PLAYBACK = "gapless_playback";
|
||||||
|
public static final String REMEMBER_SHUFFLE = "remember_shuffle";
|
||||||
|
|
||||||
public static final String LAST_ADDED_CUTOFF = "last_added_interval";
|
public static final String LAST_ADDED_CUTOFF = "last_added_interval";
|
||||||
|
|
||||||
public static final String ALBUM_ART_ON_LOCKSCREEN = "album_art_on_lockscreen";
|
public static final String SHOW_ALBUM_COVER = "show_album_cover";
|
||||||
public static final String BLURRED_ALBUM_ART = "blurred_album_art";
|
public static final String BLUR_ALBUM_COVER = "blur_album_cover";
|
||||||
|
|
||||||
public static final String LAST_SLEEP_TIMER_VALUE = "last_sleep_timer_value";
|
public static final String LAST_SLEEP_TIMER_VALUE = "last_sleep_timer_value";
|
||||||
public static final String NEXT_SLEEP_TIMER_ELAPSED_REALTIME = "next_sleep_timer_elapsed_real_time";
|
public static final String NEXT_SLEEP_TIMER_ELAPSED_REALTIME = "next_sleep_timer_elapsed_real_time";
|
||||||
public static final String SLEEP_TIMER_FINISH_SONG = "sleep_timer_finish_music";
|
public static final String SLEEP_TIMER_FINISH_SONG = "sleep_timer_finish_music";
|
||||||
|
|
||||||
public static final String IGNORE_MEDIA_STORE_ARTWORK = "ignore_media_store_artwork";
|
|
||||||
|
|
||||||
public static final String AUTO_DOWNLOAD_IMAGES_POLICY = "auto_download_images_policy";
|
|
||||||
|
|
||||||
public static final String SYNCHRONIZED_LYRICS_SHOW = "synchronized_lyrics_show";
|
|
||||||
|
|
||||||
public static final String LIBRARY_CATEGORIES = "library_categories";
|
|
||||||
|
|
||||||
private static final String REMEMBER_SHUFFLE = "remember_shuffle";
|
|
||||||
|
|
||||||
private static PreferenceUtil sInstance;
|
private static PreferenceUtil sInstance;
|
||||||
|
|
||||||
private final SharedPreferences mPreferences;
|
private final SharedPreferences mPreferences;
|
||||||
|
|
@ -93,20 +81,6 @@ public final class PreferenceUtil {
|
||||||
return sInstance;
|
return sInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isAllowedToDownloadMetadata(final Context context) {
|
|
||||||
switch (getInstance(context).autoDownloadImagesPolicy()) {
|
|
||||||
case "always":
|
|
||||||
return true;
|
|
||||||
case "only_wifi":
|
|
||||||
final ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
|
|
||||||
NetworkInfo netInfo = connectivityManager.getActiveNetworkInfo();
|
|
||||||
return netInfo != null && netInfo.getType() == ConnectivityManager.TYPE_WIFI && netInfo.isConnectedOrConnecting();
|
|
||||||
case "never":
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void registerOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) {
|
public void registerOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) {
|
||||||
mPreferences.registerOnSharedPreferenceChangeListener(sharedPreferenceChangeListener);
|
mPreferences.registerOnSharedPreferenceChangeListener(sharedPreferenceChangeListener);
|
||||||
}
|
}
|
||||||
|
|
@ -120,12 +94,6 @@ public final class PreferenceUtil {
|
||||||
return getThemeResFromPrefValue(mPreferences.getString(GENERAL_THEME, "light"));
|
return getThemeResFromPrefValue(mPreferences.getString(GENERAL_THEME, "light"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGeneralTheme(String theme) {
|
|
||||||
final SharedPreferences.Editor editor = mPreferences.edit();
|
|
||||||
editor.putString(GENERAL_THEME, theme);
|
|
||||||
editor.commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
@StyleRes
|
@StyleRes
|
||||||
public static int getThemeResFromPrefValue(String themePrefValue) {
|
public static int getThemeResFromPrefValue(String themePrefValue) {
|
||||||
switch (themePrefValue) {
|
switch (themePrefValue) {
|
||||||
|
|
@ -139,33 +107,32 @@ public final class PreferenceUtil {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean rememberLastTab() {
|
public final boolean getRememberLastTab() {
|
||||||
return mPreferences.getBoolean(REMEMBER_LAST_TAB, true);
|
return mPreferences.getBoolean(REMEMBER_LAST_TAB, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLastPage(final int value) {
|
public final int getLastTab() {
|
||||||
|
return mPreferences.getInt(LAST_TAB, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLastTab(final int value) {
|
||||||
final SharedPreferences.Editor editor = mPreferences.edit();
|
final SharedPreferences.Editor editor = mPreferences.edit();
|
||||||
editor.putInt(LAST_PAGE, value);
|
editor.putInt(LAST_TAB, value);
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getLastPage() {
|
|
||||||
return mPreferences.getInt(LAST_PAGE, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public final NowPlayingScreen getNowPlayingScreen() {
|
public final NowPlayingScreen getNowPlayingScreen() {
|
||||||
int id = mPreferences.getInt(NOW_PLAYING_SCREEN_ID, 0);
|
int id = mPreferences.getInt(NOW_PLAYING_SCREEN, 0);
|
||||||
for (NowPlayingScreen nowPlayingScreen : NowPlayingScreen.values()) {
|
for (NowPlayingScreen nowPlayingScreen : NowPlayingScreen.values()) {
|
||||||
if (nowPlayingScreen.id == id) return nowPlayingScreen;
|
if (nowPlayingScreen.id == id) return nowPlayingScreen;
|
||||||
}
|
}
|
||||||
return NowPlayingScreen.CARD;
|
return NowPlayingScreen.CARD;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("CommitPrefEdits")
|
|
||||||
public void setNowPlayingScreen(NowPlayingScreen nowPlayingScreen) {
|
public void setNowPlayingScreen(NowPlayingScreen nowPlayingScreen) {
|
||||||
final SharedPreferences.Editor editor = mPreferences.edit();
|
final SharedPreferences.Editor editor = mPreferences.edit();
|
||||||
editor.putInt(NOW_PLAYING_SCREEN_ID, nowPlayingScreen.id);
|
editor.putInt(NOW_PLAYING_SCREEN, nowPlayingScreen.id);
|
||||||
editor.commit();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean getColoredNotification() {
|
public final boolean getColoredNotification() {
|
||||||
|
|
@ -198,24 +165,20 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean gaplessPlayback() {
|
public final boolean getGaplessPlayback() {
|
||||||
return mPreferences.getBoolean(GAPLESS_PLAYBACK, true);
|
return mPreferences.getBoolean(GAPLESS_PLAYBACK, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean audioDucking() {
|
public final boolean getAudioDucking() {
|
||||||
return mPreferences.getBoolean(AUDIO_DUCKING, true);
|
return mPreferences.getBoolean(AUDIO_DUCKING, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean albumArtOnLockscreen() {
|
public final boolean getShowAlbumCover() {
|
||||||
return mPreferences.getBoolean(ALBUM_ART_ON_LOCKSCREEN, true);
|
return mPreferences.getBoolean(SHOW_ALBUM_COVER, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean blurredAlbumArt() {
|
public final boolean getBlurAlbumCover() {
|
||||||
return mPreferences.getBoolean(BLURRED_ALBUM_ART, true);
|
return mPreferences.getBoolean(BLUR_ALBUM_COVER, true);
|
||||||
}
|
|
||||||
|
|
||||||
public final boolean ignoreMediaStoreArtwork() {
|
|
||||||
return mPreferences.getBoolean(IGNORE_MEDIA_STORE_ARTWORK, false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final String getArtistSortOrder() {
|
public final String getArtistSortOrder() {
|
||||||
|
|
@ -267,34 +230,27 @@ public final class PreferenceUtil {
|
||||||
public long getLastAddedCutoff() {
|
public long getLastAddedCutoff() {
|
||||||
final CalendarUtil calendarUtil = new CalendarUtil();
|
final CalendarUtil calendarUtil = new CalendarUtil();
|
||||||
long interval;
|
long interval;
|
||||||
|
|
||||||
switch (mPreferences.getString(LAST_ADDED_CUTOFF, "")) {
|
switch (mPreferences.getString(LAST_ADDED_CUTOFF, "")) {
|
||||||
case "today":
|
case "today":
|
||||||
interval = calendarUtil.getElapsedToday();
|
interval = calendarUtil.getElapsedToday();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "this_week":
|
case "this_week":
|
||||||
interval = calendarUtil.getElapsedWeek();
|
interval = calendarUtil.getElapsedWeek();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "past_seven_days":
|
case "past_seven_days":
|
||||||
interval = calendarUtil.getElapsedDays(7);
|
interval = calendarUtil.getElapsedDays(7);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "past_three_months":
|
case "past_three_months":
|
||||||
interval = calendarUtil.getElapsedMonths(3);
|
interval = calendarUtil.getElapsedMonths(3);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "this_year":
|
case "this_year":
|
||||||
interval = calendarUtil.getElapsedYear();
|
interval = calendarUtil.getElapsedYear();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "this_month":
|
case "this_month":
|
||||||
default:
|
default:
|
||||||
interval = calendarUtil.getElapsedMonth();
|
interval = calendarUtil.getElapsedMonth();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (System.currentTimeMillis() - interval) / 1000;
|
return (System.currentTimeMillis() - interval) / 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -328,14 +284,18 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final int getAlbumGridSize(Context context) {
|
||||||
|
return mPreferences.getInt(ALBUM_GRID_SIZE, context.getResources().getInteger(R.integer.default_grid_columns));
|
||||||
|
}
|
||||||
|
|
||||||
public void setAlbumGridSize(final int gridSize) {
|
public void setAlbumGridSize(final int gridSize) {
|
||||||
final SharedPreferences.Editor editor = mPreferences.edit();
|
final SharedPreferences.Editor editor = mPreferences.edit();
|
||||||
editor.putInt(ALBUM_GRID_SIZE, gridSize);
|
editor.putInt(ALBUM_GRID_SIZE, gridSize);
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getAlbumGridSize(Context context) {
|
public final int getSongGridSize(Context context) {
|
||||||
return mPreferences.getInt(ALBUM_GRID_SIZE, context.getResources().getInteger(R.integer.default_grid_columns));
|
return mPreferences.getInt(SONG_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSongGridSize(final int gridSize) {
|
public void setSongGridSize(final int gridSize) {
|
||||||
|
|
@ -344,8 +304,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getSongGridSize(Context context) {
|
public final int getArtistGridSize(Context context) {
|
||||||
return mPreferences.getInt(SONG_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns));
|
return mPreferences.getInt(ARTIST_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setArtistGridSize(final int gridSize) {
|
public void setArtistGridSize(final int gridSize) {
|
||||||
|
|
@ -354,8 +314,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getArtistGridSize(Context context) {
|
public final int getAlbumGridSizeLand(Context context) {
|
||||||
return mPreferences.getInt(ARTIST_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns));
|
return mPreferences.getInt(ALBUM_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_grid_columns_land));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAlbumGridSizeLand(final int gridSize) {
|
public void setAlbumGridSizeLand(final int gridSize) {
|
||||||
|
|
@ -364,8 +324,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getAlbumGridSizeLand(Context context) {
|
public final int getSongGridSizeLand(Context context) {
|
||||||
return mPreferences.getInt(ALBUM_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_grid_columns_land));
|
return mPreferences.getInt(SONG_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSongGridSizeLand(final int gridSize) {
|
public void setSongGridSizeLand(final int gridSize) {
|
||||||
|
|
@ -374,8 +334,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getSongGridSizeLand(Context context) {
|
public final int getArtistGridSizeLand(Context context) {
|
||||||
return mPreferences.getInt(SONG_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land));
|
return mPreferences.getInt(ARTIST_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setArtistGridSizeLand(final int gridSize) {
|
public void setArtistGridSizeLand(final int gridSize) {
|
||||||
|
|
@ -384,8 +344,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getArtistGridSizeLand(Context context) {
|
public final boolean getAlbumColoredFooters() {
|
||||||
return mPreferences.getInt(ARTIST_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land));
|
return mPreferences.getBoolean(ALBUM_COLORED_FOOTERS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAlbumColoredFooters(final boolean value) {
|
public void setAlbumColoredFooters(final boolean value) {
|
||||||
|
|
@ -394,8 +354,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean albumColoredFooters() {
|
public final boolean getAlbumArtistColoredFooters() {
|
||||||
return mPreferences.getBoolean(ALBUM_COLORED_FOOTERS, true);
|
return mPreferences.getBoolean(ALBUM_ARTIST_COLORED_FOOTERS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAlbumArtistColoredFooters(final boolean value) {
|
public void setAlbumArtistColoredFooters(final boolean value) {
|
||||||
|
|
@ -404,8 +364,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean albumArtistColoredFooters() {
|
public final boolean getSongColoredFooters() {
|
||||||
return mPreferences.getBoolean(ALBUM_ARTIST_COLORED_FOOTERS, true);
|
return mPreferences.getBoolean(SONG_COLORED_FOOTERS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSongColoredFooters(final boolean value) {
|
public void setSongColoredFooters(final boolean value) {
|
||||||
|
|
@ -414,8 +374,8 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean songColoredFooters() {
|
public final boolean getArtistColoredFooters() {
|
||||||
return mPreferences.getBoolean(SONG_COLORED_FOOTERS, true);
|
return mPreferences.getBoolean(ARTIST_COLORED_FOOTERS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setArtistColoredFooters(final boolean value) {
|
public void setArtistColoredFooters(final boolean value) {
|
||||||
|
|
@ -424,23 +384,11 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean artistColoredFooters() {
|
public final boolean getRememberShuffle() {
|
||||||
return mPreferences.getBoolean(ARTIST_COLORED_FOOTERS, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public final boolean rememberShuffle() {
|
|
||||||
return mPreferences.getBoolean(REMEMBER_SHUFFLE, true);
|
return mPreferences.getBoolean(REMEMBER_SHUFFLE, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final String autoDownloadImagesPolicy() {
|
public void setLibraryCategories(List<CategoryInfo> categories) {
|
||||||
return mPreferences.getString(AUTO_DOWNLOAD_IMAGES_POLICY, "only_wifi");
|
|
||||||
}
|
|
||||||
|
|
||||||
public final boolean synchronizedLyricsShow() {
|
|
||||||
return mPreferences.getBoolean(SYNCHRONIZED_LYRICS_SHOW, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLibraryCategoryInfos(List<CategoryInfo> categories) {
|
|
||||||
Gson gson = new Gson();
|
Gson gson = new Gson();
|
||||||
Type collectionType = new TypeToken<List<CategoryInfo>>() {
|
Type collectionType = new TypeToken<List<CategoryInfo>>() {
|
||||||
}.getType();
|
}.getType();
|
||||||
|
|
@ -450,7 +398,7 @@ public final class PreferenceUtil {
|
||||||
editor.apply();
|
editor.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<CategoryInfo> getLibraryCategoryInfos() {
|
public List<CategoryInfo> getLibraryCategories() {
|
||||||
String data = mPreferences.getString(LIBRARY_CATEGORIES, null);
|
String data = mPreferences.getString(LIBRARY_CATEGORIES, null);
|
||||||
if (data != null) {
|
if (data != null) {
|
||||||
Gson gson = new Gson();
|
Gson gson = new Gson();
|
||||||
|
|
@ -464,16 +412,16 @@ public final class PreferenceUtil {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return getDefaultLibraryCategoryInfos();
|
return getDefaultLibraryCategories();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<CategoryInfo> getDefaultLibraryCategoryInfos() {
|
public List<CategoryInfo> getDefaultLibraryCategories() {
|
||||||
List<CategoryInfo> defaultCategoryInfos = new ArrayList<>(5);
|
List<CategoryInfo> defaultCategories = new ArrayList<>(5);
|
||||||
defaultCategoryInfos.add(new CategoryInfo(CategoryInfo.Category.SONGS, true));
|
defaultCategories.add(new CategoryInfo(CategoryInfo.Category.SONGS, true));
|
||||||
defaultCategoryInfos.add(new CategoryInfo(CategoryInfo.Category.ALBUMS, true));
|
defaultCategories.add(new CategoryInfo(CategoryInfo.Category.ALBUMS, true));
|
||||||
defaultCategoryInfos.add(new CategoryInfo(CategoryInfo.Category.ARTISTS, true));
|
defaultCategories.add(new CategoryInfo(CategoryInfo.Category.ARTISTS, true));
|
||||||
defaultCategoryInfos.add(new CategoryInfo(CategoryInfo.Category.GENRES, true));
|
defaultCategories.add(new CategoryInfo(CategoryInfo.Category.GENRES, true));
|
||||||
defaultCategoryInfos.add(new CategoryInfo(CategoryInfo.Category.PLAYLISTS, true));
|
defaultCategories.add(new CategoryInfo(CategoryInfo.Category.PLAYLISTS, true));
|
||||||
return defaultCategoryInfos;
|
return defaultCategories;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,6 @@ public class AppWidgetBig extends BaseAppWidget {
|
||||||
Glide.clear(target);
|
Glide.clear(target);
|
||||||
}
|
}
|
||||||
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
||||||
.checkIgnoreMediaStore(appContext)
|
|
||||||
.asBitmap().build()
|
.asBitmap().build()
|
||||||
.into(new SimpleTarget<Bitmap>(widgetImageSize, widgetImageSize) {
|
.into(new SimpleTarget<Bitmap>(widgetImageSize, widgetImageSize) {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,6 @@ public class AppWidgetCard extends BaseAppWidget {
|
||||||
Glide.clear(target);
|
Glide.clear(target);
|
||||||
}
|
}
|
||||||
target = SongGlideRequest.Builder.from(Glide.with(service), song)
|
target = SongGlideRequest.Builder.from(Glide.with(service), song)
|
||||||
.checkIgnoreMediaStore(service)
|
|
||||||
.generatePalette(service).build()
|
.generatePalette(service).build()
|
||||||
.centerCrop()
|
.centerCrop()
|
||||||
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,6 @@ public class AppWidgetClassic extends BaseAppWidget {
|
||||||
Glide.clear(target);
|
Glide.clear(target);
|
||||||
}
|
}
|
||||||
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
||||||
.checkIgnoreMediaStore(appContext)
|
|
||||||
.generatePalette(service).build()
|
.generatePalette(service).build()
|
||||||
.centerCrop()
|
.centerCrop()
|
||||||
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,6 @@ public class AppWidgetSmall extends BaseAppWidget {
|
||||||
Glide.clear(target);
|
Glide.clear(target);
|
||||||
}
|
}
|
||||||
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
||||||
.checkIgnoreMediaStore(appContext)
|
|
||||||
.generatePalette(service).build()
|
.generatePalette(service).build()
|
||||||
.centerCrop()
|
.centerCrop()
|
||||||
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
.into(new SimpleTarget<BitmapPaletteWrapper>(imageSize, imageSize) {
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">خلط قائمة التشغيل</string>
|
<string name="action_shuffle_playlist">خلط قائمة التشغيل</string>
|
||||||
<string name="light_theme_name">فاتح</string>
|
<string name="light_theme_name">فاتح</string>
|
||||||
<string name="dark_theme_name">غامق</string>
|
<string name="dark_theme_name">غامق</string>
|
||||||
<string name="always">دائماً</string>
|
|
||||||
<string name="only_on_wifi">فقط على Wi-Fi</string>
|
|
||||||
<string name="never">أبداً</string>
|
|
||||||
<string name="today">اليوم</string>
|
<string name="today">اليوم</string>
|
||||||
<string name="this_week">هذا الأسبوع</string>
|
<string name="this_week">هذا الأسبوع</string>
|
||||||
<string name="this_month">هذا الشهر</string>
|
<string name="this_month">هذا الشهر</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">التنسيق العام</string>
|
<string name="pref_title_general_theme">التنسيق العام</string>
|
||||||
<string name="pref_header_audio">الصوت</string>
|
<string name="pref_header_audio">الصوت</string>
|
||||||
<string name="pref_header_library">المكتبة</string>
|
<string name="pref_header_library">المكتبة</string>
|
||||||
<string name="pref_header_images">الصور</string>
|
|
||||||
<string name="pref_header_lockscreen">شاشة القفل</string>
|
<string name="pref_header_lockscreen">شاشة القفل</string>
|
||||||
<string name="pref_header_playlists">قوائم التشغيل</string>
|
<string name="pref_header_playlists">قوائم التشغيل</string>
|
||||||
<string name="pref_header_notification">الإشعار</string>
|
<string name="pref_header_notification">الإشعار</string>
|
||||||
<string name="pref_title_navigation_bar">شريط تنقل ملون</string>
|
<string name="pref_title_navigation_bar">شريط تنقل ملون</string>
|
||||||
<string name="pref_title_app_shortcuts">اختصارات تطبيق ملونة</string>
|
<string name="pref_title_app_shortcuts">اختصارات تطبيق ملونة</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">عرض غلاف الألبوم</string>
|
<string name="pref_title_album_art_on_lockscreen">عرض غلاف الألبوم</string>
|
||||||
<string name="pref_title_auto_download_metadata">تحميل البيانات الوصفية تلقائياً</string>
|
|
||||||
<string name="pref_title_blurred_album_art">تغييم صورة الألبوم</string>
|
<string name="pref_title_blurred_album_art">تغييم صورة الألبوم</string>
|
||||||
<string name="pref_title_colored_notification">إشعار ملون</string>
|
<string name="pref_title_colored_notification">إشعار ملون</string>
|
||||||
<string name="pref_title_classic_notification">تصميم الإشعار الكلاسيكي</string>
|
<string name="pref_title_classic_notification">تصميم الإشعار الكلاسيكي</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">تجاهل أغلفة مخزن الوسائط</string>
|
|
||||||
<string name="pref_title_gapless_playback">تشغيل بدون فواصل</string>
|
<string name="pref_title_gapless_playback">تشغيل بدون فواصل</string>
|
||||||
<string name="pref_title_audio_ducking">خفض الصوت عند فقدان التركيز</string>
|
<string name="pref_title_audio_ducking">خفض الصوت عند فقدان التركيز</string>
|
||||||
<string name="pref_title_last_added_interval">فترة قائمة تشغيل المضافة مؤخراً</string>
|
<string name="pref_title_last_added_interval">فترة قائمة تشغيل المضافة مؤخراً</string>
|
||||||
<string name="pref_title_remember_last_tab">تذكر آخر لسان</string>
|
<string name="pref_title_remember_last_tab">تذكر آخر لسان</string>
|
||||||
<string name="no_audio_ID">"شغل أغنية أولاً، ثم حاول مرة أخرى."</string>
|
|
||||||
<string name="delete_action">حذف</string>
|
<string name="delete_action">حذف</string>
|
||||||
<string name="clear_action">مسح</string>
|
<string name="clear_action">مسح</string>
|
||||||
<string name="remove_action">إزالة</string>
|
<string name="remove_action">إزالة</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">استعمال تصميم الإشعار الكلاسيكي.</string>
|
<string name="pref_summary_classic_notification">استعمال تصميم الإشعار الكلاسيكي.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u062a\u0644\u0648\u064a\u0646 \u0627\u0644\u0625\u0634\u0639\u0627\u0631 \u0628\u0644\u0648\u0646 \u063a\u0644\u0627\u0641 \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0628\u0627\u0631\u0632."</string>
|
<string name="pref_summary_colored_notification">"\u062a\u0644\u0648\u064a\u0646 \u0627\u0644\u0625\u0634\u0639\u0627\u0631 \u0628\u0644\u0648\u0646 \u063a\u0644\u0627\u0641 \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0628\u0627\u0631\u0632."</string>
|
||||||
<string name="pref_summary_gapless_playback">"قد يسبب مشاكل في التشغيل على بعض الأجهزة."</string>
|
<string name="pref_summary_gapless_playback">"قد يسبب مشاكل في التشغيل على بعض الأجهزة."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">قد يرفع جودة أغلفة الألبومات لكنه يسبب بطئاً في زمن تحميل الصور. قم بتفعيل هذا الخيار إذا كانت لديك مشاكل مع الصور منخفضة الدقة.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">تلوين شريط التنقل باللون الأساسي.</string>
|
<string name="pref_summary_colored_navigation_bar">تلوين شريط التنقل باللون الأساسي.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">تلوين اختصارات التطبيق باللون الأساسي.</string>
|
<string name="pref_summary_colored_app_shortcuts">تلوين اختصارات التطبيق باللون الأساسي.</string>
|
||||||
<string name="pref_summary_audio_ducking">الإشعارات، التنقل، إلخ.</string>
|
<string name="pref_summary_audio_ducking">الإشعارات، التنقل، إلخ.</string>
|
||||||
|
|
|
||||||
|
|
@ -73,25 +73,19 @@
|
||||||
<string name="action_shuffle_playlist">Разбъркай този плейлист</string>
|
<string name="action_shuffle_playlist">Разбъркай този плейлист</string>
|
||||||
<string name="light_theme_name">Светъл изглед</string>
|
<string name="light_theme_name">Светъл изглед</string>
|
||||||
<string name="dark_theme_name">Тъмен изглед</string>
|
<string name="dark_theme_name">Тъмен изглед</string>
|
||||||
<string name="always">Винаги</string>
|
|
||||||
<string name="only_on_wifi">Само чрез Wi-Fi</string>
|
|
||||||
<string name="never">Никога</string>
|
|
||||||
<string name="equalizer">Еквилайзер</string>
|
<string name="equalizer">Еквилайзер</string>
|
||||||
<string name="pref_header_colors">Цветове</string>
|
<string name="pref_header_colors">Цветове</string>
|
||||||
<string name="pref_header_now_playing_screen">Текуща песен</string>
|
<string name="pref_header_now_playing_screen">Текуща песен</string>
|
||||||
<string name="pref_title_general_theme">Главна тема</string>
|
<string name="pref_title_general_theme">Главна тема</string>
|
||||||
<string name="pref_header_audio">Аудио</string>
|
<string name="pref_header_audio">Аудио</string>
|
||||||
<string name="pref_header_images">Изображения</string>
|
|
||||||
<string name="pref_header_lockscreen">Заключен екран</string>
|
<string name="pref_header_lockscreen">Заключен екран</string>
|
||||||
<string name="pref_title_navigation_bar">Оцветени навигационни бутони</string>
|
<string name="pref_title_navigation_bar">Оцветени навигационни бутони</string>
|
||||||
<string name="pref_title_app_shortcuts">Оцветяване на бутоните</string>
|
<string name="pref_title_app_shortcuts">Оцветяване на бутоните</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Покажи обложката на албум</string>
|
<string name="pref_title_album_art_on_lockscreen">Покажи обложката на албум</string>
|
||||||
<string name="pref_title_blurred_album_art">Размажи обложката</string>
|
<string name="pref_title_blurred_album_art">Размажи обложката</string>
|
||||||
<string name="pref_title_colored_notification">Оцвети известията</string>
|
<string name="pref_title_colored_notification">Оцвети известията</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Игнорирай вградените обложки</string>
|
|
||||||
<string name="pref_title_gapless_playback">Непрекъснато звучене</string>
|
<string name="pref_title_gapless_playback">Непрекъснато звучене</string>
|
||||||
<string name="pref_title_audio_ducking">Намалявай звукът при известия</string>
|
<string name="pref_title_audio_ducking">Намалявай звукът при известия</string>
|
||||||
<string name="no_audio_ID">"Първо пусни песен, тогава пробвай отново"</string>
|
|
||||||
<string name="delete_action">Изтрий</string>
|
<string name="delete_action">Изтрий</string>
|
||||||
<string name="clear_action">Изчисти</string>
|
<string name="clear_action">Изчисти</string>
|
||||||
<string name="remove_action">Премахни</string>
|
<string name="remove_action">Премахни</string>
|
||||||
|
|
@ -114,7 +108,6 @@
|
||||||
<string name="pref_summary_blurred_album_art">Замъглява обложката при заключен екран. Би могло да създаде проблеми с апликации и известия създадени от трети лица.</string>
|
<string name="pref_summary_blurred_album_art">Замъглява обложката при заключен екран. Би могло да създаде проблеми с апликации и известия създадени от трети лица.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u041e\u0446\u0432\u0435\u0442\u044f\u0432\u0430 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u0442\u043e \u0432 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u0446\u0432\u044f\u0442 \u043e\u0442 \u043e\u0431\u043b\u043e\u0436\u043a\u0430\u0442\u0430."</string>
|
<string name="pref_summary_colored_notification">"\u041e\u0446\u0432\u0435\u0442\u044f\u0432\u0430 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u0442\u043e \u0432 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u0446\u0432\u044f\u0442 \u043e\u0442 \u043e\u0431\u043b\u043e\u0436\u043a\u0430\u0442\u0430."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Би могло да създаде проблеми с възпроизвеждането при някои устройства."</string>
|
<string name="pref_summary_gapless_playback">"Би могло да създаде проблеми с възпроизвеждането при някои устройства."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Може да увеличи качеството на обложките, но също така и забави времето за зареждане. Включете това, само ако имате проблеми с ниско качество на обложките.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Оцветява навигационната лента в главният цвят на апликацията.</string>
|
<string name="pref_summary_colored_navigation_bar">Оцветява навигационната лента в главният цвят на апликацията.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Оцветява бутоните в главният цвят на апликацията.</string>
|
<string name="pref_summary_colored_app_shortcuts">Оцветява бутоните в главният цвят на апликацията.</string>
|
||||||
<string name="pref_summary_audio_ducking">Известия, навигация etc.</string>
|
<string name="pref_summary_audio_ducking">Известия, навигация etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Přehrát playlist náhodně</string>
|
<string name="action_shuffle_playlist">Přehrát playlist náhodně</string>
|
||||||
<string name="light_theme_name">Světlý</string>
|
<string name="light_theme_name">Světlý</string>
|
||||||
<string name="dark_theme_name">Tmavý</string>
|
<string name="dark_theme_name">Tmavý</string>
|
||||||
<string name="always">Vždy</string>
|
|
||||||
<string name="only_on_wifi">Jenom na Wi-Fi</string>
|
|
||||||
<string name="never">Nikdy</string>
|
|
||||||
<string name="today">Dnes</string>
|
<string name="today">Dnes</string>
|
||||||
<string name="this_week">Tento týden</string>
|
<string name="this_week">Tento týden</string>
|
||||||
<string name="this_month">Tento měsíc</string>
|
<string name="this_month">Tento měsíc</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Motiv</string>
|
<string name="pref_title_general_theme">Motiv</string>
|
||||||
<string name="pref_header_audio">Zvuk</string>
|
<string name="pref_header_audio">Zvuk</string>
|
||||||
<string name="pref_header_library">Knihovna</string>
|
<string name="pref_header_library">Knihovna</string>
|
||||||
<string name="pref_header_images">Obrázky</string>
|
|
||||||
<string name="pref_header_lockscreen">Odemykací obrazovka</string>
|
<string name="pref_header_lockscreen">Odemykací obrazovka</string>
|
||||||
<string name="pref_header_playlists">Seznamy skladeb</string>
|
<string name="pref_header_playlists">Seznamy skladeb</string>
|
||||||
<string name="pref_header_notification">Oznámení</string>
|
<string name="pref_header_notification">Oznámení</string>
|
||||||
<string name="pref_title_navigation_bar">Barevné záhlaví</string>
|
<string name="pref_title_navigation_bar">Barevné záhlaví</string>
|
||||||
<string name="pref_title_app_shortcuts">Barevné zkratky aplikace</string>
|
<string name="pref_title_app_shortcuts">Barevné zkratky aplikace</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Zobrazit obal alba</string>
|
<string name="pref_title_album_art_on_lockscreen">Zobrazit obal alba</string>
|
||||||
<string name="pref_title_auto_download_metadata">Automaticky stahovat metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Rozostřit obal alba</string>
|
<string name="pref_title_blurred_album_art">Rozostřit obal alba</string>
|
||||||
<string name="pref_title_colored_notification">Barevné notifikace</string>
|
<string name="pref_title_colored_notification">Barevné notifikace</string>
|
||||||
<string name="pref_title_classic_notification">Klasický vzhled oznámení</string>
|
<string name="pref_title_classic_notification">Klasický vzhled oznámení</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorovat obaly Media Storu</string>
|
|
||||||
<string name="pref_title_gapless_playback">Přehrávání bez mezer</string>
|
<string name="pref_title_gapless_playback">Přehrávání bez mezer</string>
|
||||||
<string name="pref_title_audio_ducking">Snížit hlasitost při ztrátě priority zvuku</string>
|
<string name="pref_title_audio_ducking">Snížit hlasitost při ztrátě priority zvuku</string>
|
||||||
<string name="pref_title_last_added_interval">Poslední přidaný interval playlistu</string>
|
<string name="pref_title_last_added_interval">Poslední přidaný interval playlistu</string>
|
||||||
<string name="pref_title_remember_last_tab">Pamatovat poslední kartu</string>
|
<string name="pref_title_remember_last_tab">Pamatovat poslední kartu</string>
|
||||||
<string name="no_audio_ID">"Nejdříve přehrajte píseň, poté zkuste znovu. "</string>
|
|
||||||
<string name="delete_action">Smazat</string>
|
<string name="delete_action">Smazat</string>
|
||||||
<string name="clear_action">Vyčistit</string>
|
<string name="clear_action">Vyčistit</string>
|
||||||
<string name="remove_action">Odstranit</string>
|
<string name="remove_action">Odstranit</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Použije klasický vzhled oznámení.</string>
|
<string name="pref_summary_classic_notification">Použije klasický vzhled oznámení.</string>
|
||||||
<string name="pref_summary_colored_notification">"Zbarv\u00ed ozn\u00e1men\u00ed do barev podle obalu alba."</string>
|
<string name="pref_summary_colored_notification">"Zbarv\u00ed ozn\u00e1men\u00ed do barev podle obalu alba."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Může způsobit problémy s přehráváním u některých zařízení."</string>
|
<string name="pref_summary_gapless_playback">"Může způsobit problémy s přehráváním u některých zařízení."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">"Může zvýšit kvalitu obalu alba, ale způsobí pomalejší načítání. Povolte pouze pokud máte problémy s nízkým rozlišením obalu. "</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Barvy navigačního panelu v primární barvě</string>
|
<string name="pref_summary_colored_navigation_bar">Barvy navigačního panelu v primární barvě</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Zbarví zkratky aplikace primární barvou</string>
|
<string name="pref_summary_colored_app_shortcuts">Zbarví zkratky aplikace primární barvou</string>
|
||||||
<string name="pref_summary_audio_ducking">Oznámení, navigace atd.</string>
|
<string name="pref_summary_audio_ducking">Oznámení, navigace atd.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Wiedergabeliste zufällig wiedergeben</string>
|
<string name="action_shuffle_playlist">Wiedergabeliste zufällig wiedergeben</string>
|
||||||
<string name="light_theme_name">Hell</string>
|
<string name="light_theme_name">Hell</string>
|
||||||
<string name="dark_theme_name">Dunkel</string>
|
<string name="dark_theme_name">Dunkel</string>
|
||||||
<string name="always">Immer</string>
|
|
||||||
<string name="only_on_wifi">Nur über WLAN</string>
|
|
||||||
<string name="never">Niemals</string>
|
|
||||||
<string name="today">Heute</string>
|
<string name="today">Heute</string>
|
||||||
<string name="this_week">Diese Woche</string>
|
<string name="this_week">Diese Woche</string>
|
||||||
<string name="past_seven_days">Letzte 7 Tage</string>
|
<string name="past_seven_days">Letzte 7 Tage</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Generelles Design</string>
|
<string name="pref_title_general_theme">Generelles Design</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Bibliothek</string>
|
<string name="pref_header_library">Bibliothek</string>
|
||||||
<string name="pref_header_images">Bilder</string>
|
|
||||||
<string name="pref_header_lockscreen">Sperrbildschirm</string>
|
<string name="pref_header_lockscreen">Sperrbildschirm</string>
|
||||||
<string name="pref_header_playlists">Wiedergabelisten</string>
|
<string name="pref_header_playlists">Wiedergabelisten</string>
|
||||||
<string name="pref_header_notification">Benachrichtigung</string>
|
<string name="pref_header_notification">Benachrichtigung</string>
|
||||||
<string name="pref_title_navigation_bar">Farbige Navigationsleiste</string>
|
<string name="pref_title_navigation_bar">Farbige Navigationsleiste</string>
|
||||||
<string name="pref_title_app_shortcuts">Gefärbte App-Shortcuts</string>
|
<string name="pref_title_app_shortcuts">Gefärbte App-Shortcuts</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Album Cover anzeigen</string>
|
<string name="pref_title_album_art_on_lockscreen">Album Cover anzeigen</string>
|
||||||
<string name="pref_title_auto_download_metadata">Meta-Daten automatisch herunterladen</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Album Cover weichzeichnen</string>
|
<string name="pref_title_blurred_album_art">Album Cover weichzeichnen</string>
|
||||||
<string name="pref_title_colored_notification">Gefärbte Benachrichtigung</string>
|
<string name="pref_title_colored_notification">Gefärbte Benachrichtigung</string>
|
||||||
<string name="pref_title_classic_notification">Klassisches Benachrichtigungsdesign</string>
|
<string name="pref_title_classic_notification">Klassisches Benachrichtigungsdesign</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Media Store Cover ignorieren</string>
|
|
||||||
<string name="pref_title_gapless_playback">Lückenlose Wiedergabe</string>
|
<string name="pref_title_gapless_playback">Lückenlose Wiedergabe</string>
|
||||||
<string name="pref_title_audio_ducking">Lautstärke bei Fokusverlust verringern</string>
|
<string name="pref_title_audio_ducking">Lautstärke bei Fokusverlust verringern</string>
|
||||||
<string name="pref_title_last_added_interval">Intervall der \"Zuletzt hinzugefügt\"-Wiedergabeliste</string>
|
<string name="pref_title_last_added_interval">Intervall der \"Zuletzt hinzugefügt\"-Wiedergabeliste</string>
|
||||||
<string name="pref_title_remember_last_tab">Letzten Tab merken</string>
|
<string name="pref_title_remember_last_tab">Letzten Tab merken</string>
|
||||||
<string name="pref_title_remember_shuffle">Shuffle-Einstellung merken</string>
|
<string name="pref_title_remember_shuffle">Shuffle-Einstellung merken</string>
|
||||||
<string name="no_audio_ID">"Keine Audio ID, spiele etwas ab und versuche es erneut."</string>
|
|
||||||
<string name="delete_action">Löschen</string>
|
<string name="delete_action">Löschen</string>
|
||||||
<string name="clear_action">Leeren</string>
|
<string name="clear_action">Leeren</string>
|
||||||
<string name="remove_action">Entfernen</string>
|
<string name="remove_action">Entfernen</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Das klassische Benachrichtigungsdesign verwenden.</string>
|
<string name="pref_summary_classic_notification">Das klassische Benachrichtigungsdesign verwenden.</string>
|
||||||
<string name="pref_summary_colored_notification">"Die Benachrichtigung ist in der Farbe des Album Covers gef\u00e4rbt."</string>
|
<string name="pref_summary_colored_notification">"Die Benachrichtigung ist in der Farbe des Album Covers gef\u00e4rbt."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Kann bei einigen Geräten Wiedergabeprobleme verursachen."</string>
|
<string name="pref_summary_gapless_playback">"Kann bei einigen Geräten Wiedergabeprobleme verursachen."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Kann die Album Cover Qualität verbessern was jedoch die Ladezeit beeinträchtigt. Nur aktivieren falls Probleme mit niedrig aufgelösten Album Covern auftreten.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Färbt die Navigationsleiste mit der Hauptfarbe.</string>
|
<string name="pref_summary_colored_navigation_bar">Färbt die Navigationsleiste mit der Hauptfarbe.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Färbt die App-Shortcuts mit der Hauptfarbe.</string>
|
<string name="pref_summary_colored_app_shortcuts">Färbt die App-Shortcuts mit der Hauptfarbe.</string>
|
||||||
<string name="pref_summary_audio_ducking">Benachrichtigungen, Navigation etc.</string>
|
<string name="pref_summary_audio_ducking">Benachrichtigungen, Navigation etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Τυχαία λίστα αναπαραγωγής</string>
|
<string name="action_shuffle_playlist">Τυχαία λίστα αναπαραγωγής</string>
|
||||||
<string name="light_theme_name">Ανοιχτό</string>
|
<string name="light_theme_name">Ανοιχτό</string>
|
||||||
<string name="dark_theme_name">Σκούρο</string>
|
<string name="dark_theme_name">Σκούρο</string>
|
||||||
<string name="always">Πάντα</string>
|
|
||||||
<string name="only_on_wifi">Μόνο σε Wi-Fi</string>
|
|
||||||
<string name="never">Ποτέ</string>
|
|
||||||
<string name="today">Σήμερα</string>
|
<string name="today">Σήμερα</string>
|
||||||
<string name="this_week">Αυτή την εβδομάδα</string>
|
<string name="this_week">Αυτή την εβδομάδα</string>
|
||||||
<string name="this_month">Αυτόν τον μήνα</string>
|
<string name="this_month">Αυτόν τον μήνα</string>
|
||||||
|
|
@ -91,21 +88,17 @@
|
||||||
<string name="pref_title_general_theme">Γενικό θέμα</string>
|
<string name="pref_title_general_theme">Γενικό θέμα</string>
|
||||||
<string name="pref_header_audio">Ήχος</string>
|
<string name="pref_header_audio">Ήχος</string>
|
||||||
<string name="pref_header_library">Βιβλιοθήκη</string>
|
<string name="pref_header_library">Βιβλιοθήκη</string>
|
||||||
<string name="pref_header_images">Εικόνες</string>
|
|
||||||
<string name="pref_header_lockscreen">Οθόνη κλειδώματος</string>
|
<string name="pref_header_lockscreen">Οθόνη κλειδώματος</string>
|
||||||
<string name="pref_header_playlists">Λίστες αναπαραγωγής</string>
|
<string name="pref_header_playlists">Λίστες αναπαραγωγής</string>
|
||||||
<string name="pref_header_notification">Ειδοποιήσεις</string>
|
<string name="pref_header_notification">Ειδοποιήσεις</string>
|
||||||
<string name="pref_title_navigation_bar">Έγχρωμη μπάρα πλοήγησης</string>
|
<string name="pref_title_navigation_bar">Έγχρωμη μπάρα πλοήγησης</string>
|
||||||
<string name="pref_title_app_shortcuts">Χρωματιστές συντομεύσεις εφαρμογής</string>
|
<string name="pref_title_app_shortcuts">Χρωματιστές συντομεύσεις εφαρμογής</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Εμφάνιση album art</string>
|
<string name="pref_title_album_art_on_lockscreen">Εμφάνιση album art</string>
|
||||||
<string name="pref_title_auto_download_metadata">Αυτόματο κατέβασμα metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Θάμπωμα πορτρέτων καλλιτεχνών</string>
|
<string name="pref_title_blurred_album_art">Θάμπωμα πορτρέτων καλλιτεχνών</string>
|
||||||
<string name="pref_title_colored_notification">Χρωματισμένη ειδοποίηση</string>
|
<string name="pref_title_colored_notification">Χρωματισμένη ειδοποίηση</string>
|
||||||
<string name="pref_title_classic_notification">Κλασικός σχεδιασμός ειδοποιήσεων</string>
|
<string name="pref_title_classic_notification">Κλασικός σχεδιασμός ειδοποιήσεων</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Παράληψη των Media Store εξωφύλλων.</string>
|
|
||||||
<string name="pref_title_gapless_playback">Εναλλαγή χωρίς παύση</string>
|
<string name="pref_title_gapless_playback">Εναλλαγή χωρίς παύση</string>
|
||||||
<string name="pref_title_audio_ducking">Μειώστε την ένταση στην απώλεια εστίασης</string>
|
<string name="pref_title_audio_ducking">Μειώστε την ένταση στην απώλεια εστίασης</string>
|
||||||
<string name="no_audio_ID">"Αναπαράγετε ένα τραγούδι πρώτα και δοκιμάστε ξανά."</string>
|
|
||||||
<string name="delete_action">Διαγραφή</string>
|
<string name="delete_action">Διαγραφή</string>
|
||||||
<string name="clear_action">Εκκαθάρηση</string>
|
<string name="clear_action">Εκκαθάρηση</string>
|
||||||
<string name="remove_action">Αφαίρεση</string>
|
<string name="remove_action">Αφαίρεση</string>
|
||||||
|
|
@ -128,7 +121,6 @@
|
||||||
<string name="pref_summary_blurred_album_art">Το θωριασμένο album εξώφυλλο στην οθόνη κλειδώματος μπορεί να δημιουργήσει προβλήματα με τρίτες εφαρμογές και συντομιεύσεις.</string>
|
<string name="pref_summary_blurred_album_art">Το θωριασμένο album εξώφυλλο στην οθόνη κλειδώματος μπορεί να δημιουργήσει προβλήματα με τρίτες εφαρμογές και συντομιεύσεις.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u03a7\u03c1\u03c9\u03bc\u03b1\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03c0\u03ac\u03c1\u03b1 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 album art \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b1\u03b3\u03bf\u03c5\u03b4\u03b9\u03bf\u03cd"</string>
|
<string name="pref_summary_colored_notification">"\u03a7\u03c1\u03c9\u03bc\u03b1\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03c0\u03ac\u03c1\u03b1 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 album art \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b1\u03b3\u03bf\u03c5\u03b4\u03b9\u03bf\u03cd"</string>
|
||||||
<string name="pref_summary_gapless_playback">"Μπορεί να δημιουργίσει θέματα αναπαραγωγής σε μερικές συσκευές."</string>
|
<string name="pref_summary_gapless_playback">"Μπορεί να δημιουργίσει θέματα αναπαραγωγής σε μερικές συσκευές."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Μπορεί να αυξήσει την ποιότητα του εξώφυλλου του άλμπουμ, αλλά προκαλεί αργούς χρόνους φόρτωσης της εικόνας. Ενεργοποιήστε το μόνο αν έχετε προβλήματα με εξώφυλλα χαμηλής ανάλυσης.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Χρωματίζει την μπάρα πλοήγησης στο πρωτεύον χρώμα</string>
|
<string name="pref_summary_colored_navigation_bar">Χρωματίζει την μπάρα πλοήγησης στο πρωτεύον χρώμα</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Χρωματίζει τις συντομεύσεις της εφαρμογής στο κυρίως χρώμα.</string>
|
<string name="pref_summary_colored_app_shortcuts">Χρωματίζει τις συντομεύσεις της εφαρμογής στο κυρίως χρώμα.</string>
|
||||||
<string name="pref_summary_audio_ducking">Ειδοποιήσεις, πλοήγηση κ.λπ.</string>
|
<string name="pref_summary_audio_ducking">Ειδοποιήσεις, πλοήγηση κ.λπ.</string>
|
||||||
|
|
|
||||||
|
|
@ -74,9 +74,6 @@
|
||||||
<string name="action_shuffle_playlist">Shuffle playlist</string>
|
<string name="action_shuffle_playlist">Shuffle playlist</string>
|
||||||
<string name="light_theme_name">Light</string>
|
<string name="light_theme_name">Light</string>
|
||||||
<string name="dark_theme_name">Dark</string>
|
<string name="dark_theme_name">Dark</string>
|
||||||
<string name="always">Always</string>
|
|
||||||
<string name="only_on_wifi">Only on Wi-Fi</string>
|
|
||||||
<string name="never">Never</string>
|
|
||||||
<string name="today">Today</string>
|
<string name="today">Today</string>
|
||||||
<string name="this_week">This week</string>
|
<string name="this_week">This week</string>
|
||||||
<string name="this_month">This month</string>
|
<string name="this_month">This month</string>
|
||||||
|
|
@ -87,22 +84,18 @@
|
||||||
<string name="pref_header_now_playing_screen">Now playing</string>
|
<string name="pref_header_now_playing_screen">Now playing</string>
|
||||||
<string name="pref_title_general_theme">General theme</string>
|
<string name="pref_title_general_theme">General theme</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_images">Images</string>
|
|
||||||
<string name="pref_header_lockscreen">Lockscreen</string>
|
<string name="pref_header_lockscreen">Lockscreen</string>
|
||||||
<string name="pref_header_playlists">Playlists</string>
|
<string name="pref_header_playlists">Playlists</string>
|
||||||
<string name="pref_header_notification">Notification</string>
|
<string name="pref_header_notification">Notification</string>
|
||||||
<string name="pref_title_navigation_bar">Colored navigation bar</string>
|
<string name="pref_title_navigation_bar">Colored navigation bar</string>
|
||||||
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
|
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
||||||
<string name="pref_title_auto_download_metadata">Auto download metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
||||||
<string name="pref_title_colored_notification">Colored notification</string>
|
<string name="pref_title_colored_notification">Colored notification</string>
|
||||||
<string name="pref_title_classic_notification">Classic notification design</string>
|
<string name="pref_title_classic_notification">Classic notification design</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
|
|
||||||
<string name="pref_title_gapless_playback">Gapless playback</string>
|
<string name="pref_title_gapless_playback">Gapless playback</string>
|
||||||
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
||||||
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
||||||
<string name="no_audio_ID">"Play a song first, then try again."</string>
|
|
||||||
<string name="delete_action">Delete</string>
|
<string name="delete_action">Delete</string>
|
||||||
<string name="clear_action">Clear</string>
|
<string name="clear_action">Clear</string>
|
||||||
<string name="remove_action">Remove</string>
|
<string name="remove_action">Remove</string>
|
||||||
|
|
@ -126,7 +119,6 @@
|
||||||
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string>
|
<string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality but causes slower image loading times. Only enable this if you have problems with low resolution artworks.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
|
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -75,9 +75,6 @@
|
||||||
<string name="action_shuffle_playlist">Shuffle playlist</string>
|
<string name="action_shuffle_playlist">Shuffle playlist</string>
|
||||||
<string name="light_theme_name">Light</string>
|
<string name="light_theme_name">Light</string>
|
||||||
<string name="dark_theme_name">Dark</string>
|
<string name="dark_theme_name">Dark</string>
|
||||||
<string name="always">Always</string>
|
|
||||||
<string name="only_on_wifi">Only on Wi-Fi</string>
|
|
||||||
<string name="never">Never</string>
|
|
||||||
<string name="today">Today</string>
|
<string name="today">Today</string>
|
||||||
<string name="this_week">This week</string>
|
<string name="this_week">This week</string>
|
||||||
<string name="this_month">This month</string>
|
<string name="this_month">This month</string>
|
||||||
|
|
@ -89,23 +86,19 @@
|
||||||
<string name="pref_title_general_theme">General theme</string>
|
<string name="pref_title_general_theme">General theme</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Library</string>
|
<string name="pref_header_library">Library</string>
|
||||||
<string name="pref_header_images">Images</string>
|
|
||||||
<string name="pref_header_lockscreen">Lockscreen</string>
|
<string name="pref_header_lockscreen">Lockscreen</string>
|
||||||
<string name="pref_header_playlists">Playlists</string>
|
<string name="pref_header_playlists">Playlists</string>
|
||||||
<string name="pref_header_notification">Notification</string>
|
<string name="pref_header_notification">Notification</string>
|
||||||
<string name="pref_title_navigation_bar">Coloured navigation bar</string>
|
<string name="pref_title_navigation_bar">Coloured navigation bar</string>
|
||||||
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
|
<string name="pref_title_app_shortcuts">Coloured app shortcuts</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
||||||
<string name="pref_title_auto_download_metadata">Auto download metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
||||||
<string name="pref_title_colored_notification">Coloured notification</string>
|
<string name="pref_title_colored_notification">Coloured notification</string>
|
||||||
<string name="pref_title_classic_notification">Classic notification design</string>
|
<string name="pref_title_classic_notification">Classic notification design</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
|
|
||||||
<string name="pref_title_gapless_playback">Gapless playback</string>
|
<string name="pref_title_gapless_playback">Gapless playback</string>
|
||||||
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
||||||
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
||||||
<string name="pref_title_remember_last_tab">Remember last tab</string>
|
<string name="pref_title_remember_last_tab">Remember last tab</string>
|
||||||
<string name="no_audio_ID">"Play a song first, then try again."</string>
|
|
||||||
<string name="delete_action">Delete</string>
|
<string name="delete_action">Delete</string>
|
||||||
<string name="clear_action">Clear</string>
|
<string name="clear_action">Clear</string>
|
||||||
<string name="remove_action">Remove</string>
|
<string name="remove_action">Remove</string>
|
||||||
|
|
@ -131,7 +124,6 @@
|
||||||
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colours the notification in the album cover\u2019s vibrant colour."</string>
|
<string name="pref_summary_colored_notification">"Colours the notification in the album cover\u2019s vibrant colour."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality but causes slower image loading times. Only enable this if you have problems with low resolution artworks.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colours the navigation bar in the primary colour.</string>
|
<string name="pref_summary_colored_navigation_bar">Colours the navigation bar in the primary colour.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colours the app shortcuts in the primary colour.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colours the app shortcuts in the primary colour.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Reproducción aleatoria de la lista de reproducción</string>
|
<string name="action_shuffle_playlist">Reproducción aleatoria de la lista de reproducción</string>
|
||||||
<string name="light_theme_name">Claro</string>
|
<string name="light_theme_name">Claro</string>
|
||||||
<string name="dark_theme_name">Oscuro</string>
|
<string name="dark_theme_name">Oscuro</string>
|
||||||
<string name="always">Siempre</string>
|
|
||||||
<string name="only_on_wifi">Solo en Wi-Fi</string>
|
|
||||||
<string name="never">Nunca</string>
|
|
||||||
<string name="today">Hoy</string>
|
<string name="today">Hoy</string>
|
||||||
<string name="this_week">Esta semana</string>
|
<string name="this_week">Esta semana</string>
|
||||||
<string name="past_seven_days">Últimos 7 días</string>
|
<string name="past_seven_days">Últimos 7 días</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Tema general</string>
|
<string name="pref_title_general_theme">Tema general</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Biblioteca</string>
|
<string name="pref_header_library">Biblioteca</string>
|
||||||
<string name="pref_header_images">Imágenes</string>
|
|
||||||
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
|
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
|
||||||
<string name="pref_header_playlists">Listas de reproducción</string>
|
<string name="pref_header_playlists">Listas de reproducción</string>
|
||||||
<string name="pref_header_notification">Notificación</string>
|
<string name="pref_header_notification">Notificación</string>
|
||||||
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
|
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
|
||||||
<string name="pref_title_app_shortcuts">Atajos coloreados de la aplicación</string>
|
<string name="pref_title_app_shortcuts">Atajos coloreados de la aplicación</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
|
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
|
||||||
<string name="pref_title_auto_download_metadata">Descargar metadatos automáticamente</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Desenfocar carátula de álbum</string>
|
<string name="pref_title_blurred_album_art">Desenfocar carátula de álbum</string>
|
||||||
<string name="pref_title_colored_notification">Notificación coloreada</string>
|
<string name="pref_title_colored_notification">Notificación coloreada</string>
|
||||||
<string name="pref_title_classic_notification">Diseño clásico de la notificación</string>
|
<string name="pref_title_classic_notification">Diseño clásico de la notificación</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorar carátulas provenientes del almacenamiento local</string>
|
|
||||||
<string name="pref_title_gapless_playback">Reproducción sin interrupciones</string>
|
<string name="pref_title_gapless_playback">Reproducción sin interrupciones</string>
|
||||||
<string name="pref_title_audio_ducking">Reducir volumen en la pérdida del enfoque</string>
|
<string name="pref_title_audio_ducking">Reducir volumen en la pérdida del enfoque</string>
|
||||||
<string name="pref_title_last_added_interval">Intervalo de la última lista de reproducción</string>
|
<string name="pref_title_last_added_interval">Intervalo de la última lista de reproducción</string>
|
||||||
<string name="pref_title_remember_last_tab">Recordar la última pestaña</string>
|
<string name="pref_title_remember_last_tab">Recordar la última pestaña</string>
|
||||||
<string name="pref_title_remember_shuffle">Recordar aleatorio</string>
|
<string name="pref_title_remember_shuffle">Recordar aleatorio</string>
|
||||||
<string name="no_audio_ID">"Reproduce una canción primero, luego intentalo otra vez."</string>
|
|
||||||
<string name="delete_action">Borrar</string>
|
<string name="delete_action">Borrar</string>
|
||||||
<string name="clear_action">Limpiar</string>
|
<string name="clear_action">Limpiar</string>
|
||||||
<string name="remove_action">Eliminar</string>
|
<string name="remove_action">Eliminar</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Utilizar el diseño clásico de notificación.</string>
|
<string name="pref_summary_classic_notification">Utilizar el diseño clásico de notificación.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
|
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
|
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Puede aumentar la calidad de la carátula del álbum pero causa que las imágenes carguen mas lento. Sólo activalo si tienes problemas con carátulas de baja resolució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_navigation_bar">Colorea la barra de navegación con el color principal.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal</string>
|
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificaciones, navegación etc.</string>
|
<string name="pref_summary_audio_ducking">Notificaciones, navegación etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Reproducción aleatoria de la lista de reproducción</string>
|
<string name="action_shuffle_playlist">Reproducción aleatoria de la lista de reproducción</string>
|
||||||
<string name="light_theme_name">Claro</string>
|
<string name="light_theme_name">Claro</string>
|
||||||
<string name="dark_theme_name">Oscuro</string>
|
<string name="dark_theme_name">Oscuro</string>
|
||||||
<string name="always">Siempre</string>
|
|
||||||
<string name="only_on_wifi">Sólo con WiFi</string>
|
|
||||||
<string name="never">Nunca</string>
|
|
||||||
<string name="today">Hoy</string>
|
<string name="today">Hoy</string>
|
||||||
<string name="this_week">Esta semana</string>
|
<string name="this_week">Esta semana</string>
|
||||||
<string name="this_month">Este mes</string>
|
<string name="this_month">Este mes</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Tema general</string>
|
<string name="pref_title_general_theme">Tema general</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Biblioteca</string>
|
<string name="pref_header_library">Biblioteca</string>
|
||||||
<string name="pref_header_images">Imágenes</string>
|
|
||||||
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
|
<string name="pref_header_lockscreen">Pantalla de bloqueo</string>
|
||||||
<string name="pref_header_playlists">Listas de reproducción</string>
|
<string name="pref_header_playlists">Listas de reproducción</string>
|
||||||
<string name="pref_header_notification">Notificación</string>
|
<string name="pref_header_notification">Notificación</string>
|
||||||
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
|
<string name="pref_title_navigation_bar">Barra de navegación coloreada</string>
|
||||||
<string name="pref_title_app_shortcuts">Accesos directos coloreados</string>
|
<string name="pref_title_app_shortcuts">Accesos directos coloreados</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
|
<string name="pref_title_album_art_on_lockscreen">Mostrar carátula del álbum</string>
|
||||||
<string name="pref_title_auto_download_metadata">Auto descargar metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Desenfocar imagen de álbum</string>
|
<string name="pref_title_blurred_album_art">Desenfocar imagen de álbum</string>
|
||||||
<string name="pref_title_colored_notification">Notificación coloreada</string>
|
<string name="pref_title_colored_notification">Notificación coloreada</string>
|
||||||
<string name="pref_title_classic_notification">Diseño de notificación clásico</string>
|
<string name="pref_title_classic_notification">Diseño de notificación clásico</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorar imágenes de la librería del sistema</string>
|
|
||||||
<string name="pref_title_gapless_playback">Reproducción sin pausas</string>
|
<string name="pref_title_gapless_playback">Reproducción sin pausas</string>
|
||||||
<string name="pref_title_audio_ducking">Reducir volumen al recibir notificaciones</string>
|
<string name="pref_title_audio_ducking">Reducir volumen al recibir notificaciones</string>
|
||||||
<string name="pref_title_last_added_interval">Último intervalo de lista de reproducción añadido</string>
|
<string name="pref_title_last_added_interval">Último intervalo de lista de reproducción añadido</string>
|
||||||
<string name="pref_title_remember_last_tab">Recordar la última pestaña</string>
|
<string name="pref_title_remember_last_tab">Recordar la última pestaña</string>
|
||||||
<string name="no_audio_ID">"Reproduce una canción primero, e intenta de nuevo."</string>
|
|
||||||
<string name="delete_action">Eliminar</string>
|
<string name="delete_action">Eliminar</string>
|
||||||
<string name="clear_action">Limpiar</string>
|
<string name="clear_action">Limpiar</string>
|
||||||
<string name="remove_action">Eliminar</string>
|
<string name="remove_action">Eliminar</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Usar el diseño de notificación clásico.</string>
|
<string name="pref_summary_classic_notification">Usar el diseño de notificación clásico.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
|
<string name="pref_summary_colored_notification">"Colorea la notificaci\u00f3n con el color vibrante de la car\u00e1tula del \u00e1lbum."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
|
<string name="pref_summary_gapless_playback">"Puede causar problemas durante la reproducción en algunos dispositivos."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Puede aumentar la calidad de la carátula del álbum pero a veces puede tardar en cargar. Sólo actívalo si tienes problemas con carátulas de baja resolució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_navigation_bar">Colorea la barra de navegación con el color principal.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colorea los accesos directos con el color principal.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificaciones, navegación, etc.</string>
|
<string name="pref_summary_audio_ducking">Notificaciones, navegación, etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Sekoita soittolistat</string>
|
<string name="action_shuffle_playlist">Sekoita soittolistat</string>
|
||||||
<string name="light_theme_name">Vaalea</string>
|
<string name="light_theme_name">Vaalea</string>
|
||||||
<string name="dark_theme_name">Tumma</string>
|
<string name="dark_theme_name">Tumma</string>
|
||||||
<string name="always">Aina</string>
|
|
||||||
<string name="only_on_wifi">Vain Wi-Fi-yhteydellä</string>
|
|
||||||
<string name="never">Ei koskaan</string>
|
|
||||||
<string name="today">1 päivä</string>
|
<string name="today">1 päivä</string>
|
||||||
<string name="this_week">1 viikko</string>
|
<string name="this_week">1 viikko</string>
|
||||||
<string name="past_seven_days">Edelliset 7 päivää</string>
|
<string name="past_seven_days">Edelliset 7 päivää</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Yleinen teema</string>
|
<string name="pref_title_general_theme">Yleinen teema</string>
|
||||||
<string name="pref_header_audio">Ääni</string>
|
<string name="pref_header_audio">Ääni</string>
|
||||||
<string name="pref_header_library">Kirjasto</string>
|
<string name="pref_header_library">Kirjasto</string>
|
||||||
<string name="pref_header_images">Kuvat</string>
|
|
||||||
<string name="pref_header_lockscreen">Lukitusnäyttö</string>
|
<string name="pref_header_lockscreen">Lukitusnäyttö</string>
|
||||||
<string name="pref_header_playlists">Soittolistat</string>
|
<string name="pref_header_playlists">Soittolistat</string>
|
||||||
<string name="pref_header_notification">Ilmoitukset</string>
|
<string name="pref_header_notification">Ilmoitukset</string>
|
||||||
<string name="pref_title_navigation_bar">Värillinen navigaatiopalkki</string>
|
<string name="pref_title_navigation_bar">Värillinen navigaatiopalkki</string>
|
||||||
<string name="pref_title_app_shortcuts">Värilliset sovelluksen pikavalinnat</string>
|
<string name="pref_title_app_shortcuts">Värilliset sovelluksen pikavalinnat</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Näytä albumin kansi</string>
|
<string name="pref_title_album_art_on_lockscreen">Näytä albumin kansi</string>
|
||||||
<string name="pref_title_auto_download_metadata">Metatietojen automaattinen lataus</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Sumenna albumin kansi</string>
|
<string name="pref_title_blurred_album_art">Sumenna albumin kansi</string>
|
||||||
<string name="pref_title_colored_notification">Värillinen ilmoitus</string>
|
<string name="pref_title_colored_notification">Värillinen ilmoitus</string>
|
||||||
<string name="pref_title_classic_notification">Klassinen ilmoituksen ulkonäkö</string>
|
<string name="pref_title_classic_notification">Klassinen ilmoituksen ulkonäkö</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Sivuuta Media Storen albumikannet</string>
|
|
||||||
<string name="pref_title_gapless_playback">Tauoton toisto</string>
|
<string name="pref_title_gapless_playback">Tauoton toisto</string>
|
||||||
<string name="pref_title_audio_ducking">Hiljennä ääntä, kun kohdistus menetetään</string>
|
<string name="pref_title_audio_ducking">Hiljennä ääntä, kun kohdistus menetetään</string>
|
||||||
<string name="pref_title_last_added_interval">Viimeksi lisätyt -soittolistan aikaväli</string>
|
<string name="pref_title_last_added_interval">Viimeksi lisätyt -soittolistan aikaväli</string>
|
||||||
<string name="pref_title_remember_last_tab">Muista viimeisin välilehti</string>
|
<string name="pref_title_remember_last_tab">Muista viimeisin välilehti</string>
|
||||||
<string name="pref_title_remember_shuffle">Muista sekoitus</string>
|
<string name="pref_title_remember_shuffle">Muista sekoitus</string>
|
||||||
<string name="no_audio_ID">"Toista jokin kappale ensin, koita sitten uudelleen."</string>
|
|
||||||
<string name="delete_action">Poista</string>
|
<string name="delete_action">Poista</string>
|
||||||
<string name="clear_action">Tyhjennä</string>
|
<string name="clear_action">Tyhjennä</string>
|
||||||
<string name="remove_action">Poista</string>
|
<string name="remove_action">Poista</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Käytä klassista ilmoituksen ulkonäköä.</string>
|
<string name="pref_summary_classic_notification">Käytä klassista ilmoituksen ulkonäköä.</string>
|
||||||
<string name="pref_summary_colored_notification">"V\u00e4ritt\u00e4\u00e4 ilmoituksen albumin eloisalla v\u00e4rill\u00e4."</string>
|
<string name="pref_summary_colored_notification">"V\u00e4ritt\u00e4\u00e4 ilmoituksen albumin eloisalla v\u00e4rill\u00e4."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Saattaa aiheuttaa toisto-ongelmia joillain laitteilla."</string>
|
<string name="pref_summary_gapless_playback">"Saattaa aiheuttaa toisto-ongelmia joillain laitteilla."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Saattaa nostaa albumin kannen laatua, mutta aiheuttaa hitaampaa kuvien latausaikaa. Käytä tätä vain, jos sinulla on ongelmia huonolaatuisten taideteosten kanssa.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Värittää navigaatiopalkin päävärillä.</string>
|
<string name="pref_summary_colored_navigation_bar">Värittää navigaatiopalkin päävärillä.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Värittää sovelluksen pikavalinnat päävärillä.</string>
|
<string name="pref_summary_colored_app_shortcuts">Värittää sovelluksen pikavalinnat päävärillä.</string>
|
||||||
<string name="pref_summary_audio_ducking">Ilmoitukset, liikkuminen jne.</string>
|
<string name="pref_summary_audio_ducking">Ilmoitukset, liikkuminen jne.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Lecture aléatoire</string>
|
<string name="action_shuffle_playlist">Lecture aléatoire</string>
|
||||||
<string name="light_theme_name">Clair</string>
|
<string name="light_theme_name">Clair</string>
|
||||||
<string name="dark_theme_name">Sombre</string>
|
<string name="dark_theme_name">Sombre</string>
|
||||||
<string name="always">Toujours</string>
|
|
||||||
<string name="only_on_wifi">Wi-Fi uniquement</string>
|
|
||||||
<string name="never">Jamais</string>
|
|
||||||
<string name="today">Aujourd\'hui</string>
|
<string name="today">Aujourd\'hui</string>
|
||||||
<string name="this_week">Cette semaine</string>
|
<string name="this_week">Cette semaine</string>
|
||||||
<string name="this_month">Ce mois-ci</string>
|
<string name="this_month">Ce mois-ci</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Thème général</string>
|
<string name="pref_title_general_theme">Thème général</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Bibliothèque</string>
|
<string name="pref_header_library">Bibliothèque</string>
|
||||||
<string name="pref_header_images">Images</string>
|
|
||||||
<string name="pref_header_lockscreen">Écran de verrouillage</string>
|
<string name="pref_header_lockscreen">Écran de verrouillage</string>
|
||||||
<string name="pref_header_playlists">Listes de lecture</string>
|
<string name="pref_header_playlists">Listes de lecture</string>
|
||||||
<string name="pref_header_notification">Notification</string>
|
<string name="pref_header_notification">Notification</string>
|
||||||
<string name="pref_title_navigation_bar">Barre de navigation colorée</string>
|
<string name="pref_title_navigation_bar">Barre de navigation colorée</string>
|
||||||
<string name="pref_title_app_shortcuts">Raccourcis de l\'application colorés</string>
|
<string name="pref_title_app_shortcuts">Raccourcis de l\'application colorés</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Afficher la pochette d\'album</string>
|
<string name="pref_title_album_art_on_lockscreen">Afficher la pochette d\'album</string>
|
||||||
<string name="pref_title_auto_download_metadata">Télécharger automatiquement les métadonnées</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Flouter la pochette d\'album</string>
|
<string name="pref_title_blurred_album_art">Flouter la pochette d\'album</string>
|
||||||
<string name="pref_title_colored_notification">Notification colorée</string>
|
<string name="pref_title_colored_notification">Notification colorée</string>
|
||||||
<string name="pref_title_classic_notification">Style de notification classic</string>
|
<string name="pref_title_classic_notification">Style de notification classic</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorer le stockage des pochettes</string>
|
|
||||||
<string name="pref_title_gapless_playback">Lecture sans coupure</string>
|
<string name="pref_title_gapless_playback">Lecture sans coupure</string>
|
||||||
<string name="pref_title_audio_ducking">Réduire le volume lorse que le focus est interrompu</string>
|
<string name="pref_title_audio_ducking">Réduire le volume lorse que le focus est interrompu</string>
|
||||||
<string name="pref_title_last_added_interval">Intervalle de la playlist \"Derniers ajouts\"</string>
|
<string name="pref_title_last_added_interval">Intervalle de la playlist \"Derniers ajouts\"</string>
|
||||||
<string name="pref_title_remember_last_tab">Se souvenir de la dernière fenêtre</string>
|
<string name="pref_title_remember_last_tab">Se souvenir de la dernière fenêtre</string>
|
||||||
<string name="no_audio_ID">"Faire jouer un titre d'abord, puis réessayer."</string>
|
|
||||||
<string name="delete_action">Supprimer</string>
|
<string name="delete_action">Supprimer</string>
|
||||||
<string name="clear_action">Effacer</string>
|
<string name="clear_action">Effacer</string>
|
||||||
<string name="remove_action">Retirer</string>
|
<string name="remove_action">Retirer</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Utiliser le style de notification classic</string>
|
<string name="pref_summary_classic_notification">Utiliser le style de notification classic</string>
|
||||||
<string name="pref_summary_colored_notification">"Colore la notification en fonction de la pochette de l'album."</string>
|
<string name="pref_summary_colored_notification">"Colore la notification en fonction de la pochette de l'album."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Peut causer des problèmes de lecture sur certains appareils."</string>
|
<string name="pref_summary_gapless_playback">"Peut causer des problèmes de lecture sur certains appareils."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Peut augmenter la qualité des pochettes d\'albums, mais peut causer des temps de chargement plus longs. N\'activez cette option que si vous avez des problèmes de basse résolution des pochettes.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colore la barre de navigation en fonction de la couleur principale.</string>
|
<string name="pref_summary_colored_navigation_bar">Colore la barre de navigation en fonction de la couleur principale.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colore les raccourcis de l\'application selon la couleur primaire.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colore les raccourcis de l\'application selon la couleur primaire.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notifications, navigation, etc.</string>
|
<string name="pref_summary_audio_ducking">Notifications, navigation, etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">ערבב רשימת השמעה</string>
|
<string name="action_shuffle_playlist">ערבב רשימת השמעה</string>
|
||||||
<string name="light_theme_name">בהיר</string>
|
<string name="light_theme_name">בהיר</string>
|
||||||
<string name="dark_theme_name">כהה</string>
|
<string name="dark_theme_name">כהה</string>
|
||||||
<string name="always">תמיד</string>
|
|
||||||
<string name="only_on_wifi">רק עם WI-FI</string>
|
|
||||||
<string name="never">אף פעם</string>
|
|
||||||
<string name="today">היום</string>
|
<string name="today">היום</string>
|
||||||
<string name="this_week">השבוע</string>
|
<string name="this_week">השבוע</string>
|
||||||
<string name="this_month">החודש</string>
|
<string name="this_month">החודש</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">ערכת נושא כללית</string>
|
<string name="pref_title_general_theme">ערכת נושא כללית</string>
|
||||||
<string name="pref_header_audio">שמע</string>
|
<string name="pref_header_audio">שמע</string>
|
||||||
<string name="pref_header_library">ספרייה</string>
|
<string name="pref_header_library">ספרייה</string>
|
||||||
<string name="pref_header_images">תמונות</string>
|
|
||||||
<string name="pref_header_lockscreen">מסך נעילה</string>
|
<string name="pref_header_lockscreen">מסך נעילה</string>
|
||||||
<string name="pref_header_playlists">רשימת השמעה</string>
|
<string name="pref_header_playlists">רשימת השמעה</string>
|
||||||
<string name="pref_header_notification">התראות</string>
|
<string name="pref_header_notification">התראות</string>
|
||||||
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
|
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
|
||||||
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
|
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
|
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
|
||||||
<string name="pref_title_auto_download_metadata">הורד מידע שיר אוטומטית</string>
|
|
||||||
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
|
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
|
||||||
<string name="pref_title_colored_notification">התראה צבעונית</string>
|
<string name="pref_title_colored_notification">התראה צבעונית</string>
|
||||||
<string name="pref_title_classic_notification">עיצוב התראה קלאיסי</string>
|
<string name="pref_title_classic_notification">עיצוב התראה קלאיסי</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">התעלם מעיצוב עטיפת חנות מדיה</string>
|
|
||||||
<string name="pref_title_gapless_playback">ניגון ללא מרווחים בין השירים</string>
|
<string name="pref_title_gapless_playback">ניגון ללא מרווחים בין השירים</string>
|
||||||
<string name="pref_title_audio_ducking">הפחת את עוצמת הקול באובדן מיקוד</string>
|
<string name="pref_title_audio_ducking">הפחת את עוצמת הקול באובדן מיקוד</string>
|
||||||
<string name="pref_title_last_added_interval">הפסקת רשימת השמעה אחרונה שהוספה</string>
|
<string name="pref_title_last_added_interval">הפסקת רשימת השמעה אחרונה שהוספה</string>
|
||||||
<string name="pref_title_remember_last_tab">זכור את הכרטיסיה האחרונה</string>
|
<string name="pref_title_remember_last_tab">זכור את הכרטיסיה האחרונה</string>
|
||||||
<string name="no_audio_ID">"נגן/י שיר ואז נסה/י שנית."</string>
|
|
||||||
<string name="delete_action">מחיקה</string>
|
<string name="delete_action">מחיקה</string>
|
||||||
<string name="clear_action">ניקוי</string>
|
<string name="clear_action">ניקוי</string>
|
||||||
<string name="remove_action">הסרה</string>
|
<string name="remove_action">הסרה</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
|
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
|
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
|
||||||
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
|
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">יכול להעלות את איכות תמונות האלבומים, אך גם גורם לטעינה איטית יותר של התמונות. הפעל אפשרות זו רק אם יש לך בעיות עם תמונות באיכות נמוכה.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
|
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
|
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
|
||||||
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
|
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Izmiješaj popis naslova</string>
|
<string name="action_shuffle_playlist">Izmiješaj popis naslova</string>
|
||||||
<string name="light_theme_name">Svijetla</string>
|
<string name="light_theme_name">Svijetla</string>
|
||||||
<string name="dark_theme_name">Tamna</string>
|
<string name="dark_theme_name">Tamna</string>
|
||||||
<string name="always">Uvijek</string>
|
|
||||||
<string name="only_on_wifi">Samo na Wifi-ju</string>
|
|
||||||
<string name="never">Nikad</string>
|
|
||||||
<string name="today">Danas</string>
|
<string name="today">Danas</string>
|
||||||
<string name="this_week">Ovaj tjedan</string>
|
<string name="this_week">Ovaj tjedan</string>
|
||||||
<string name="this_month">Ovaj mjesec</string>
|
<string name="this_month">Ovaj mjesec</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Općenita tema</string>
|
<string name="pref_title_general_theme">Općenita tema</string>
|
||||||
<string name="pref_header_audio">Zvuk</string>
|
<string name="pref_header_audio">Zvuk</string>
|
||||||
<string name="pref_header_library">Biblioteka</string>
|
<string name="pref_header_library">Biblioteka</string>
|
||||||
<string name="pref_header_images">Slike</string>
|
|
||||||
<string name="pref_header_lockscreen">Zaključani zaslon</string>
|
<string name="pref_header_lockscreen">Zaključani zaslon</string>
|
||||||
<string name="pref_header_playlists">Popisi naslova</string>
|
<string name="pref_header_playlists">Popisi naslova</string>
|
||||||
<string name="pref_header_notification">Obavijest</string>
|
<string name="pref_header_notification">Obavijest</string>
|
||||||
<string name="pref_title_navigation_bar">Obojena navigacijska traka</string>
|
<string name="pref_title_navigation_bar">Obojena navigacijska traka</string>
|
||||||
<string name="pref_title_app_shortcuts">Obojani prečaci</string>
|
<string name="pref_title_app_shortcuts">Obojani prečaci</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Prikaži omot albuma na zaklj. zaslonu</string>
|
<string name="pref_title_album_art_on_lockscreen">Prikaži omot albuma na zaklj. zaslonu</string>
|
||||||
<string name="pref_title_auto_download_metadata">Automatski preuzmi meta podatke</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Zamagli omot albuma</string>
|
<string name="pref_title_blurred_album_art">Zamagli omot albuma</string>
|
||||||
<string name="pref_title_colored_notification">Obojene obavijesti</string>
|
<string name="pref_title_colored_notification">Obojene obavijesti</string>
|
||||||
<string name="pref_title_classic_notification">Klasični dizajn obavijesti</string>
|
<string name="pref_title_classic_notification">Klasični dizajn obavijesti</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignoriraj Media Store omote</string>
|
|
||||||
<string name="pref_title_gapless_playback">Reprodukcija bez prekida</string>
|
<string name="pref_title_gapless_playback">Reprodukcija bez prekida</string>
|
||||||
<string name="pref_title_audio_ducking">Smanji glasn. prilikom drugih zvukova</string>
|
<string name="pref_title_audio_ducking">Smanji glasn. prilikom drugih zvukova</string>
|
||||||
<string name="pref_title_last_added_interval">Interval nedavnog popisa</string>
|
<string name="pref_title_last_added_interval">Interval nedavnog popisa</string>
|
||||||
<string name="pref_title_remember_last_tab">Zapamti zadnju karticu</string>
|
<string name="pref_title_remember_last_tab">Zapamti zadnju karticu</string>
|
||||||
<string name="no_audio_ID">"Reproducirajte nešto i pokušajte opet."</string>
|
|
||||||
<string name="delete_action">Izbriši</string>
|
<string name="delete_action">Izbriši</string>
|
||||||
<string name="clear_action">Očisti</string>
|
<string name="clear_action">Očisti</string>
|
||||||
<string name="remove_action">Ukloni</string>
|
<string name="remove_action">Ukloni</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Koristi klasični dizajn obavijesti.</string>
|
<string name="pref_summary_classic_notification">Koristi klasični dizajn obavijesti.</string>
|
||||||
<string name="pref_summary_colored_notification">"Obavijesti su obojene istaknutom bojom omota albuma."</string>
|
<string name="pref_summary_colored_notification">"Obavijesti su obojene istaknutom bojom omota albuma."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Na nekim uređajima može uzrokovati probleme s reproduciranjem."</string>
|
<string name="pref_summary_gapless_playback">"Na nekim uređajima može uzrokovati probleme s reproduciranjem."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Može povećati kvalitetu omota albuma, ali povećava vrijeme učitavanja. Omogućite ovo samo ako imate problema s omotima niske rezolucije.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Boja navigacijsku traku primarnom bojom.</string>
|
<string name="pref_summary_colored_navigation_bar">Boja navigacijsku traku primarnom bojom.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Boja prečace aplikacije u primarnu boju.</string>
|
<string name="pref_summary_colored_app_shortcuts">Boja prečace aplikacije u primarnu boju.</string>
|
||||||
<string name="pref_summary_audio_ducking">Obavijesti, navigacija itd.</string>
|
<string name="pref_summary_audio_ducking">Obavijesti, navigacija itd.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Lejátszási lista keverése</string>
|
<string name="action_shuffle_playlist">Lejátszási lista keverése</string>
|
||||||
<string name="light_theme_name">Világos</string>
|
<string name="light_theme_name">Világos</string>
|
||||||
<string name="dark_theme_name">Sötét</string>
|
<string name="dark_theme_name">Sötét</string>
|
||||||
<string name="always">Mindig</string>
|
|
||||||
<string name="only_on_wifi">Csak WIFI-n keresztül</string>
|
|
||||||
<string name="never">Soha</string>
|
|
||||||
<string name="today">Ma</string>
|
<string name="today">Ma</string>
|
||||||
<string name="this_week">Ezen a héten</string>
|
<string name="this_week">Ezen a héten</string>
|
||||||
<string name="this_month">Ebben a hónapban</string>
|
<string name="this_month">Ebben a hónapban</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Téma</string>
|
<string name="pref_title_general_theme">Téma</string>
|
||||||
<string name="pref_header_audio">Hang</string>
|
<string name="pref_header_audio">Hang</string>
|
||||||
<string name="pref_header_library">Könyvtár</string>
|
<string name="pref_header_library">Könyvtár</string>
|
||||||
<string name="pref_header_images">Képek</string>
|
|
||||||
<string name="pref_header_lockscreen">Zárképernyő</string>
|
<string name="pref_header_lockscreen">Zárképernyő</string>
|
||||||
<string name="pref_header_playlists">Lejátszási listák</string>
|
<string name="pref_header_playlists">Lejátszási listák</string>
|
||||||
<string name="pref_header_notification">Értesítés</string>
|
<string name="pref_header_notification">Értesítés</string>
|
||||||
<string name="pref_title_navigation_bar">Színezett navigációs sáv</string>
|
<string name="pref_title_navigation_bar">Színezett navigációs sáv</string>
|
||||||
<string name="pref_title_app_shortcuts">Színezett alkalmazás hivatkozások</string>
|
<string name="pref_title_app_shortcuts">Színezett alkalmazás hivatkozások</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Albumborító megjelenítése</string>
|
<string name="pref_title_album_art_on_lockscreen">Albumborító megjelenítése</string>
|
||||||
<string name="pref_title_auto_download_metadata">Automatikus letöltés metaadatok</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Albumborító elhomályosítása</string>
|
<string name="pref_title_blurred_album_art">Albumborító elhomályosítása</string>
|
||||||
<string name="pref_title_colored_notification">Színezett értesítés</string>
|
<string name="pref_title_colored_notification">Színezett értesítés</string>
|
||||||
<string name="pref_title_classic_notification">Klasszikus értesítési dízájn</string>
|
<string name="pref_title_classic_notification">Klasszikus értesítési dízájn</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">A médiatár albumborítók figyelmen kívül hagyása</string>
|
|
||||||
<string name="pref_title_gapless_playback">Áttűnéses lejátszás</string>
|
<string name="pref_title_gapless_playback">Áttűnéses lejátszás</string>
|
||||||
<string name="pref_title_audio_ducking">Hangerő csökkentése</string>
|
<string name="pref_title_audio_ducking">Hangerő csökkentése</string>
|
||||||
<string name="pref_title_last_added_interval">Utoljára hozzáadott lejátszási lista intervallum</string>
|
<string name="pref_title_last_added_interval">Utoljára hozzáadott lejátszási lista intervallum</string>
|
||||||
<string name="pref_title_remember_last_tab">Emlékezz az utolsó fülre</string>
|
<string name="pref_title_remember_last_tab">Emlékezz az utolsó fülre</string>
|
||||||
<string name="no_audio_ID">"Először játsszon le egy dalt, majd próbálja újra."</string>
|
|
||||||
<string name="delete_action">Törlés</string>
|
<string name="delete_action">Törlés</string>
|
||||||
<string name="clear_action">Kiürítés</string>
|
<string name="clear_action">Kiürítés</string>
|
||||||
<string name="remove_action">Eltávolítás</string>
|
<string name="remove_action">Eltávolítás</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Használja a klasszikus értesítési dizájn.</string>
|
<string name="pref_summary_classic_notification">Használja a klasszikus értesítési dizájn.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u00c9rtes\u00edt\u00e9sek sz\u00ednez\u00e9se az albumbor\u00edt\u00f3 sz\u00edn\u00e9vel."</string>
|
<string name="pref_summary_colored_notification">"\u00c9rtes\u00edt\u00e9sek sz\u00ednez\u00e9se az albumbor\u00edt\u00f3 sz\u00edn\u00e9vel."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Lejátszási problémákat okozhat néhány eszközön."</string>
|
<string name="pref_summary_gapless_playback">"Lejátszási problémákat okozhat néhány eszközön."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Növelheti az albumborítók minőségét, de lassabban tölti be a képeket. Csak akkor engedélyezze, ha az albumborítók rossz minőségben jelennek meg.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Navigációs sáv színezése az alapértelmezett színnel.</string>
|
<string name="pref_summary_colored_navigation_bar">Navigációs sáv színezése az alapértelmezett színnel.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Az alkalmazás hivatkozások színezése az elsődleges szín szerint.</string>
|
<string name="pref_summary_colored_app_shortcuts">Az alkalmazás hivatkozások színezése az elsődleges szín szerint.</string>
|
||||||
<string name="pref_summary_audio_ducking">Beérkező értesítéskor a lejátszás hangereje lecsökken, majd az értesítés végén visszaáll az eredeti hangerőre.</string>
|
<string name="pref_summary_audio_ducking">Beérkező értesítéskor a lejátszás hangereje lecsökken, majd az értesítés végén visszaáll az eredeti hangerőre.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Putar daftar putar secara acak</string>
|
<string name="action_shuffle_playlist">Putar daftar putar secara acak</string>
|
||||||
<string name="light_theme_name">Terang</string>
|
<string name="light_theme_name">Terang</string>
|
||||||
<string name="dark_theme_name">Gelap</string>
|
<string name="dark_theme_name">Gelap</string>
|
||||||
<string name="always">Selalu</string>
|
|
||||||
<string name="only_on_wifi">Hanya pada Wi-Fi</string>
|
|
||||||
<string name="never">Tidak pernah</string>
|
|
||||||
<string name="today">Hari ini</string>
|
<string name="today">Hari ini</string>
|
||||||
<string name="this_week">Minggu ini</string>
|
<string name="this_week">Minggu ini</string>
|
||||||
<string name="past_seven_days">7 hari terakhir</string>
|
<string name="past_seven_days">7 hari terakhir</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Tema umum</string>
|
<string name="pref_title_general_theme">Tema umum</string>
|
||||||
<string name="pref_header_audio">Suara</string>
|
<string name="pref_header_audio">Suara</string>
|
||||||
<string name="pref_header_library">Pustaka</string>
|
<string name="pref_header_library">Pustaka</string>
|
||||||
<string name="pref_header_images">Gambar</string>
|
|
||||||
<string name="pref_header_lockscreen">Layar kunci</string>
|
<string name="pref_header_lockscreen">Layar kunci</string>
|
||||||
<string name="pref_header_playlists">Daftar putar</string>
|
<string name="pref_header_playlists">Daftar putar</string>
|
||||||
<string name="pref_header_notification">Notifikasi</string>
|
<string name="pref_header_notification">Notifikasi</string>
|
||||||
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
|
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
|
||||||
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
|
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
|
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
|
||||||
<string name="pref_title_auto_download_metadata">Otomatis mengunduh metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Buramkan sampul album</string>
|
<string name="pref_title_blurred_album_art">Buramkan sampul album</string>
|
||||||
<string name="pref_title_colored_notification">Notifikasi berwarna</string>
|
<string name="pref_title_colored_notification">Notifikasi berwarna</string>
|
||||||
<string name="pref_title_classic_notification">Desain notifikasi klasik</string>
|
<string name="pref_title_classic_notification">Desain notifikasi klasik</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Abaikan sampul-sampul pada Media Penyimpanan</string>
|
|
||||||
<string name="pref_title_gapless_playback">Pemutaran tanpa jeda</string>
|
<string name="pref_title_gapless_playback">Pemutaran tanpa jeda</string>
|
||||||
<string name="pref_title_audio_ducking">Kurangi suara saat ada pemberitahuan</string>
|
<string name="pref_title_audio_ducking">Kurangi suara saat ada pemberitahuan</string>
|
||||||
<string name="pref_title_last_added_interval">Sela daftar putar yang terakhir ditambahkan</string>
|
<string name="pref_title_last_added_interval">Sela daftar putar yang terakhir ditambahkan</string>
|
||||||
<string name="pref_title_remember_last_tab">Ingat tab terakhir</string>
|
<string name="pref_title_remember_last_tab">Ingat tab terakhir</string>
|
||||||
<string name="pref_title_remember_shuffle">Ingat putar acak</string>
|
<string name="pref_title_remember_shuffle">Ingat putar acak</string>
|
||||||
<string name="no_audio_ID">"Silahkan mainkan sebuah lagu dan coba lagi. "</string>
|
|
||||||
<string name="delete_action">Hapus</string>
|
<string name="delete_action">Hapus</string>
|
||||||
<string name="clear_action">Kosongkan</string>
|
<string name="clear_action">Kosongkan</string>
|
||||||
<string name="remove_action">Hapus</string>
|
<string name="remove_action">Hapus</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
|
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
|
||||||
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
|
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
|
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">"Dapat meningkatkan kualitas sampul album, namun menyebabkan waktu pemuatan lebih lambat. Aktifkan jika Anda bermasalah dengan resolusi gambar album yang rendah. "</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
|
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
|
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
|
||||||
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
|
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Putar daftar putar secara acak</string>
|
<string name="action_shuffle_playlist">Putar daftar putar secara acak</string>
|
||||||
<string name="light_theme_name">Terang</string>
|
<string name="light_theme_name">Terang</string>
|
||||||
<string name="dark_theme_name">Gelap</string>
|
<string name="dark_theme_name">Gelap</string>
|
||||||
<string name="always">Selalu</string>
|
|
||||||
<string name="only_on_wifi">Hanya pada Wi-Fi</string>
|
|
||||||
<string name="never">Tidak pernah</string>
|
|
||||||
<string name="today">Hari ini</string>
|
<string name="today">Hari ini</string>
|
||||||
<string name="this_week">Minggu ini</string>
|
<string name="this_week">Minggu ini</string>
|
||||||
<string name="past_seven_days">7 hari terakhir</string>
|
<string name="past_seven_days">7 hari terakhir</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Tema umum</string>
|
<string name="pref_title_general_theme">Tema umum</string>
|
||||||
<string name="pref_header_audio">Suara</string>
|
<string name="pref_header_audio">Suara</string>
|
||||||
<string name="pref_header_library">Pustaka</string>
|
<string name="pref_header_library">Pustaka</string>
|
||||||
<string name="pref_header_images">Gambar</string>
|
|
||||||
<string name="pref_header_lockscreen">Layar kunci</string>
|
<string name="pref_header_lockscreen">Layar kunci</string>
|
||||||
<string name="pref_header_playlists">Daftar putar</string>
|
<string name="pref_header_playlists">Daftar putar</string>
|
||||||
<string name="pref_header_notification">Notifikasi</string>
|
<string name="pref_header_notification">Notifikasi</string>
|
||||||
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
|
<string name="pref_title_navigation_bar">Alat Navigasi Berwarna</string>
|
||||||
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
|
<string name="pref_title_app_shortcuts">Pintasan Berwarna</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
|
<string name="pref_title_album_art_on_lockscreen">Tampilkan sampul album</string>
|
||||||
<string name="pref_title_auto_download_metadata">Otomatis mengunduh metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Buramkan sampul album</string>
|
<string name="pref_title_blurred_album_art">Buramkan sampul album</string>
|
||||||
<string name="pref_title_colored_notification">Notifikasi berwarna</string>
|
<string name="pref_title_colored_notification">Notifikasi berwarna</string>
|
||||||
<string name="pref_title_classic_notification">Desain notifikasi klasik</string>
|
<string name="pref_title_classic_notification">Desain notifikasi klasik</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Abaikan sampul-sampul pada Media Penyimpanan</string>
|
|
||||||
<string name="pref_title_gapless_playback">Pemutaran tanpa jeda</string>
|
<string name="pref_title_gapless_playback">Pemutaran tanpa jeda</string>
|
||||||
<string name="pref_title_audio_ducking">Kurangi suara saat ada pemberitahuan</string>
|
<string name="pref_title_audio_ducking">Kurangi suara saat ada pemberitahuan</string>
|
||||||
<string name="pref_title_last_added_interval">Sela daftar putar yang terakhir ditambahkan</string>
|
<string name="pref_title_last_added_interval">Sela daftar putar yang terakhir ditambahkan</string>
|
||||||
<string name="pref_title_remember_last_tab">Ingat tab terakhir</string>
|
<string name="pref_title_remember_last_tab">Ingat tab terakhir</string>
|
||||||
<string name="pref_title_remember_shuffle">Ingat putar acak</string>
|
<string name="pref_title_remember_shuffle">Ingat putar acak</string>
|
||||||
<string name="no_audio_ID">"Silahkan mainkan sebuah lagu dan coba lagi. "</string>
|
|
||||||
<string name="delete_action">Hapus</string>
|
<string name="delete_action">Hapus</string>
|
||||||
<string name="clear_action">Kosongkan</string>
|
<string name="clear_action">Kosongkan</string>
|
||||||
<string name="remove_action">Hapus</string>
|
<string name="remove_action">Hapus</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
|
<string name="pref_summary_classic_notification">Gunakan desain notifikasi klasik.</string>
|
||||||
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
|
<string name="pref_summary_colored_notification">"Mewarnai notifikasi putar dengan warna yang cerah dari album."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
|
<string name="pref_summary_gapless_playback">"Dapat menyebabkan masalah pemutaran pada beberapa perangkat."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">"Dapat meningkatkan kualitas sampul album, namun menyebabkan waktu pemuatan lebih lambat. Aktifkan jika Anda bermasalah dengan resolusi gambar album yang rendah. "</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
|
<string name="pref_summary_colored_navigation_bar">"Mewarnai bilah navigasi dengan warna primer. "</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
|
<string name="pref_summary_colored_app_shortcuts">Mewarnai pintasan-pintasan dengan warna utama.</string>
|
||||||
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
|
<string name="pref_summary_audio_ducking">Pemberitahuan, navigasi dll.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Riproduzione casuale playlist</string>
|
<string name="action_shuffle_playlist">Riproduzione casuale playlist</string>
|
||||||
<string name="light_theme_name">Chiaro</string>
|
<string name="light_theme_name">Chiaro</string>
|
||||||
<string name="dark_theme_name">Scuro</string>
|
<string name="dark_theme_name">Scuro</string>
|
||||||
<string name="always">Sempre</string>
|
|
||||||
<string name="only_on_wifi">Solo se connessi a Wi-Fi</string>
|
|
||||||
<string name="never">Mai</string>
|
|
||||||
<string name="today">Oggi</string>
|
<string name="today">Oggi</string>
|
||||||
<string name="this_week">Questa settimana</string>
|
<string name="this_week">Questa settimana</string>
|
||||||
<string name="past_seven_days">Ultimi 7 giorni</string>
|
<string name="past_seven_days">Ultimi 7 giorni</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Tema generale</string>
|
<string name="pref_title_general_theme">Tema generale</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Libreria</string>
|
<string name="pref_header_library">Libreria</string>
|
||||||
<string name="pref_header_images">Immagini</string>
|
|
||||||
<string name="pref_header_lockscreen">Schermata di blocco</string>
|
<string name="pref_header_lockscreen">Schermata di blocco</string>
|
||||||
<string name="pref_header_playlists">Playlist</string>
|
<string name="pref_header_playlists">Playlist</string>
|
||||||
<string name="pref_header_notification">Notifica</string>
|
<string name="pref_header_notification">Notifica</string>
|
||||||
<string name="pref_title_navigation_bar">Barra di navigazione colorata</string>
|
<string name="pref_title_navigation_bar">Barra di navigazione colorata</string>
|
||||||
<string name="pref_title_app_shortcuts">Scorciatoie app colorate</string>
|
<string name="pref_title_app_shortcuts">Scorciatoie app colorate</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Mostra copertina album nella schermata di blocco</string>
|
<string name="pref_title_album_art_on_lockscreen">Mostra copertina album nella schermata di blocco</string>
|
||||||
<string name="pref_title_auto_download_metadata">Ottieni automaticamente i metadati</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Sfoca la copertina</string>
|
<string name="pref_title_blurred_album_art">Sfoca la copertina</string>
|
||||||
<string name="pref_title_colored_notification">Notifica colorata</string>
|
<string name="pref_title_colored_notification">Notifica colorata</string>
|
||||||
<string name="pref_title_classic_notification">Design di notifica classico</string>
|
<string name="pref_title_classic_notification">Design di notifica classico</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignora le copertine del Media Store</string>
|
|
||||||
<string name="pref_title_gapless_playback">Riproduzione senza intervalli</string>
|
<string name="pref_title_gapless_playback">Riproduzione senza intervalli</string>
|
||||||
<string name="pref_title_audio_ducking">Riduci volume in caso di perdita di focus audio</string>
|
<string name="pref_title_audio_ducking">Riduci volume in caso di perdita di focus audio</string>
|
||||||
<string name="pref_title_last_added_interval">Ultimo intervallo di playlist aggiunto</string>
|
<string name="pref_title_last_added_interval">Ultimo intervallo di playlist aggiunto</string>
|
||||||
<string name="pref_title_remember_last_tab">Ricorda ultima scheda</string>
|
<string name="pref_title_remember_last_tab">Ricorda ultima scheda</string>
|
||||||
<string name="pref_title_remember_shuffle">Ricorda casuale</string>
|
<string name="pref_title_remember_shuffle">Ricorda casuale</string>
|
||||||
<string name="no_audio_ID">"Riproduci un brano e prova di nuovo."</string>
|
|
||||||
<string name="delete_action">Elimina</string>
|
<string name="delete_action">Elimina</string>
|
||||||
<string name="clear_action">Svuota</string>
|
<string name="clear_action">Svuota</string>
|
||||||
<string name="remove_action">Rimuovi</string>
|
<string name="remove_action">Rimuovi</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Usa il design di notifica classico.</string>
|
<string name="pref_summary_classic_notification">Usa il design di notifica classico.</string>
|
||||||
<string name="pref_summary_colored_notification">"La notifica \u00e8 colorata secondo la gamma di colori della copertina."</string>
|
<string name="pref_summary_colored_notification">"La notifica \u00e8 colorata secondo la gamma di colori della copertina."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi."</string>
|
<string name="pref_summary_gapless_playback">"Può causare problemi di riproduzione su alcuni dispositivi."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Può incrementare la qualità delle copertine, ma causa rallentamenti nei tempi di caricamento delle immagini. Abilita soltanto se hai problemi con copertine a bassa risoluzione.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colora la barra di navigazione del colore principale.</string>
|
<string name="pref_summary_colored_navigation_bar">Colora la barra di navigazione del colore principale.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore principale.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colora le scorciatoie dell\'app con il colore principale.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notifiche, navigazione ecc.</string>
|
<string name="pref_summary_audio_ducking">Notifiche, navigazione ecc.</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">ערבב רשימת השמעה</string>
|
<string name="action_shuffle_playlist">ערבב רשימת השמעה</string>
|
||||||
<string name="light_theme_name">בהיר</string>
|
<string name="light_theme_name">בהיר</string>
|
||||||
<string name="dark_theme_name">כהה</string>
|
<string name="dark_theme_name">כהה</string>
|
||||||
<string name="always">תמיד</string>
|
|
||||||
<string name="only_on_wifi">רק עם WI-FI</string>
|
|
||||||
<string name="never">אף פעם</string>
|
|
||||||
<string name="today">היום</string>
|
<string name="today">היום</string>
|
||||||
<string name="this_week">השבוע</string>
|
<string name="this_week">השבוע</string>
|
||||||
<string name="this_month">החודש</string>
|
<string name="this_month">החודש</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">ערכת נושא כללית</string>
|
<string name="pref_title_general_theme">ערכת נושא כללית</string>
|
||||||
<string name="pref_header_audio">שמע</string>
|
<string name="pref_header_audio">שמע</string>
|
||||||
<string name="pref_header_library">ספרייה</string>
|
<string name="pref_header_library">ספרייה</string>
|
||||||
<string name="pref_header_images">תמונות</string>
|
|
||||||
<string name="pref_header_lockscreen">מסך נעילה</string>
|
<string name="pref_header_lockscreen">מסך נעילה</string>
|
||||||
<string name="pref_header_playlists">רשימת השמעה</string>
|
<string name="pref_header_playlists">רשימת השמעה</string>
|
||||||
<string name="pref_header_notification">התראות</string>
|
<string name="pref_header_notification">התראות</string>
|
||||||
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
|
<string name="pref_title_navigation_bar">סרגל ניווט צבעוני</string>
|
||||||
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
|
<string name="pref_title_app_shortcuts">קיצורי אפליקציה צבעוניים</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
|
<string name="pref_title_album_art_on_lockscreen">הצג עטיפת אלבום</string>
|
||||||
<string name="pref_title_auto_download_metadata">הורד מידע שיר אוטומטית</string>
|
|
||||||
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
|
<string name="pref_title_blurred_album_art">טשטוש עטיפת האלבום</string>
|
||||||
<string name="pref_title_colored_notification">התראה צבעונית</string>
|
<string name="pref_title_colored_notification">התראה צבעונית</string>
|
||||||
<string name="pref_title_classic_notification">עיצוב התראה קלאיסי</string>
|
<string name="pref_title_classic_notification">עיצוב התראה קלאיסי</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">התעלם מעיצוב עטיפת חנות מדיה</string>
|
|
||||||
<string name="pref_title_gapless_playback">ניגון ללא מרווחים בין השירים</string>
|
<string name="pref_title_gapless_playback">ניגון ללא מרווחים בין השירים</string>
|
||||||
<string name="pref_title_audio_ducking">הפחת את עוצמת הקול באובדן מיקוד</string>
|
<string name="pref_title_audio_ducking">הפחת את עוצמת הקול באובדן מיקוד</string>
|
||||||
<string name="pref_title_last_added_interval">הפסקת רשימת השמעה אחרונה שהוספה</string>
|
<string name="pref_title_last_added_interval">הפסקת רשימת השמעה אחרונה שהוספה</string>
|
||||||
<string name="pref_title_remember_last_tab">זכור את הכרטיסיה האחרונה</string>
|
<string name="pref_title_remember_last_tab">זכור את הכרטיסיה האחרונה</string>
|
||||||
<string name="no_audio_ID">"נגן/י שיר ואז נסה/י שנית."</string>
|
|
||||||
<string name="delete_action">מחיקה</string>
|
<string name="delete_action">מחיקה</string>
|
||||||
<string name="clear_action">ניקוי</string>
|
<string name="clear_action">ניקוי</string>
|
||||||
<string name="remove_action">הסרה</string>
|
<string name="remove_action">הסרה</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
|
<string name="pref_summary_classic_notification">השתמש בעיצוב התראות קלאסי.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
|
<string name="pref_summary_colored_notification">"\u05e6\u05d5\u05d1\u05e2 \u05d0\u05ea \u05d4\u05ea\u05e8\u05d0\u05ea \u05d4\u05e0\u05d2\u05df \u05d1\u05e6\u05d1\u05e2 \u05d4\u05de\u05e8\u05db\u05d6\u05d9 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05ea \u05d4\u05d0\u05dc\u05d1\u05d5\u05dd."</string>
|
||||||
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
|
<string name="pref_summary_gapless_playback">"עלול לגרום לבעיות בהשמעה בחלק מן המכשירים."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">יכול להעלות את איכות תמונות האלבומים, אך גם גורם לטעינה איטית יותר של התמונות. הפעל אפשרות זו רק אם יש לך בעיות עם תמונות באיכות נמוכה.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
|
<string name="pref_summary_colored_navigation_bar">צובע את שורת הניווט בצבע הראשי.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
|
<string name="pref_summary_colored_app_shortcuts">צובע את קיצורי האפליקציה בצבע הראשי.</string>
|
||||||
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
|
<string name="pref_summary_audio_ducking">התראות, ניווט וכו\'</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">プレイリストをシャッフル</string>
|
<string name="action_shuffle_playlist">プレイリストをシャッフル</string>
|
||||||
<string name="light_theme_name">ライト</string>
|
<string name="light_theme_name">ライト</string>
|
||||||
<string name="dark_theme_name">ダーク</string>
|
<string name="dark_theme_name">ダーク</string>
|
||||||
<string name="always">いつでも</string>
|
|
||||||
<string name="only_on_wifi">Wi-Fi 接続時のみ</string>
|
|
||||||
<string name="never">しない</string>
|
|
||||||
<string name="today">今日</string>
|
<string name="today">今日</string>
|
||||||
<string name="this_week">今週</string>
|
<string name="this_week">今週</string>
|
||||||
<string name="this_month">今月</string>
|
<string name="this_month">今月</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">テーマカラー</string>
|
<string name="pref_title_general_theme">テーマカラー</string>
|
||||||
<string name="pref_header_audio">オーディオ</string>
|
<string name="pref_header_audio">オーディオ</string>
|
||||||
<string name="pref_header_library">ライブラリ</string>
|
<string name="pref_header_library">ライブラリ</string>
|
||||||
<string name="pref_header_images">画像</string>
|
|
||||||
<string name="pref_header_lockscreen">ロック画面</string>
|
<string name="pref_header_lockscreen">ロック画面</string>
|
||||||
<string name="pref_header_playlists">プレイリスト</string>
|
<string name="pref_header_playlists">プレイリスト</string>
|
||||||
<string name="pref_header_notification">通知</string>
|
<string name="pref_header_notification">通知</string>
|
||||||
<string name="pref_title_navigation_bar">ナビゲーションバーに色を付ける</string>
|
<string name="pref_title_navigation_bar">ナビゲーションバーに色を付ける</string>
|
||||||
<string name="pref_title_app_shortcuts">アプリのショートカットに色を付ける</string>
|
<string name="pref_title_app_shortcuts">アプリのショートカットに色を付ける</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">アルバムアートを表示する</string>
|
<string name="pref_title_album_art_on_lockscreen">アルバムアートを表示する</string>
|
||||||
<string name="pref_title_auto_download_metadata">楽曲情報の自動ダウンロード</string>
|
|
||||||
<string name="pref_title_blurred_album_art">アルバムアートにぼかし効果をかける</string>
|
<string name="pref_title_blurred_album_art">アルバムアートにぼかし効果をかける</string>
|
||||||
<string name="pref_title_colored_notification">通知に色を付ける</string>
|
<string name="pref_title_colored_notification">通知に色を付ける</string>
|
||||||
<string name="pref_title_classic_notification">古い通知デザイン</string>
|
<string name="pref_title_classic_notification">古い通知デザイン</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">メディアストアのアートを無視する</string>
|
|
||||||
<string name="pref_title_gapless_playback">ギャップレス再生</string>
|
<string name="pref_title_gapless_playback">ギャップレス再生</string>
|
||||||
<string name="pref_title_audio_ducking">音声フォーカス喪失時に音量を下げる</string>
|
<string name="pref_title_audio_ducking">音声フォーカス喪失時に音量を下げる</string>
|
||||||
<string name="pref_title_last_added_interval">最近追加された曲に含まれる期間</string>
|
<string name="pref_title_last_added_interval">最近追加された曲に含まれる期間</string>
|
||||||
<string name="pref_title_remember_last_tab">最後のタブの記憶</string>
|
<string name="pref_title_remember_last_tab">最後のタブの記憶</string>
|
||||||
<string name="no_audio_ID">"何か曲を再生してもう一度お試しください"</string>
|
|
||||||
<string name="delete_action">削除</string>
|
<string name="delete_action">削除</string>
|
||||||
<string name="clear_action">消去</string>
|
<string name="clear_action">消去</string>
|
||||||
<string name="remove_action">除去</string>
|
<string name="remove_action">除去</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">旧式の通知デザインを使用します。</string>
|
<string name="pref_summary_classic_notification">旧式の通知デザインを使用します。</string>
|
||||||
<string name="pref_summary_colored_notification">"\u901a\u77e5\u306e\u8272\u3092\u30a2\u30eb\u30d0\u30e0\u30a2\u30fc\u30c8\u304b\u3089\u62bd\u51fa\u3057\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059\u3002"</string>
|
<string name="pref_summary_colored_notification">"\u901a\u77e5\u306e\u8272\u3092\u30a2\u30eb\u30d0\u30e0\u30a2\u30fc\u30c8\u304b\u3089\u62bd\u51fa\u3057\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059\u3002"</string>
|
||||||
<string name="pref_summary_gapless_playback">"一部の端末では再生に問題が生じる可能性があります。"</string>
|
<string name="pref_summary_gapless_playback">"一部の端末では再生に問題が生じる可能性があります。"</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">アルバムアートの画質を上げることが出来ますが、画像の読み込みは遅くなる可能性があります。低画質のアルバムアートで問題がある場合に限り有効にしてください。</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">ナビゲーションバーの背景色をメインカラーに変更します。</string>
|
<string name="pref_summary_colored_navigation_bar">ナビゲーションバーの背景色をメインカラーに変更します。</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">アプリのショートカットの色をメインカラーに変更します。</string>
|
<string name="pref_summary_colored_app_shortcuts">アプリのショートカットの色をメインカラーに変更します。</string>
|
||||||
<string name="pref_summary_audio_ducking">通知やナビなどです。</string>
|
<string name="pref_summary_audio_ducking">通知やナビなどです。</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">재생 목록 랜덤 재생</string>
|
<string name="action_shuffle_playlist">재생 목록 랜덤 재생</string>
|
||||||
<string name="light_theme_name">밝은 테마</string>
|
<string name="light_theme_name">밝은 테마</string>
|
||||||
<string name="dark_theme_name">어두운 테마</string>
|
<string name="dark_theme_name">어두운 테마</string>
|
||||||
<string name="always">항상</string>
|
|
||||||
<string name="only_on_wifi">Wi-Fi 환경에서만</string>
|
|
||||||
<string name="never">사용 안 함</string>
|
|
||||||
<string name="today">오늘</string>
|
<string name="today">오늘</string>
|
||||||
<string name="this_week">이번 주</string>
|
<string name="this_week">이번 주</string>
|
||||||
<string name="this_month">이번 달</string>
|
<string name="this_month">이번 달</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">전체 테마</string>
|
<string name="pref_title_general_theme">전체 테마</string>
|
||||||
<string name="pref_header_audio">오디오</string>
|
<string name="pref_header_audio">오디오</string>
|
||||||
<string name="pref_header_library">보관함</string>
|
<string name="pref_header_library">보관함</string>
|
||||||
<string name="pref_header_images">이미지</string>
|
|
||||||
<string name="pref_header_lockscreen">잠금 화면</string>
|
<string name="pref_header_lockscreen">잠금 화면</string>
|
||||||
<string name="pref_header_playlists">재생목록</string>
|
<string name="pref_header_playlists">재생목록</string>
|
||||||
<string name="pref_header_notification">알림</string>
|
<string name="pref_header_notification">알림</string>
|
||||||
<string name="pref_title_navigation_bar">내비게이션 바 색상 틴트</string>
|
<string name="pref_title_navigation_bar">내비게이션 바 색상 틴트</string>
|
||||||
<string name="pref_title_app_shortcuts">앱 바로가기 색칠</string>
|
<string name="pref_title_app_shortcuts">앱 바로가기 색칠</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">앨범 커버 보이기</string>
|
<string name="pref_title_album_art_on_lockscreen">앨범 커버 보이기</string>
|
||||||
<string name="pref_title_auto_download_metadata">메타데이터 자동 다운로드</string>
|
|
||||||
<string name="pref_title_blurred_album_art">앨범 커버 블러 효과</string>
|
<string name="pref_title_blurred_album_art">앨범 커버 블러 효과</string>
|
||||||
<string name="pref_title_colored_notification">알림 색상 틴트</string>
|
<string name="pref_title_colored_notification">알림 색상 틴트</string>
|
||||||
<string name="pref_title_classic_notification">클래식 알림 디자인</string>
|
<string name="pref_title_classic_notification">클래식 알림 디자인</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">미디어 스토어 앨범 커버 무시</string>
|
|
||||||
<string name="pref_title_gapless_playback">갭리스 재생</string>
|
<string name="pref_title_gapless_playback">갭리스 재생</string>
|
||||||
<string name="pref_title_audio_ducking">포커스 상실 시 볼륨 감소하기</string>
|
<string name="pref_title_audio_ducking">포커스 상실 시 볼륨 감소하기</string>
|
||||||
<string name="pref_title_last_added_interval">최근 추가된 재생 목록 간격</string>
|
<string name="pref_title_last_added_interval">최근 추가된 재생 목록 간격</string>
|
||||||
<string name="pref_title_remember_last_tab">마지막 탭 기억</string>
|
<string name="pref_title_remember_last_tab">마지막 탭 기억</string>
|
||||||
<string name="no_audio_ID">"먼저 노래를 재생한 후 다시 시도해 주세요."</string>
|
|
||||||
<string name="delete_action">삭제</string>
|
<string name="delete_action">삭제</string>
|
||||||
<string name="clear_action">비우기</string>
|
<string name="clear_action">비우기</string>
|
||||||
<string name="remove_action">제거</string>
|
<string name="remove_action">제거</string>
|
||||||
|
|
@ -132,9 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">클래식 알림 디자인 사용</string>
|
<string name="pref_summary_classic_notification">클래식 알림 디자인 사용</string>
|
||||||
<string name="pref_summary_colored_notification">"\uc54c\ub9bc \ucee8\ud2b8\ub864\uc744 \uc568\ubc94 \uc544\ud2b8\uc758 \uc8fc \uc0c9\uc0c1\uc73c\ub85c \uce60\ud569\ub2c8\ub2e4."</string>
|
<string name="pref_summary_colored_notification">"\uc54c\ub9bc \ucee8\ud2b8\ub864\uc744 \uc568\ubc94 \uc544\ud2b8\uc758 \uc8fc \uc0c9\uc0c1\uc73c\ub85c \uce60\ud569\ub2c8\ub2e4."</string>
|
||||||
<string name="pref_summary_gapless_playback">"일부 기기에서 곡 전환 관련 문제가 발생할 수 있습니다."</string>
|
<string name="pref_summary_gapless_playback">"일부 기기에서 곡 전환 관련 문제가 발생할 수 있습니다."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">앨범 아트 이미지의 질이 높아지지만 로딩 시간이
|
|
||||||
길어질 수 있습니다. 저화질 앨범 아트를 원하지
|
|
||||||
않으실 경우에만 이 기능을 사용하십시오.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">하단바가 색깔을 주 색상으로 색칠합니다.</string>
|
<string name="pref_summary_colored_navigation_bar">하단바가 색깔을 주 색상으로 색칠합니다.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">주 색상으로 앱 바로가기 색칠</string>
|
<string name="pref_summary_colored_app_shortcuts">주 색상으로 앱 바로가기 색칠</string>
|
||||||
<string name="pref_summary_audio_ducking">알림 소리, 버튼음 등</string>
|
<string name="pref_summary_audio_ducking">알림 소리, 버튼음 등</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Shuffle afspeellijst</string>
|
<string name="action_shuffle_playlist">Shuffle afspeellijst</string>
|
||||||
<string name="light_theme_name">Licht</string>
|
<string name="light_theme_name">Licht</string>
|
||||||
<string name="dark_theme_name">Donker</string>
|
<string name="dark_theme_name">Donker</string>
|
||||||
<string name="always">Altijd</string>
|
|
||||||
<string name="only_on_wifi">Alleen over wifi</string>
|
|
||||||
<string name="never">Nooit</string>
|
|
||||||
<string name="today">Vandaag</string>
|
<string name="today">Vandaag</string>
|
||||||
<string name="this_week">Deze week</string>
|
<string name="this_week">Deze week</string>
|
||||||
<string name="this_month">Deze maand</string>
|
<string name="this_month">Deze maand</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Algemeen thema</string>
|
<string name="pref_title_general_theme">Algemeen thema</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Bibliotheek</string>
|
<string name="pref_header_library">Bibliotheek</string>
|
||||||
<string name="pref_header_images">Illustraties</string>
|
|
||||||
<string name="pref_header_lockscreen">Vergrendelscherm</string>
|
<string name="pref_header_lockscreen">Vergrendelscherm</string>
|
||||||
<string name="pref_header_playlists">Afspeellijst</string>
|
<string name="pref_header_playlists">Afspeellijst</string>
|
||||||
<string name="pref_header_notification">Melding</string>
|
<string name="pref_header_notification">Melding</string>
|
||||||
<string name="pref_title_navigation_bar">Gekleurde navigatiebalk</string>
|
<string name="pref_title_navigation_bar">Gekleurde navigatiebalk</string>
|
||||||
<string name="pref_title_app_shortcuts">Gekleurde app-snelkoppelingen</string>
|
<string name="pref_title_app_shortcuts">Gekleurde app-snelkoppelingen</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Toon albumhoes</string>
|
<string name="pref_title_album_art_on_lockscreen">Toon albumhoes</string>
|
||||||
<string name="pref_title_auto_download_metadata">Metadata autom. downloaden</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Vervaag albumhoes</string>
|
<string name="pref_title_blurred_album_art">Vervaag albumhoes</string>
|
||||||
<string name="pref_title_colored_notification">Gekleurde melding</string>
|
<string name="pref_title_colored_notification">Gekleurde melding</string>
|
||||||
<string name="pref_title_classic_notification">Klassieke meldingsweergave</string>
|
<string name="pref_title_classic_notification">Klassieke meldingsweergave</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Negeer Mediaopslag illustraties</string>
|
|
||||||
<string name="pref_title_gapless_playback">Afspelen zonder pauzes</string>
|
<string name="pref_title_gapless_playback">Afspelen zonder pauzes</string>
|
||||||
<string name="pref_title_audio_ducking">Verminder volume bij focusverlies</string>
|
<string name="pref_title_audio_ducking">Verminder volume bij focusverlies</string>
|
||||||
<string name="pref_title_last_added_interval">Laatst toegevoegd afspeellijst tussenpoos</string>
|
<string name="pref_title_last_added_interval">Laatst toegevoegd afspeellijst tussenpoos</string>
|
||||||
<string name="pref_title_remember_last_tab">Laatste tabblad onthouden</string>
|
<string name="pref_title_remember_last_tab">Laatste tabblad onthouden</string>
|
||||||
<string name="no_audio_ID">"Speel eerst iets af, probeer dan opnieuw."</string>
|
|
||||||
<string name="delete_action">Verwijderen</string>
|
<string name="delete_action">Verwijderen</string>
|
||||||
<string name="clear_action">Legen</string>
|
<string name="clear_action">Legen</string>
|
||||||
<string name="remove_action">Verwijderen</string>
|
<string name="remove_action">Verwijderen</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Gebruik de klassieke meldingsweergave.</string>
|
<string name="pref_summary_classic_notification">Gebruik de klassieke meldingsweergave.</string>
|
||||||
<string name="pref_summary_colored_notification">"Kleurt de melding met het palet van de albumhoes."</string>
|
<string name="pref_summary_colored_notification">"Kleurt de melding met het palet van de albumhoes."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Verwijdert de pauzes tussen nummers. Dit kan afspeelfouten veroorzaken."</string>
|
<string name="pref_summary_gapless_playback">"Verwijdert de pauzes tussen nummers. Dit kan afspeelfouten veroorzaken."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Dit kan de albumhoes kwaliteit doen toenemen, maar langere laadtijden veroorzaken. Gebruik dit alleen als je problemen hebt met lage resolutie illustraties.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Kleurt de navigatiebalk in de primaire kleur.</string>
|
<string name="pref_summary_colored_navigation_bar">Kleurt de navigatiebalk in de primaire kleur.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Kleurt de app-snelkoppelingen in de primaire kleur.</string>
|
<string name="pref_summary_colored_app_shortcuts">Kleurt de app-snelkoppelingen in de primaire kleur.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificaties, navigatie, etc.</string>
|
<string name="pref_summary_audio_ducking">Notificaties, navigatie, etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,6 @@
|
||||||
<string name="pref_title_general_theme">Generelt tema</string>
|
<string name="pref_title_general_theme">Generelt tema</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_title_navigation_bar">Farga navigasjonslinje</string>
|
<string name="pref_title_navigation_bar">Farga navigasjonslinje</string>
|
||||||
<string name="no_audio_ID">"Ingen audio-ID, spel noko og prøv igjen"</string>
|
|
||||||
<string name="delete_action">Slett</string>
|
<string name="delete_action">Slett</string>
|
||||||
<string name="rename_action">Gje nytt namn</string>
|
<string name="rename_action">Gje nytt namn</string>
|
||||||
<string name="primary_color">Primærfarge</string>
|
<string name="primary_color">Primærfarge</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Losowa lista odtwarzania</string>
|
<string name="action_shuffle_playlist">Losowa lista odtwarzania</string>
|
||||||
<string name="light_theme_name">Jasny</string>
|
<string name="light_theme_name">Jasny</string>
|
||||||
<string name="dark_theme_name">Ciemny</string>
|
<string name="dark_theme_name">Ciemny</string>
|
||||||
<string name="always">Zawsze</string>
|
|
||||||
<string name="only_on_wifi">Tylko na WiFi</string>
|
|
||||||
<string name="never">Nigdy</string>
|
|
||||||
<string name="today">Dzisiaj</string>
|
<string name="today">Dzisiaj</string>
|
||||||
<string name="this_week">Ten tydzień</string>
|
<string name="this_week">Ten tydzień</string>
|
||||||
<string name="this_month">Ten miesiąc</string>
|
<string name="this_month">Ten miesiąc</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Styl tła motywu</string>
|
<string name="pref_title_general_theme">Styl tła motywu</string>
|
||||||
<string name="pref_header_audio">Dźwięk</string>
|
<string name="pref_header_audio">Dźwięk</string>
|
||||||
<string name="pref_header_library">Biblioteka</string>
|
<string name="pref_header_library">Biblioteka</string>
|
||||||
<string name="pref_header_images">Obrazy</string>
|
|
||||||
<string name="pref_header_lockscreen">Ekran blokady</string>
|
<string name="pref_header_lockscreen">Ekran blokady</string>
|
||||||
<string name="pref_header_playlists">Lista odtwarzania</string>
|
<string name="pref_header_playlists">Lista odtwarzania</string>
|
||||||
<string name="pref_header_notification">Powiadomienie</string>
|
<string name="pref_header_notification">Powiadomienie</string>
|
||||||
<string name="pref_title_navigation_bar">Kolorowy pasek nawigacyjny</string>
|
<string name="pref_title_navigation_bar">Kolorowy pasek nawigacyjny</string>
|
||||||
<string name="pref_title_app_shortcuts">Kolorowe skróty aplikacji</string>
|
<string name="pref_title_app_shortcuts">Kolorowe skróty aplikacji</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Pokazuj okładki albumów</string>
|
<string name="pref_title_album_art_on_lockscreen">Pokazuj okładki albumów</string>
|
||||||
<string name="pref_title_auto_download_metadata">Automatycznie pobieraj dane</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Rozmywanie okładki albumu</string>
|
<string name="pref_title_blurred_album_art">Rozmywanie okładki albumu</string>
|
||||||
<string name="pref_title_colored_notification">Kolorowy odtwarzacz w pasku powiadomień</string>
|
<string name="pref_title_colored_notification">Kolorowy odtwarzacz w pasku powiadomień</string>
|
||||||
<string name="pref_title_classic_notification">Klasyczny wygląd powiadomienia</string>
|
<string name="pref_title_classic_notification">Klasyczny wygląd powiadomienia</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignoruj okładki z Media Store</string>
|
|
||||||
<string name="pref_title_gapless_playback">Odtwarzanie bez przerw</string>
|
<string name="pref_title_gapless_playback">Odtwarzanie bez przerw</string>
|
||||||
<string name="pref_title_audio_ducking">Zmniejszaj głośność przy powiadomieniach</string>
|
<string name="pref_title_audio_ducking">Zmniejszaj głośność przy powiadomieniach</string>
|
||||||
<string name="pref_title_last_added_interval">Okres ostatnio dodanych list odtwarzania</string>
|
<string name="pref_title_last_added_interval">Okres ostatnio dodanych list odtwarzania</string>
|
||||||
<string name="pref_title_remember_last_tab">"Zapamiętaj ostatnią zakładkę "</string>
|
<string name="pref_title_remember_last_tab">"Zapamiętaj ostatnią zakładkę "</string>
|
||||||
<string name="no_audio_ID">"Odegraj utwór, następnie ponów próbę"</string>
|
|
||||||
<string name="delete_action">Usuń</string>
|
<string name="delete_action">Usuń</string>
|
||||||
<string name="clear_action">Wyczyść</string>
|
<string name="clear_action">Wyczyść</string>
|
||||||
<string name="remove_action">Usuń</string>
|
<string name="remove_action">Usuń</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Używaj klasycznego stylu powiadomienia.</string>
|
<string name="pref_summary_classic_notification">Używaj klasycznego stylu powiadomienia.</string>
|
||||||
<string name="pref_summary_colored_notification">"Odtwarzacz w pasku powiadomie\u0144 ma tonacj\u0119 ok\u0142adki albumu"</string>
|
<string name="pref_summary_colored_notification">"Odtwarzacz w pasku powiadomie\u0144 ma tonacj\u0119 ok\u0142adki albumu"</string>
|
||||||
<string name="pref_summary_gapless_playback">"Na niektórych urządzeniach mogą wystąpić problemy z odtwarzaniem"</string>
|
<string name="pref_summary_gapless_playback">"Na niektórych urządzeniach mogą wystąpić problemy z odtwarzaniem"</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Polepszy to jakość okładek, ale może spowodować ich wolniejsze ładowanie. Zaznacz tylko wtedy, gdy masz kłopoty z niską jakością grafik</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Kolory paska nawigacyjnego będą odpowiadały kolorowi podstawowemu</string>
|
<string name="pref_summary_colored_navigation_bar">Kolory paska nawigacyjnego będą odpowiadały kolorowi podstawowemu</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Kolory skrótów aplikacji w kolorze podstawowym</string>
|
<string name="pref_summary_colored_app_shortcuts">Kolory skrótów aplikacji w kolorze podstawowym</string>
|
||||||
<string name="pref_summary_audio_ducking">Notyfikacje, nawigacja, itp.</string>
|
<string name="pref_summary_audio_ducking">Notyfikacje, nawigacja, itp.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Misturar playlist</string>
|
<string name="action_shuffle_playlist">Misturar playlist</string>
|
||||||
<string name="light_theme_name">Claro</string>
|
<string name="light_theme_name">Claro</string>
|
||||||
<string name="dark_theme_name">Escuro</string>
|
<string name="dark_theme_name">Escuro</string>
|
||||||
<string name="always">Sempre</string>
|
|
||||||
<string name="only_on_wifi">Apenas no Wi-Fi</string>
|
|
||||||
<string name="never">Nunca</string>
|
|
||||||
<string name="today">Hoje</string>
|
<string name="today">Hoje</string>
|
||||||
<string name="this_week">Essa semana</string>
|
<string name="this_week">Essa semana</string>
|
||||||
<string name="past_seven_days">Última semana</string>
|
<string name="past_seven_days">Última semana</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Tema geral</string>
|
<string name="pref_title_general_theme">Tema geral</string>
|
||||||
<string name="pref_header_audio">Áudio</string>
|
<string name="pref_header_audio">Áudio</string>
|
||||||
<string name="pref_header_library">Biblioteca</string>
|
<string name="pref_header_library">Biblioteca</string>
|
||||||
<string name="pref_header_images">Imagens</string>
|
|
||||||
<string name="pref_header_lockscreen">Bloqueio de tela</string>
|
<string name="pref_header_lockscreen">Bloqueio de tela</string>
|
||||||
<string name="pref_header_playlists">Listas de Reprodução</string>
|
<string name="pref_header_playlists">Listas de Reprodução</string>
|
||||||
<string name="pref_header_notification">Notificação</string>
|
<string name="pref_header_notification">Notificação</string>
|
||||||
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
|
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
|
||||||
<string name="pref_title_app_shortcuts">Atalhos de app coloridos</string>
|
<string name="pref_title_app_shortcuts">Atalhos de app coloridos</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Visualizar capa do álbum</string>
|
<string name="pref_title_album_art_on_lockscreen">Visualizar capa do álbum</string>
|
||||||
<string name="pref_title_auto_download_metadata">Baixar automaticamente os metadados</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Capa de álbum esmaecida</string>
|
<string name="pref_title_blurred_album_art">Capa de álbum esmaecida</string>
|
||||||
<string name="pref_title_colored_notification">Notificação colorida</string>
|
<string name="pref_title_colored_notification">Notificação colorida</string>
|
||||||
<string name="pref_title_classic_notification">Design de classificação clássico</string>
|
<string name="pref_title_classic_notification">Design de classificação clássico</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorar capas Media Store</string>
|
|
||||||
<string name="pref_title_gapless_playback">Reprodução contínua</string>
|
<string name="pref_title_gapless_playback">Reprodução contínua</string>
|
||||||
<string name="pref_title_audio_ducking">Reduzir o volume de perda de foco</string>
|
<string name="pref_title_audio_ducking">Reduzir o volume de perda de foco</string>
|
||||||
<string name="pref_title_last_added_interval">Intervalo de adição das playlists mais recentes</string>
|
<string name="pref_title_last_added_interval">Intervalo de adição das playlists mais recentes</string>
|
||||||
<string name="pref_title_remember_last_tab">Lembrar última aba</string>
|
<string name="pref_title_remember_last_tab">Lembrar última aba</string>
|
||||||
<string name="pref_title_remember_shuffle">Memorizar aleatorização</string>
|
<string name="pref_title_remember_shuffle">Memorizar aleatorização</string>
|
||||||
<string name="no_audio_ID">"Sem identificação de áudio, reproduza algo e tente novamente."</string>
|
|
||||||
<string name="delete_action">Excluir</string>
|
<string name="delete_action">Excluir</string>
|
||||||
<string name="clear_action">Limpar</string>
|
<string name="clear_action">Limpar</string>
|
||||||
<string name="remove_action">Remover</string>
|
<string name="remove_action">Remover</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Usar o design de notificação clássico.</string>
|
<string name="pref_summary_classic_notification">Usar o design de notificação clássico.</string>
|
||||||
<string name="pref_summary_colored_notification">"A notifica\u00e7\u00e3o \u00e9 colorida com a cor mais vibrante do \u00e1lbum."</string>
|
<string name="pref_summary_colored_notification">"A notifica\u00e7\u00e3o \u00e9 colorida com a cor mais vibrante do \u00e1lbum."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos."</string>
|
<string name="pref_summary_gapless_playback">"Pode causar problemas de reprodução em alguns dispositivos."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Pode aumentar a qualidade da capa do álbum, mas a carrega mais devagar. Só habilite esta opção se você tiver problemas com obras de arte de baixa resolução.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Cores da barra de navegação na cor primária.</string>
|
<string name="pref_summary_colored_navigation_bar">Cores da barra de navegação na cor primária.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colore os atalhos do app com a cor primária.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colore os atalhos do app com a cor primária.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificações, navegação, etc.</string>
|
<string name="pref_summary_audio_ducking">Notificações, navegação, etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -70,23 +70,17 @@
|
||||||
<string name="action_shuffle_playlist">Embaralhar lista de reprodução</string>
|
<string name="action_shuffle_playlist">Embaralhar lista de reprodução</string>
|
||||||
<string name="light_theme_name">Claro</string>
|
<string name="light_theme_name">Claro</string>
|
||||||
<string name="dark_theme_name">Escuro</string>
|
<string name="dark_theme_name">Escuro</string>
|
||||||
<string name="always">Sempre</string>
|
|
||||||
<string name="only_on_wifi">Apenas com Wi-Fi</string>
|
|
||||||
<string name="never">Nunca</string>
|
|
||||||
<string name="equalizer">Equalizador</string>
|
<string name="equalizer">Equalizador</string>
|
||||||
<string name="pref_header_colors">Cores</string>
|
<string name="pref_header_colors">Cores</string>
|
||||||
<string name="pref_header_now_playing_screen">A reproduzir</string>
|
<string name="pref_header_now_playing_screen">A reproduzir</string>
|
||||||
<string name="pref_title_general_theme">Tema geral</string>
|
<string name="pref_title_general_theme">Tema geral</string>
|
||||||
<string name="pref_header_audio">Áudio</string>
|
<string name="pref_header_audio">Áudio</string>
|
||||||
<string name="pref_header_images">Imagens</string>
|
|
||||||
<string name="pref_header_lockscreen">Ecrã de Bloqueio</string>
|
<string name="pref_header_lockscreen">Ecrã de Bloqueio</string>
|
||||||
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
|
<string name="pref_title_navigation_bar">Barra de navegação colorida</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Mostrar capa do álbum</string>
|
<string name="pref_title_album_art_on_lockscreen">Mostrar capa do álbum</string>
|
||||||
<string name="pref_title_blurred_album_art">Desfocar capa do álbum</string>
|
<string name="pref_title_blurred_album_art">Desfocar capa do álbum</string>
|
||||||
<string name="pref_title_colored_notification">Notificação colorida</string>
|
<string name="pref_title_colored_notification">Notificação colorida</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignorar capas Media Store</string>
|
|
||||||
<string name="pref_title_gapless_playback">Reprodução contínua</string>
|
<string name="pref_title_gapless_playback">Reprodução contínua</string>
|
||||||
<string name="no_audio_ID">"Reproduza uma faixa primeiro, e tente outra vez."</string>
|
|
||||||
<string name="delete_action">Eliminar</string>
|
<string name="delete_action">Eliminar</string>
|
||||||
<string name="clear_action">Limpar</string>
|
<string name="clear_action">Limpar</string>
|
||||||
<string name="remove_action">Remover</string>
|
<string name="remove_action">Remover</string>
|
||||||
|
|
@ -109,7 +103,6 @@
|
||||||
<string name="pref_summary_blurred_album_art">Desfoca a capa do álbum no ecrã de bloqueio. Pode causar problemas com aplicações de terceiros e widgets.</string>
|
<string name="pref_summary_blurred_album_art">Desfoca a capa do álbum no ecrã de bloqueio. Pode causar problemas com aplicações de terceiros e widgets.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colorir a notifica\u00e7\u00e3o na cor viva da capa de \u00e1lbum."</string>
|
<string name="pref_summary_colored_notification">"Colorir a notifica\u00e7\u00e3o na cor viva da capa de \u00e1lbum."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Pode causar problemas na reprodução em alguns dispositivos."</string>
|
<string name="pref_summary_gapless_playback">"Pode causar problemas na reprodução em alguns dispositivos."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Pode aumentar a qualidade da capa do album, mas aumenta o tempo de carregamento. Ative isto somente se tiver problemas com capas de baixa resolução.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colorir a barra de navegação na cor primária.</string>
|
<string name="pref_summary_colored_navigation_bar">Colorir a barra de navegação na cor primária.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificações, navegação etc.</string>
|
<string name="pref_summary_audio_ducking">Notificações, navegação etc.</string>
|
||||||
<string name="favorites">Favoritos</string>
|
<string name="favorites">Favoritos</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Amestecare listă de redare</string>
|
<string name="action_shuffle_playlist">Amestecare listă de redare</string>
|
||||||
<string name="light_theme_name">Light (Alb)</string>
|
<string name="light_theme_name">Light (Alb)</string>
|
||||||
<string name="dark_theme_name">Dark (Negru)</string>
|
<string name="dark_theme_name">Dark (Negru)</string>
|
||||||
<string name="always">Mereu</string>
|
|
||||||
<string name="only_on_wifi">Doar cu Wi-Fi</string>
|
|
||||||
<string name="never">Niciodată</string>
|
|
||||||
<string name="today">Astăzi</string>
|
<string name="today">Astăzi</string>
|
||||||
<string name="this_week">Săptămâna aceasta</string>
|
<string name="this_week">Săptămâna aceasta</string>
|
||||||
<string name="this_month">Luna aceasta</string>
|
<string name="this_month">Luna aceasta</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Temă generală</string>
|
<string name="pref_title_general_theme">Temă generală</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Bibliotecă</string>
|
<string name="pref_header_library">Bibliotecă</string>
|
||||||
<string name="pref_header_images">Imagini</string>
|
|
||||||
<string name="pref_header_lockscreen">Ecran blocat</string>
|
<string name="pref_header_lockscreen">Ecran blocat</string>
|
||||||
<string name="pref_header_playlists">Liste de redare</string>
|
<string name="pref_header_playlists">Liste de redare</string>
|
||||||
<string name="pref_header_notification">Notificare</string>
|
<string name="pref_header_notification">Notificare</string>
|
||||||
<string name="pref_title_navigation_bar">Bară de navigare colorată</string>
|
<string name="pref_title_navigation_bar">Bară de navigare colorată</string>
|
||||||
<string name="pref_title_app_shortcuts">Comenzi rapide colorate</string>
|
<string name="pref_title_app_shortcuts">Comenzi rapide colorate</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Arată coperta de album</string>
|
<string name="pref_title_album_art_on_lockscreen">Arată coperta de album</string>
|
||||||
<string name="pref_title_auto_download_metadata">Descărcare automată metadate</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Blurează coperta de album</string>
|
<string name="pref_title_blurred_album_art">Blurează coperta de album</string>
|
||||||
<string name="pref_title_colored_notification">Notificare colorată</string>
|
<string name="pref_title_colored_notification">Notificare colorată</string>
|
||||||
<string name="pref_title_classic_notification">Design clasic de notificare</string>
|
<string name="pref_title_classic_notification">Design clasic de notificare</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignoră coperțile Media Store</string>
|
|
||||||
<string name="pref_title_gapless_playback">Redare fără întreruperi</string>
|
<string name="pref_title_gapless_playback">Redare fără întreruperi</string>
|
||||||
<string name="pref_title_audio_ducking">Se reduce volumul la pierderea focalizării</string>
|
<string name="pref_title_audio_ducking">Se reduce volumul la pierderea focalizării</string>
|
||||||
<string name="pref_title_last_added_interval">Ultimul interval al listei de redare adăugate</string>
|
<string name="pref_title_last_added_interval">Ultimul interval al listei de redare adăugate</string>
|
||||||
<string name="pref_title_remember_last_tab">Rețineți ultima filă</string>
|
<string name="pref_title_remember_last_tab">Rețineți ultima filă</string>
|
||||||
<string name="no_audio_ID">"Redă o melodie mai întâi, apoi încearcă din nou."</string>
|
|
||||||
<string name="delete_action">Șterge</string>
|
<string name="delete_action">Șterge</string>
|
||||||
<string name="clear_action">Eliberați</string>
|
<string name="clear_action">Eliberați</string>
|
||||||
<string name="remove_action">Ștergeți</string>
|
<string name="remove_action">Ștergeți</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Utilizați designul clasic de notificare.</string>
|
<string name="pref_summary_classic_notification">Utilizați designul clasic de notificare.</string>
|
||||||
<string name="pref_summary_colored_notification">"Coloreaz\u0103 bara de notificare cu cea mai vibrant\u0103 culoare a copertei de album."</string>
|
<string name="pref_summary_colored_notification">"Coloreaz\u0103 bara de notificare cu cea mai vibrant\u0103 culoare a copertei de album."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Poate cauza probleme de redare pe unele dispozitive."</string>
|
<string name="pref_summary_gapless_playback">"Poate cauza probleme de redare pe unele dispozitive."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Poate mări calitatea coperții de album, dar cauzează încărcarea mai lentă a imaginilor. Activați doar dacă aveți probleme cu imaginile de rezoluție mică.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colorare bară de navigare în culoarea primară.</string>
|
<string name="pref_summary_colored_navigation_bar">Colorare bară de navigare în culoarea primară.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colorarea comenzilor rapide ale aplicației în culoarea primară.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colorarea comenzilor rapide ale aplicației în culoarea primară.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notificări, navigație etc.</string>
|
<string name="pref_summary_audio_ducking">Notificări, navigație etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">Перемешать плейлист</string>
|
<string name="action_shuffle_playlist">Перемешать плейлист</string>
|
||||||
<string name="light_theme_name">Светлая</string>
|
<string name="light_theme_name">Светлая</string>
|
||||||
<string name="dark_theme_name">Тёмная</string>
|
<string name="dark_theme_name">Тёмная</string>
|
||||||
<string name="always">Всегда</string>
|
|
||||||
<string name="only_on_wifi">Только по Wi-Fi</string>
|
|
||||||
<string name="never">Никогда</string>
|
|
||||||
<string name="today">Сегодня</string>
|
<string name="today">Сегодня</string>
|
||||||
<string name="this_week">Эта неделя</string>
|
<string name="this_week">Эта неделя</string>
|
||||||
<string name="past_seven_days">Последние 7 дней</string>
|
<string name="past_seven_days">Последние 7 дней</string>
|
||||||
|
|
@ -92,24 +89,20 @@
|
||||||
<string name="pref_title_general_theme">Главная тема</string>
|
<string name="pref_title_general_theme">Главная тема</string>
|
||||||
<string name="pref_header_audio">Аудио</string>
|
<string name="pref_header_audio">Аудио</string>
|
||||||
<string name="pref_header_library">Библиотека</string>
|
<string name="pref_header_library">Библиотека</string>
|
||||||
<string name="pref_header_images">Изображения</string>
|
|
||||||
<string name="pref_header_lockscreen">Экран блокировки</string>
|
<string name="pref_header_lockscreen">Экран блокировки</string>
|
||||||
<string name="pref_header_playlists">Плейлисты</string>
|
<string name="pref_header_playlists">Плейлисты</string>
|
||||||
<string name="pref_header_notification">Уведомления</string>
|
<string name="pref_header_notification">Уведомления</string>
|
||||||
<string name="pref_title_navigation_bar">Цветная панель управления</string>
|
<string name="pref_title_navigation_bar">Цветная панель управления</string>
|
||||||
<string name="pref_title_app_shortcuts">Цветные шорткаты</string>
|
<string name="pref_title_app_shortcuts">Цветные шорткаты</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Показывать обложку альбома</string>
|
<string name="pref_title_album_art_on_lockscreen">Показывать обложку альбома</string>
|
||||||
<string name="pref_title_auto_download_metadata">Автозагрузка метаданных</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Размытая обложка альбома</string>
|
<string name="pref_title_blurred_album_art">Размытая обложка альбома</string>
|
||||||
<string name="pref_title_colored_notification">Окрашенное уведомление</string>
|
<string name="pref_title_colored_notification">Окрашенное уведомление</string>
|
||||||
<string name="pref_title_classic_notification">Стандартный дизайн уведомления</string>
|
<string name="pref_title_classic_notification">Стандартный дизайн уведомления</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Игнорировать хранилище обложек альбомов</string>
|
|
||||||
<string name="pref_title_gapless_playback">Воспроизведение без пауз</string>
|
<string name="pref_title_gapless_playback">Воспроизведение без пауз</string>
|
||||||
<string name="pref_title_audio_ducking">Уменьшить громкость при уведомлениях</string>
|
<string name="pref_title_audio_ducking">Уменьшить громкость при уведомлениях</string>
|
||||||
<string name="pref_title_last_added_interval">Интервал последнего добавленного плейлиста</string>
|
<string name="pref_title_last_added_interval">Интервал последнего добавленного плейлиста</string>
|
||||||
<string name="pref_title_remember_last_tab">Запомнить последнюю вкладку</string>
|
<string name="pref_title_remember_last_tab">Запомнить последнюю вкладку</string>
|
||||||
<string name="pref_title_remember_shuffle">Запомнить перемешивание</string>
|
<string name="pref_title_remember_shuffle">Запомнить перемешивание</string>
|
||||||
<string name="no_audio_ID">"Сначала воспроизведите песню, а затем попробуйте снова."</string>
|
|
||||||
<string name="delete_action">Удалить</string>
|
<string name="delete_action">Удалить</string>
|
||||||
<string name="clear_action">Очистить</string>
|
<string name="clear_action">Очистить</string>
|
||||||
<string name="remove_action">Убрать</string>
|
<string name="remove_action">Убрать</string>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<string name="pref_summary_classic_notification">Использовать классический дизайн уведомления.</string>
|
<string name="pref_summary_classic_notification">Использовать классический дизайн уведомления.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u041e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u0442\u043e\u043d \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430."</string>
|
<string name="pref_summary_colored_notification">"\u041e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0432 \u0442\u043e\u043d \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Может вызвать проблемы с воспроизведением на некоторых устройствах."</string>
|
<string name="pref_summary_gapless_playback">"Может вызвать проблемы с воспроизведением на некоторых устройствах."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Может увеличить качество обложки, но также увеличивает время её отрисовки. Влючайте только, если вы имеете проблемы с низким разрешением обложек альбомов.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Окрашивает панель навигации в основной цвет.</string>
|
<string name="pref_summary_colored_navigation_bar">Окрашивает панель навигации в основной цвет.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Окрашивает шорткаты в основной цвет.</string>
|
<string name="pref_summary_colored_app_shortcuts">Окрашивает шорткаты в основной цвет.</string>
|
||||||
<string name="pref_summary_audio_ducking">Уведомления, навигация, т.д.</string>
|
<string name="pref_summary_audio_ducking">Уведомления, навигация, т.д.</string>
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,6 @@ Vill du radera <b>%1$d</b> låtar?
|
||||||
<string name="pref_title_general_theme">Allmänt tema</string>
|
<string name="pref_title_general_theme">Allmänt tema</string>
|
||||||
<string name="pref_header_audio">Ljud</string>
|
<string name="pref_header_audio">Ljud</string>
|
||||||
<string name="pref_title_navigation_bar">Färgad navigeringslist</string>
|
<string name="pref_title_navigation_bar">Färgad navigeringslist</string>
|
||||||
<string name="no_audio_ID">"Inget ljud-ID, spela något annat och försök igen."</string>
|
|
||||||
<string name="delete_action">Radera</string>
|
<string name="delete_action">Radera</string>
|
||||||
<string name="rename_action">Döp om</string>
|
<string name="rename_action">Döp om</string>
|
||||||
<string name="primary_color">Grundfärg</string>
|
<string name="primary_color">Grundfärg</string>
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,6 @@
|
||||||
<string name="action_shuffle_playlist">Çalma listesini karıştır</string>
|
<string name="action_shuffle_playlist">Çalma listesini karıştır</string>
|
||||||
<string name="light_theme_name">Açık</string>
|
<string name="light_theme_name">Açık</string>
|
||||||
<string name="dark_theme_name">Koyu</string>
|
<string name="dark_theme_name">Koyu</string>
|
||||||
<string name="always">Her zaman</string>
|
|
||||||
<string name="only_on_wifi">Yalnızca Wİ-Fİ</string>
|
|
||||||
<string name="never">Asla</string>
|
|
||||||
<string name="today">Bugün</string>
|
<string name="today">Bugün</string>
|
||||||
<string name="this_week">Bu hafta</string>
|
<string name="this_week">Bu hafta</string>
|
||||||
<string name="this_month">Bu ay</string>
|
<string name="this_month">Bu ay</string>
|
||||||
|
|
@ -90,23 +87,19 @@
|
||||||
<string name="pref_title_general_theme">Genel tema</string>
|
<string name="pref_title_general_theme">Genel tema</string>
|
||||||
<string name="pref_header_audio">Ses</string>
|
<string name="pref_header_audio">Ses</string>
|
||||||
<string name="pref_header_library">Kitaplık</string>
|
<string name="pref_header_library">Kitaplık</string>
|
||||||
<string name="pref_header_images">Görüntüler</string>
|
|
||||||
<string name="pref_header_lockscreen">Kilit ekranı</string>
|
<string name="pref_header_lockscreen">Kilit ekranı</string>
|
||||||
<string name="pref_header_playlists">Çalma listeleri</string>
|
<string name="pref_header_playlists">Çalma listeleri</string>
|
||||||
<string name="pref_header_notification">Bildirim</string>
|
<string name="pref_header_notification">Bildirim</string>
|
||||||
<string name="pref_title_navigation_bar">Renkli gezinme çubuğu</string>
|
<string name="pref_title_navigation_bar">Renkli gezinme çubuğu</string>
|
||||||
<string name="pref_title_app_shortcuts">Renkli uygulama kısayolları</string>
|
<string name="pref_title_app_shortcuts">Renkli uygulama kısayolları</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Albüm kapağını göster</string>
|
<string name="pref_title_album_art_on_lockscreen">Albüm kapağını göster</string>
|
||||||
<string name="pref_title_auto_download_metadata">Otomatik indirilen meta veriler</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Bulanık albüm kapağı</string>
|
<string name="pref_title_blurred_album_art">Bulanık albüm kapağı</string>
|
||||||
<string name="pref_title_colored_notification">Renkli bildirim</string>
|
<string name="pref_title_colored_notification">Renkli bildirim</string>
|
||||||
<string name="pref_title_classic_notification">Klasik bildirim tasarımı</string>
|
<string name="pref_title_classic_notification">Klasik bildirim tasarımı</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Medya Deposu albüm kapağını yoksay</string>
|
|
||||||
<string name="pref_title_gapless_playback">Aralıksız çalma</string>
|
<string name="pref_title_gapless_playback">Aralıksız çalma</string>
|
||||||
<string name="pref_title_audio_ducking">Odak kaybına neden olacak sesi azalt</string>
|
<string name="pref_title_audio_ducking">Odak kaybına neden olacak sesi azalt</string>
|
||||||
<string name="pref_title_last_added_interval">Son eklenen çalma listesi süresi</string>
|
<string name="pref_title_last_added_interval">Son eklenen çalma listesi süresi</string>
|
||||||
<string name="pref_title_remember_last_tab">Son sekmeyi hatırla</string>
|
<string name="pref_title_remember_last_tab">Son sekmeyi hatırla</string>
|
||||||
<string name="no_audio_ID">"ilk şarkıyı çalın, daha sonra tekrar deneyin."</string>
|
|
||||||
<string name="delete_action">Sil</string>
|
<string name="delete_action">Sil</string>
|
||||||
<string name="clear_action">Temizle</string>
|
<string name="clear_action">Temizle</string>
|
||||||
<string name="remove_action">Kaldır</string>
|
<string name="remove_action">Kaldır</string>
|
||||||
|
|
@ -132,7 +125,6 @@
|
||||||
<string name="pref_summary_classic_notification">Klasik bildirim tasarımını kullan.</string>
|
<string name="pref_summary_classic_notification">Klasik bildirim tasarımını kullan.</string>
|
||||||
<string name="pref_summary_colored_notification">"Bildirimler alb\u00fcm kapa\u011f\u0131n\u0131n canl\u0131 renkleriyle renklendirilir."</string>
|
<string name="pref_summary_colored_notification">"Bildirimler alb\u00fcm kapa\u011f\u0131n\u0131n canl\u0131 renkleriyle renklendirilir."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Bazı cihazlarda oynatma sorunlarına neden olabilir."</string>
|
<string name="pref_summary_gapless_playback">"Bazı cihazlarda oynatma sorunlarına neden olabilir."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Albüm kapağı kalitesinin artırılması daha yavaş görüntü yükleme sürelerine neden olabilir. Düşük çözünürlükte olan albüm kapakları ile ilgili sorunlar varsa bunu etkinleştirin.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Gezinme çubuğunu ana renk ile renklendir.</string>
|
<string name="pref_summary_colored_navigation_bar">Gezinme çubuğunu ana renk ile renklendir.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Uygulama kısayollarını ana renk ile renklendir.</string>
|
<string name="pref_summary_colored_app_shortcuts">Uygulama kısayollarını ana renk ile renklendir.</string>
|
||||||
<string name="pref_summary_audio_ducking">Bildirimler, gezinme vb.</string>
|
<string name="pref_summary_audio_ducking">Bildirimler, gezinme vb.</string>
|
||||||
|
|
|
||||||
|
|
@ -75,9 +75,6 @@
|
||||||
<string name="action_shuffle_playlist">Перемішати список відтворення</string>
|
<string name="action_shuffle_playlist">Перемішати список відтворення</string>
|
||||||
<string name="light_theme_name">Світла</string>
|
<string name="light_theme_name">Світла</string>
|
||||||
<string name="dark_theme_name">Темна</string>
|
<string name="dark_theme_name">Темна</string>
|
||||||
<string name="always">Завжди</string>
|
|
||||||
<string name="only_on_wifi">Тільки через Wi-Fi</string>
|
|
||||||
<string name="never">Ніколи</string>
|
|
||||||
<string name="today">Сьогодні</string>
|
<string name="today">Сьогодні</string>
|
||||||
<string name="this_week">Цього тижня</string>
|
<string name="this_week">Цього тижня</string>
|
||||||
<string name="this_month">Цього місяця</string>
|
<string name="this_month">Цього місяця</string>
|
||||||
|
|
@ -89,23 +86,19 @@
|
||||||
<string name="pref_title_general_theme">Загальна тема</string>
|
<string name="pref_title_general_theme">Загальна тема</string>
|
||||||
<string name="pref_header_audio">Аудіо</string>
|
<string name="pref_header_audio">Аудіо</string>
|
||||||
<string name="pref_header_library">Бібліотека</string>
|
<string name="pref_header_library">Бібліотека</string>
|
||||||
<string name="pref_header_images">Зображення</string>
|
|
||||||
<string name="pref_header_lockscreen">Екран блокування</string>
|
<string name="pref_header_lockscreen">Екран блокування</string>
|
||||||
<string name="pref_header_playlists">Списки відтворення</string>
|
<string name="pref_header_playlists">Списки відтворення</string>
|
||||||
<string name="pref_header_notification">Сповіщення</string>
|
<string name="pref_header_notification">Сповіщення</string>
|
||||||
<string name="pref_title_navigation_bar">Кольорова панель навігації</string>
|
<string name="pref_title_navigation_bar">Кольорова панель навігації</string>
|
||||||
<string name="pref_title_app_shortcuts">Кольорові ярлики додатків</string>
|
<string name="pref_title_app_shortcuts">Кольорові ярлики додатків</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Показати обкладинку альбому</string>
|
<string name="pref_title_album_art_on_lockscreen">Показати обкладинку альбому</string>
|
||||||
<string name="pref_title_auto_download_metadata">Автоматично завантажені метадані</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Розмити обкладинку альбому</string>
|
<string name="pref_title_blurred_album_art">Розмити обкладинку альбому</string>
|
||||||
<string name="pref_title_colored_notification">Кольорове сповіщення</string>
|
<string name="pref_title_colored_notification">Кольорове сповіщення</string>
|
||||||
<string name="pref_title_classic_notification">Класичне оформлення сповіщення</string>
|
<string name="pref_title_classic_notification">Класичне оформлення сповіщення</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ігнорувати обкладинки з Медіасховища.</string>
|
|
||||||
<string name="pref_title_gapless_playback">Безперервне відтворення</string>
|
<string name="pref_title_gapless_playback">Безперервне відтворення</string>
|
||||||
<string name="pref_title_audio_ducking">Зменшити гучнiсть при отриманнi повiдомлення</string>
|
<string name="pref_title_audio_ducking">Зменшити гучнiсть при отриманнi повiдомлення</string>
|
||||||
<string name="pref_title_last_added_interval">Інтервал останнього доданого списку відтворення</string>
|
<string name="pref_title_last_added_interval">Інтервал останнього доданого списку відтворення</string>
|
||||||
<string name="pref_title_remember_last_tab">Запам‘ятати останню вкладку</string>
|
<string name="pref_title_remember_last_tab">Запам‘ятати останню вкладку</string>
|
||||||
<string name="no_audio_ID">"Спочатку відтворіть пісню, потім спробуйте ще раз."</string>
|
|
||||||
<string name="delete_action">Видалити</string>
|
<string name="delete_action">Видалити</string>
|
||||||
<string name="clear_action">Очистити</string>
|
<string name="clear_action">Очистити</string>
|
||||||
<string name="remove_action">Видалити</string>
|
<string name="remove_action">Видалити</string>
|
||||||
|
|
@ -131,7 +124,6 @@
|
||||||
<string name="pref_summary_classic_notification">Використовувати класичне оформлення сповіщення.</string>
|
<string name="pref_summary_classic_notification">Використовувати класичне оформлення сповіщення.</string>
|
||||||
<string name="pref_summary_colored_notification">"\u0424\u0430\u0440\u0431\u0443\u0454 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u0430\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u043e\u0431\u043a\u043b\u0430\u0434\u0438\u043d\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0443."</string>
|
<string name="pref_summary_colored_notification">"\u0424\u0430\u0440\u0431\u0443\u0454 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u0430\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u043e\u0431\u043a\u043b\u0430\u0434\u0438\u043d\u043a\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0443."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Може викликати проблеми з відтворенням на деяких пристроях."</string>
|
<string name="pref_summary_gapless_playback">"Може викликати проблеми з відтворенням на деяких пристроях."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Може збільшити якість обкладинки альбому, але збільшує час завантаження зображення. Використовуйте тільки якщо у вас проблеми з обкладинками низької роздільної здатності.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Фарбує панель навігації у переважний колір.</string>
|
<string name="pref_summary_colored_navigation_bar">Фарбує панель навігації у переважний колір.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Фарбує ярлики додатків у переважний колір.</string>
|
<string name="pref_summary_colored_app_shortcuts">Фарбує ярлики додатків у переважний колір.</string>
|
||||||
<string name="pref_summary_audio_ducking">Повiдомлення, навiгацiя, т.д.</string>
|
<string name="pref_summary_audio_ducking">Повiдомлення, навiгацiя, т.д.</string>
|
||||||
|
|
|
||||||
|
|
@ -73,9 +73,6 @@
|
||||||
<string name="action_shuffle_playlist">Trộn danh sách nhạc</string>
|
<string name="action_shuffle_playlist">Trộn danh sách nhạc</string>
|
||||||
<string name="light_theme_name">Sáng</string>
|
<string name="light_theme_name">Sáng</string>
|
||||||
<string name="dark_theme_name">Tối</string>
|
<string name="dark_theme_name">Tối</string>
|
||||||
<string name="always">Luôn luôn</string>
|
|
||||||
<string name="only_on_wifi">Chỉ dùng Wi-Fi</string>
|
|
||||||
<string name="never">Không bao giờ</string>
|
|
||||||
<string name="today">Hôm nay</string>
|
<string name="today">Hôm nay</string>
|
||||||
<string name="this_week">Tuần này</string>
|
<string name="this_week">Tuần này</string>
|
||||||
<string name="this_month">Tháng này</string>
|
<string name="this_month">Tháng này</string>
|
||||||
|
|
@ -86,22 +83,18 @@
|
||||||
<string name="pref_header_now_playing_screen">Đang phát</string>
|
<string name="pref_header_now_playing_screen">Đang phát</string>
|
||||||
<string name="pref_title_general_theme">Chủ đề chung</string>
|
<string name="pref_title_general_theme">Chủ đề chung</string>
|
||||||
<string name="pref_header_audio">Âm thanh</string>
|
<string name="pref_header_audio">Âm thanh</string>
|
||||||
<string name="pref_header_images">Hình ảnh</string>
|
|
||||||
<string name="pref_header_lockscreen">Màn hình khóa</string>
|
<string name="pref_header_lockscreen">Màn hình khóa</string>
|
||||||
<string name="pref_header_playlists">Danh sách nhạc</string>
|
<string name="pref_header_playlists">Danh sách nhạc</string>
|
||||||
<string name="pref_header_notification">Thông báo</string>
|
<string name="pref_header_notification">Thông báo</string>
|
||||||
<string name="pref_title_navigation_bar">Màu thanh điều hướng</string>
|
<string name="pref_title_navigation_bar">Màu thanh điều hướng</string>
|
||||||
<string name="pref_title_app_shortcuts">Màu sắc biểu tượng ứng dụng</string>
|
<string name="pref_title_app_shortcuts">Màu sắc biểu tượng ứng dụng</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Hiện bìa album</string>
|
<string name="pref_title_album_art_on_lockscreen">Hiện bìa album</string>
|
||||||
<string name="pref_title_auto_download_metadata">Tự động tải xuống siêu dữ liệu</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Làm mờ bìa album</string>
|
<string name="pref_title_blurred_album_art">Làm mờ bìa album</string>
|
||||||
<string name="pref_title_colored_notification">Màu thông báo</string>
|
<string name="pref_title_colored_notification">Màu thông báo</string>
|
||||||
<string name="pref_title_classic_notification">Thiết kế thông báo cổ điển</string>
|
<string name="pref_title_classic_notification">Thiết kế thông báo cổ điển</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Bỏ qua kho ảnh bìa trong Kho Phương tiện</string>
|
|
||||||
<string name="pref_title_gapless_playback">Phát lại quãng lặng</string>
|
<string name="pref_title_gapless_playback">Phát lại quãng lặng</string>
|
||||||
<string name="pref_title_audio_ducking">Giảm âm lượng khi mất tập trung</string>
|
<string name="pref_title_audio_ducking">Giảm âm lượng khi mất tập trung</string>
|
||||||
<string name="pref_title_last_added_interval">Thời gian danh sách nhạc được thêm vào sau cùng</string>
|
<string name="pref_title_last_added_interval">Thời gian danh sách nhạc được thêm vào sau cùng</string>
|
||||||
<string name="no_audio_ID">"Phát một bài hát đầu tiên, sau đó thử lại."</string>
|
|
||||||
<string name="delete_action">Xóa</string>
|
<string name="delete_action">Xóa</string>
|
||||||
<string name="clear_action">Dọn</string>
|
<string name="clear_action">Dọn</string>
|
||||||
<string name="remove_action">Di chuyển</string>
|
<string name="remove_action">Di chuyển</string>
|
||||||
|
|
@ -125,7 +118,6 @@
|
||||||
<string name="pref_summary_classic_notification">Sử dụng thiết kế thông báo cổ điển.</string>
|
<string name="pref_summary_classic_notification">Sử dụng thiết kế thông báo cổ điển.</string>
|
||||||
<string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc r\u1ef1c r\u1ee1 cho c\u00e1c th\u00f4ng b\u00e1o trong b\u00eca album."</string>
|
<string name="pref_summary_colored_notification">"M\u00e0u s\u1eafc r\u1ef1c r\u1ee1 cho c\u00e1c th\u00f4ng b\u00e1o trong b\u00eca album."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Có thể gây ra các vấn đề phát trên một số thiết bị."</string>
|
<string name="pref_summary_gapless_playback">"Có thể gây ra các vấn đề phát trên một số thiết bị."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Có thể làm tăng chất lượng bìa album nhưng làm chậm quá trình tải hình ảnh. Chỉ cho phép điều này nếu bạn có vấn đề với hình ảnh có độ phân giải thấp.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Màu sắc thanh điều hướng trong các màu cơ bản.</string>
|
<string name="pref_summary_colored_navigation_bar">Màu sắc thanh điều hướng trong các màu cơ bản.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Màu sắc chủ đạo của biểu tượng ứng dụng.</string>
|
<string name="pref_summary_colored_app_shortcuts">Màu sắc chủ đạo của biểu tượng ứng dụng.</string>
|
||||||
<string name="pref_summary_audio_ducking">Thông báo, điều hướng, vv.</string>
|
<string name="pref_summary_audio_ducking">Thông báo, điều hướng, vv.</string>
|
||||||
|
|
|
||||||
|
|
@ -77,9 +77,6 @@
|
||||||
<string name="action_shuffle_playlist">随机播放此播放列表</string>
|
<string name="action_shuffle_playlist">随机播放此播放列表</string>
|
||||||
<string name="light_theme_name">浅色</string>
|
<string name="light_theme_name">浅色</string>
|
||||||
<string name="dark_theme_name">暗色</string>
|
<string name="dark_theme_name">暗色</string>
|
||||||
<string name="always">总是</string>
|
|
||||||
<string name="only_on_wifi">仅在 WiFi 下</string>
|
|
||||||
<string name="never">从不</string>
|
|
||||||
<string name="today">今日</string>
|
<string name="today">今日</string>
|
||||||
<string name="this_week">本周</string>
|
<string name="this_week">本周</string>
|
||||||
<string name="past_seven_days">过去7天</string>
|
<string name="past_seven_days">过去7天</string>
|
||||||
|
|
@ -92,23 +89,19 @@
|
||||||
<string name="pref_title_general_theme">全局主题</string>
|
<string name="pref_title_general_theme">全局主题</string>
|
||||||
<string name="pref_header_audio">声音</string>
|
<string name="pref_header_audio">声音</string>
|
||||||
<string name="pref_header_library">媒体库</string>
|
<string name="pref_header_library">媒体库</string>
|
||||||
<string name="pref_header_images">图片</string>
|
|
||||||
<string name="pref_header_lockscreen">锁屏</string>
|
<string name="pref_header_lockscreen">锁屏</string>
|
||||||
<string name="pref_header_playlists">播放列表</string>
|
<string name="pref_header_playlists">播放列表</string>
|
||||||
<string name="pref_header_notification">通知</string>
|
<string name="pref_header_notification">通知</string>
|
||||||
<string name="pref_title_navigation_bar">着色导航栏</string>
|
<string name="pref_title_navigation_bar">着色导航栏</string>
|
||||||
<string name="pref_title_app_shortcuts">着色应用快捷方式</string>
|
<string name="pref_title_app_shortcuts">着色应用快捷方式</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">显示专辑封面</string>
|
<string name="pref_title_album_art_on_lockscreen">显示专辑封面</string>
|
||||||
<string name="pref_title_auto_download_metadata">自动下载元数据</string>
|
|
||||||
<string name="pref_title_blurred_album_art">专辑封面模糊化</string>
|
<string name="pref_title_blurred_album_art">专辑封面模糊化</string>
|
||||||
<string name="pref_title_colored_notification">启用通知背景着色</string>
|
<string name="pref_title_colored_notification">启用通知背景着色</string>
|
||||||
<string name="pref_title_classic_notification">经典通知样式</string>
|
<string name="pref_title_classic_notification">经典通知样式</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">忽略媒体储存中的专辑封面</string>
|
|
||||||
<string name="pref_title_gapless_playback">无缝播放</string>
|
<string name="pref_title_gapless_playback">无缝播放</string>
|
||||||
<string name="pref_title_audio_ducking">音频焦点丢失时降低音量</string>
|
<string name="pref_title_audio_ducking">音频焦点丢失时降低音量</string>
|
||||||
<string name="pref_title_last_added_interval">最近添加播放列表间隔</string>
|
<string name="pref_title_last_added_interval">最近添加播放列表间隔</string>
|
||||||
<string name="pref_title_remember_last_tab">记住最后打开页面</string>
|
<string name="pref_title_remember_last_tab">记住最后打开页面</string>
|
||||||
<string name="no_audio_ID">"请在播放歌曲后再次尝试此操作。"</string>
|
|
||||||
<string name="delete_action">删除</string>
|
<string name="delete_action">删除</string>
|
||||||
<string name="clear_action">清空</string>
|
<string name="clear_action">清空</string>
|
||||||
<string name="remove_action">移除</string>
|
<string name="remove_action">移除</string>
|
||||||
|
|
@ -134,7 +127,6 @@
|
||||||
<string name="pref_summary_classic_notification">使用经典通知样式。</string>
|
<string name="pref_summary_classic_notification">使用经典通知样式。</string>
|
||||||
<string name="pref_summary_colored_notification">"\u4f7f\u7528\u4e0e\u4e13\u8f91\u5c01\u9762\u76f8\u5339\u914d\u7684\u989c\u8272\u7740\u8272\u901a\u77e5\u80cc\u666f\u8272\u3002"</string>
|
<string name="pref_summary_colored_notification">"\u4f7f\u7528\u4e0e\u4e13\u8f91\u5c01\u9762\u76f8\u5339\u914d\u7684\u989c\u8272\u7740\u8272\u901a\u77e5\u80cc\u666f\u8272\u3002"</string>
|
||||||
<string name="pref_summary_gapless_playback">"在某些设备上会造成播放问题。"</string>
|
<string name="pref_summary_gapless_playback">"在某些设备上会造成播放问题。"</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">可以提高专辑封面图片的质量但加载时间也会更长。仅当遇到专辑封面像素过低时建议开启。</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">用主色调着色导航栏。</string>
|
<string name="pref_summary_colored_navigation_bar">用主色调着色导航栏。</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">用主色调着色应用快捷方式。</string>
|
<string name="pref_summary_colored_app_shortcuts">用主色调着色应用快捷方式。</string>
|
||||||
<string name="pref_summary_audio_ducking">通知、导航等</string>
|
<string name="pref_summary_audio_ducking">通知、导航等</string>
|
||||||
|
|
|
||||||
|
|
@ -78,9 +78,6 @@
|
||||||
<string name="action_shuffle_playlist">隨機播放清單</string>
|
<string name="action_shuffle_playlist">隨機播放清單</string>
|
||||||
<string name="light_theme_name">明亮</string>
|
<string name="light_theme_name">明亮</string>
|
||||||
<string name="dark_theme_name">暗沉</string>
|
<string name="dark_theme_name">暗沉</string>
|
||||||
<string name="always">永遠</string>
|
|
||||||
<string name="only_on_wifi">只在有 Wi-Fi 連接時</string>
|
|
||||||
<string name="never">永不</string>
|
|
||||||
<string name="today">今日</string>
|
<string name="today">今日</string>
|
||||||
<string name="this_week">本周</string>
|
<string name="this_week">本周</string>
|
||||||
<string name="past_seven_days">過去7天</string>
|
<string name="past_seven_days">過去7天</string>
|
||||||
|
|
@ -93,24 +90,20 @@
|
||||||
<string name="pref_title_general_theme">主題</string>
|
<string name="pref_title_general_theme">主題</string>
|
||||||
<string name="pref_header_audio">音訊</string>
|
<string name="pref_header_audio">音訊</string>
|
||||||
<string name="pref_header_library">音樂庫</string>
|
<string name="pref_header_library">音樂庫</string>
|
||||||
<string name="pref_header_images">圖片</string>
|
|
||||||
<string name="pref_header_lockscreen">鎖定螢幕</string>
|
<string name="pref_header_lockscreen">鎖定螢幕</string>
|
||||||
<string name="pref_header_playlists">播放清單</string>
|
<string name="pref_header_playlists">播放清單</string>
|
||||||
<string name="pref_header_notification">通知</string>
|
<string name="pref_header_notification">通知</string>
|
||||||
<string name="pref_title_navigation_bar">彩色的導航列</string>
|
<string name="pref_title_navigation_bar">彩色的導航列</string>
|
||||||
<string name="pref_title_app_shortcuts">彩色的應用快捷方式</string>
|
<string name="pref_title_app_shortcuts">彩色的應用快捷方式</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">顯示專輯封面</string>
|
<string name="pref_title_album_art_on_lockscreen">顯示專輯封面</string>
|
||||||
<string name="pref_title_auto_download_metadata">自動下載元數據</string>
|
|
||||||
<string name="pref_title_blurred_album_art">將專輯圖片模糊化</string>
|
<string name="pref_title_blurred_album_art">將專輯圖片模糊化</string>
|
||||||
<string name="pref_title_colored_notification">彩色的狀態列</string>
|
<string name="pref_title_colored_notification">彩色的狀態列</string>
|
||||||
<string name="pref_title_classic_notification">經典通知樣式</string>
|
<string name="pref_title_classic_notification">經典通知樣式</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">忽略音訊檔內嵌的專輯封面</string>
|
|
||||||
<string name="pref_title_gapless_playback">無縫播放</string>
|
<string name="pref_title_gapless_playback">無縫播放</string>
|
||||||
<string name="pref_title_audio_ducking">在焦點音訊響起時降低音量</string>
|
<string name="pref_title_audio_ducking">在焦點音訊響起時降低音量</string>
|
||||||
<string name="pref_title_last_added_interval">最後新增列表的時間範圍</string>
|
<string name="pref_title_last_added_interval">最後新增列表的時間範圍</string>
|
||||||
<string name="pref_title_remember_last_tab">記住最後開啟的頁面</string>
|
<string name="pref_title_remember_last_tab">記住最後開啟的頁面</string>
|
||||||
<string name="pref_title_remember_shuffle">記住隨機播放</string>
|
<string name="pref_title_remember_shuffle">記住隨機播放</string>
|
||||||
<string name="no_audio_ID">"請先播放一首歌後再重試一遍。"</string>
|
|
||||||
<string name="delete_action">刪除</string>
|
<string name="delete_action">刪除</string>
|
||||||
<string name="clear_action">清除</string>
|
<string name="clear_action">清除</string>
|
||||||
<string name="remove_action">移除</string>
|
<string name="remove_action">移除</string>
|
||||||
|
|
@ -136,7 +129,6 @@
|
||||||
<string name="pref_summary_classic_notification">使用經典通知樣式</string>
|
<string name="pref_summary_classic_notification">使用經典通知樣式</string>
|
||||||
<string name="pref_summary_colored_notification">"\u72c0\u614b\u5217\u984f\u8272\u8207\u5c08\u8f2f\u5716\u7247\u984f\u8272\u4e00\u81f4"</string>
|
<string name="pref_summary_colored_notification">"\u72c0\u614b\u5217\u984f\u8272\u8207\u5c08\u8f2f\u5716\u7247\u984f\u8272\u4e00\u81f4"</string>
|
||||||
<string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string>
|
<string name="pref_summary_gapless_playback">"可能會在某些裝置上出現播放問題。"</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">提高專輯封面的成像品質,但會造成較長的讀取時間。建議只有在您對低畫質的專輯封面有問題時才開啟此選項。</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">將專輯封面的主色調設為導航列的顏色。</string>
|
<string name="pref_summary_colored_navigation_bar">將專輯封面的主色調設為導航列的顏色。</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">將主色調設為應用快捷方式的顏色</string>
|
<string name="pref_summary_colored_app_shortcuts">將主色調設為應用快捷方式的顏色</string>
|
||||||
<string name="pref_summary_audio_ducking">通知鈴聲、導航語音等。</string>
|
<string name="pref_summary_audio_ducking">通知鈴聲、導航語音等。</string>
|
||||||
|
|
|
||||||
|
|
@ -12,18 +12,6 @@
|
||||||
<item>black</item>
|
<item>black</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
|
|
||||||
<string-array name="pref_auto_download_images_titles">
|
|
||||||
<item>@string/always</item>
|
|
||||||
<item>@string/only_on_wifi</item>
|
|
||||||
<item>@string/never</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
<string-array name="pref_auto_download_images_values">
|
|
||||||
<item>always</item>
|
|
||||||
<item>only_wifi</item>
|
|
||||||
<item>never</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
<string-array name="pref_playlists_last_added_interval_titles">
|
<string-array name="pref_playlists_last_added_interval_titles">
|
||||||
<item>@string/today</item>
|
<item>@string/today</item>
|
||||||
<item>@string/this_week</item>
|
<item>@string/this_week</item>
|
||||||
|
|
|
||||||
|
|
@ -86,9 +86,6 @@
|
||||||
<string name="light_theme_name">Light</string>
|
<string name="light_theme_name">Light</string>
|
||||||
<string name="dark_theme_name">Dark</string>
|
<string name="dark_theme_name">Dark</string>
|
||||||
<string name="black_theme_name">Black</string>
|
<string name="black_theme_name">Black</string>
|
||||||
<string name="always">Always</string>
|
|
||||||
<string name="only_on_wifi">Only on Wi-Fi</string>
|
|
||||||
<string name="never">Never</string>
|
|
||||||
<string name="today">Today</string>
|
<string name="today">Today</string>
|
||||||
<string name="this_week">This week</string>
|
<string name="this_week">This week</string>
|
||||||
<string name="past_seven_days">Past 7 days</string>
|
<string name="past_seven_days">Past 7 days</string>
|
||||||
|
|
@ -101,24 +98,20 @@
|
||||||
<string name="pref_title_general_theme">General theme</string>
|
<string name="pref_title_general_theme">General theme</string>
|
||||||
<string name="pref_header_audio">Audio</string>
|
<string name="pref_header_audio">Audio</string>
|
||||||
<string name="pref_header_library">Library</string>
|
<string name="pref_header_library">Library</string>
|
||||||
<string name="pref_header_images">Images</string>
|
|
||||||
<string name="pref_header_lockscreen">Lockscreen</string>
|
<string name="pref_header_lockscreen">Lockscreen</string>
|
||||||
<string name="pref_header_playlists">Playlists</string>
|
<string name="pref_header_playlists">Playlists</string>
|
||||||
<string name="pref_header_notification">Notification</string>
|
<string name="pref_header_notification">Notification</string>
|
||||||
<string name="pref_title_navigation_bar">Colored navigation bar</string>
|
<string name="pref_title_navigation_bar">Colored navigation bar</string>
|
||||||
<string name="pref_title_app_shortcuts">Colored app shortcuts</string>
|
<string name="pref_title_app_shortcuts">Colored app shortcuts</string>
|
||||||
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
<string name="pref_title_album_art_on_lockscreen">Show album cover</string>
|
||||||
<string name="pref_title_auto_download_metadata">Auto download metadata</string>
|
|
||||||
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
<string name="pref_title_blurred_album_art">Blur album cover</string>
|
||||||
<string name="pref_title_colored_notification">Colored notification</string>
|
<string name="pref_title_colored_notification">Colored notification</string>
|
||||||
<string name="pref_title_classic_notification">Classic notification design</string>
|
<string name="pref_title_classic_notification">Classic notification design</string>
|
||||||
<string name="pref_title_ignore_media_store_artwork">Ignore Media Store covers</string>
|
|
||||||
<string name="pref_title_gapless_playback">Gapless playback</string>
|
<string name="pref_title_gapless_playback">Gapless playback</string>
|
||||||
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
<string name="pref_title_audio_ducking">Reduce volume on focus loss</string>
|
||||||
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
<string name="pref_title_last_added_interval">Last added playlist interval</string>
|
||||||
<string name="pref_title_remember_last_tab">Remember last tab</string>
|
<string name="pref_title_remember_last_tab">Remember last tab</string>
|
||||||
<string name="pref_title_remember_shuffle">Remember shuffle</string>
|
<string name="pref_title_remember_shuffle">Remember shuffle</string>
|
||||||
<string name="no_audio_ID">"Play a song first, then try again."</string>
|
|
||||||
<string name="delete_action">Delete</string>
|
<string name="delete_action">Delete</string>
|
||||||
<string name="clear_action">Clear</string>
|
<string name="clear_action">Clear</string>
|
||||||
<string name="remove_action">Remove</string>
|
<string name="remove_action">Remove</string>
|
||||||
|
|
@ -144,7 +137,6 @@
|
||||||
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
<string name="pref_summary_classic_notification">Use the classic notification design.</string>
|
||||||
<string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string>
|
<string name="pref_summary_colored_notification">"Colors the notification in the album cover\u2019s vibrant color."</string>
|
||||||
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
<string name="pref_summary_gapless_playback">"Can cause playback issues on some devices."</string>
|
||||||
<string name="pref_summary_ignore_media_store_artwork">Can increase the album cover quality but causes slower image loading times. Only enable this if you have problems with low resolution artworks.</string>
|
|
||||||
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
|
<string name="pref_summary_colored_navigation_bar">Colors the navigation bar in the primary color.</string>
|
||||||
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
|
<string name="pref_summary_colored_app_shortcuts">Colors the app shortcuts in the primary color.</string>
|
||||||
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
<string name="pref_summary_audio_ducking">Notifications, navigation etc.</string>
|
||||||
|
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
||||||
|
|
||||||
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory android:title="@string/pref_header_images">
|
|
||||||
|
|
||||||
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
||||||
app:iconSpaceReserved="false"
|
|
||||||
android:defaultValue="false"
|
|
||||||
android:key="ignore_media_store_artwork"
|
|
||||||
android:summary="@string/pref_summary_ignore_media_store_artwork"
|
|
||||||
android:title="@string/pref_title_ignore_media_store_artwork" />
|
|
||||||
|
|
||||||
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEListPreference
|
|
||||||
app:iconSpaceReserved="false"
|
|
||||||
android:defaultValue="only_wifi"
|
|
||||||
android:entries="@array/pref_auto_download_images_titles"
|
|
||||||
android:entryValues="@array/pref_auto_download_images_values"
|
|
||||||
android:key="auto_download_images_policy"
|
|
||||||
android:negativeButtonText="@null"
|
|
||||||
android:positiveButtonText="@null"
|
|
||||||
android:title="@string/pref_title_auto_download_metadata" />
|
|
||||||
|
|
||||||
</com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
|
|
||||||
|
|
||||||
</androidx.preference.PreferenceScreen>
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue