added some translations

This commit is contained in:
Roberto Tonino 2020-07-18 18:06:07 +02:00
parent 843715a659
commit ef38e48ddd
14 changed files with 379 additions and 237 deletions

File diff suppressed because one or more lines are too long

View File

@ -21,15 +21,16 @@
</header>
<div class="tab">
<template v-for="(item, name, index) in body">
<button
:class="'selective' + (name == currentTab ? ' active' : '')"
:href="'#artist_' + name"
@click="changeTab(name)"
>
{{ name }}
</button>
</template>
<button
v-for="(item, name) in body"
:key="name"
class="selective"
:class="{ active: name === currentTab }"
:href="'#artist_' + name"
@click="changeTab(name)"
>
{{ $t(`globals.listTabs.${name}`) }}
</button>
</div>
<table class="table">
@ -46,12 +47,13 @@
clickable: data.sortKey
}"
>
<!-- Need to change this behaviour for translations -->
{{ data.title }}
</th>
</tr>
</thead>
<tbody>
<tr v-for="release in showTable">
<tr v-for="release in showTable" :key="release.id">
<td class="inline-flex clickable" @click="albumView" :data-id="release.id">
<img
class="rounded coverart"
@ -82,7 +84,7 @@
</table>
<footer>
<button class="back-button">Back</button>
<button class="back-button">{{ $t('globals.back') }}</button>
</footer>
</div>
</template>

View File

@ -1,5 +1,5 @@
<template functional>
<div :id="props.id" class="loading_placeholder">
<div :id="props.id" class="loading_placeholder" :class="{ 'loading_placeholder--hidden': props.hidden }">
<span class="loading_placeholder__text">{{ props.text }}</span>
<div class="lds-ring">
<div></div>
@ -20,6 +20,11 @@ export default {
id: {
type: String,
required: false
},
hidden: {
type: Boolean,
required: false,
default: false
}
}
}

View File

@ -1,9 +1,8 @@
<template>
<div id="charts_tab" class="main_tabcontent">
<h2 class="page_heading">Charts</h2>
<h2 class="page_heading">{{ $t('charts.title') }}</h2>
<div v-if="country === ''" id="charts_selection">
<div class="release_grid charts_grid">
<!-- Ugly af -->
<template v-for="release in countries">
<div
role="button"
@ -36,13 +35,13 @@
</div>
</div>
<div v-else id="charts_table">
<button @click="changeCountry">Change Country</button>
<button @click="changeCountry">{{ $t('charts.changeCountry') }}</button>
<button
@contextmenu.prevent="openQualityModal"
@click.stop="addToQueue"
:data-link="'https://www.deezer.com/playlist/' + id"
>
Download Chart
{{ $t('charts.download') }}
</button>
<table class="table table--charts">
<tbody>
@ -117,6 +116,8 @@ import { showView } from '@js/tabs.js'
import Downloads from '@/utils/downloads'
import Utils from '@/utils/utils'
import EventBus from '@/utils/EventBus'
export default {
name: 'the-charts-tab',
data() {

View File

@ -1,14 +1,14 @@
<template>
<div id="errors_tab" class="main_tabcontent">
<h1>Errors for {{ title }}</h1>
<h1>{{ $t('errors.title') }} {{ title }}</h1>
<table>
<tr>
<th>ID</th>
<th>Artist</th>
<th>Title</th>
<th>Error</th>
<th>{{ $tc('globals.listTabs.artist', 1) }}</th>
<th>{{ $tc('globals.listTabs.title', 1) }}</th>
<th>{{ $tc('globals.listTabs.error', 1) }}</th>
</tr>
<tr v-for="error in errors">
<tr v-for="error in errors" :key="error.data.id">
<td>{{ error.data.id }}</td>
<td>{{ error.data.artist }}</td>
<td>{{ error.data.title }}</td>

View File

@ -1,7 +1,7 @@
<template>
<div id="favorites_tab" class="main_tabcontent" @click="handleFavoritesTabClick">
<h2 class="page_heading">
Favorites
{{ $t('favorites.title') }}
<div
@click="reloadTabs"
class="clickable reload-button reload-button--inline"
@ -13,15 +13,23 @@
</div>
</h2>
<div class="section-tabs">
<div class="section-tabs__tab favorites_tablinks" id="favorites_playlist_tab">Playlists</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_album_tab">Albums</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_artist_tab">Artists</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_track_tab">Tracks</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_playlist_tab">
{{ $tc('globals.listTabs.playlist', 2) }}
</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_album_tab">
{{ $tc('globals.listTabs.album', 2) }}
</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_artist_tab">
{{ $tc('globals.listTabs.artist', 2) }}
</div>
<div class="section-tabs__tab favorites_tablinks" id="favorites_track_tab">
{{ $tc('globals.listTabs.track', 2) }}
</div>
</div>
<div id="playlist_favorites" class="favorites_tabcontent">
<div v-if="playlists.length == 0">
<h1>No Playlists found</h1>
<h1>{{ $t('favorites.noPlaylists') }}</h1>
</div>
<div class="release_grid" v-if="playlists.length > 0 || spotifyPlaylists > 0">
<div v-for="release in playlists" class="release clickable" @click="playlistView" :data-id="release.id">
@ -39,7 +47,11 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.creator.name + ' - ' + release.nb_tracks + ' tracks' }}</p>
<p class="secondary-text">
{{
`${$t('globals.by')} ${release.creator.name} - ${release.nb_tracks} ${$tc('globals.listTabs.track', 2)}`
}}
</p>
</div>
<div
v-for="release in spotifyPlaylists"
@ -61,13 +73,20 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.creator.name + ' - ' + release.nb_tracks + ' tracks' }}</p>
<p class="secondary-text">
{{
`${$t('globals.by')} ${release.creator.name} - ${release.nb_tracks.name} ${$tc(
'globals.listTabs.track',
2
)}`
}}
</p>
</div>
</div>
</div>
<div id="album_favorites" class="favorites_tabcontent">
<div v-if="albums.length == 0">
<h1>No Favorite Albums found</h1>
<h1>{{ $t('favorites.noAlbums') }}</h1>
</div>
<div class="release_grid" v-if="albums.length > 0">
<div v-for="release in albums" class="release clickable" @click="albumView" :data-id="release.id">
@ -85,13 +104,13 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.artist.name }}</p>
<p class="secondary-text">{{ `${$t('globals.by')} ${release.artist.name}` }}</p>
</div>
</div>
</div>
<div id="artist_favorites" class="favorites_tabcontent">
<div v-if="artists.length == 0">
<h1>No Favorite Artist found</h1>
<h1>{{ $t('favorites.noArtists') }}</h1>
</div>
<div class="release_grid" v-if="artists.length > 0">
<div v-for="release in artists" class="release clickable" @click="artistView" :data-id="release.id">
@ -114,7 +133,7 @@
</div>
<div id="track_favorites" class="favorites_tabcontent">
<div v-if="tracks.length == 0">
<h1>No Favorite Tracks found</h1>
<h1>{{ $t('favorites.noTracks') }}</h1>
</div>
<table v-if="tracks.length > 0" class="table">
<tr v-for="track in tracks" class="track_row">

View File

@ -1,14 +1,20 @@
<template>
<div id="home_tab" class="main_tabcontent">
<h2 class="page_heading">{{ $t('welcome') }}</h2>
<h2 class="page_heading">{{ $t('globals.welcome') }}</h2>
<section id="home_not_logged_in" class="home_section" ref="notLogged">
<p id="home_not_logged_text">You need to log into your deezer account before you can start downloading.</p>
<button type="button" name="button" @click="openSettings">Open Settings</button>
<p id="home_not_logged_text">{{ $t('home.needTologin') }}</p>
<button type="button" name="button" @click="openSettings">{{ $t('home.openSettings') }}</button>
</section>
<section v-if="playlists.length" class="home_section">
<h3 class="section_heading">Popular playlists</h3>
<h3 class="section_heading">{{ $t('home.sections.popularPlaylists') }}</h3>
<div class="release_grid">
<div v-for="release in playlists" class="release clickable" @click="playlistView" :data-id="release.id">
<div
v-for="release in playlists"
:key="release.id"
class="release clickable"
@click="playlistView"
:data-id="release.id"
>
<div class="cover_container">
<img aria-hidden="true" class="rounded coverart" :src="release.picture_medium" />
<div
@ -23,14 +29,22 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.user.name + ' - ' + release.nb_tracks + ' tracks' }}</p>
<p class="secondary-text">
{{ `${$t('globals.by')} ${release.user.name} - ${release.nb_tracks} ${$tc('globals.listTabs.track', 2)}` }}
</p>
</div>
</div>
</section>
<section v-if="albums.length" class="home_section">
<h3 class="section_heading">Most streamed albums</h3>
<h3 class="section_heading">{{ $t('home.sections.popularAlbums') }}</h3>
<div class="release_grid">
<div v-for="release in albums" class="release clickable" @click="albumView" :data-id="release.id">
<div
v-for="release in albums"
:key="release.id"
class="release clickable"
@click="albumView"
:data-id="release.id"
>
<div class="cover_container">
<img aria-hidden="true" class="rounded coverart" :src="release.cover_medium" />
<div
@ -45,7 +59,7 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.artist.name }}</p>
<p class="secondary-text">{{ `${$t('globals.by')} ${release.artist.name}` }}</p>
</div>
</div>
</section>

View File

@ -4,7 +4,7 @@
<div v-if="link == ''">
<p>
You can use this section to find out more information about the link you are trying to download<br />This is
usefull if you're trying to download some tracks that are not available in your country and want to know where
useful if you're trying to download some tracks that are not available in your country and want to know where
they are available
</p>
</div>

View File

@ -427,7 +427,11 @@
</div>
</div>
<p class="primary-text">{{ release.title }}</p>
<p class="secondary-text">{{ 'by ' + release.user.name + ' - ' + release.nb_tracks + ' tracks' }}</p>
<p class="secondary-text">
{{
`${$t('globals.by')} ${release.user.name} - ${release.nb_tracks} ${$tc('globals.listTabs.track', 2)}`
}}
</p>
</div>
</div>
</div>

View File

@ -2,27 +2,20 @@
<div id="middle_section">
<TheSearchBar />
<TheContent />
<div id="search_placeholder" class="loading_placeholder loading_placeholder--hidden">
<span class="loading_placeholder__text">Searching...</span>
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<BaseLoadingPlaceholder id="search_placeholder" text="Searching..." :hidden="true" />
</div>
</template>
<script>
import TheContent from '@components/TheContent.vue'
import TheSearchBar from '@components/TheSearchBar.vue'
import BaseLoadingPlaceholder from '@components/BaseLoadingPlaceholder.vue'
export default {
components: {
TheContent,
TheSearchBar
TheSearchBar,
BaseLoadingPlaceholder
}
}
</script>

View File

@ -1,12 +1,18 @@
<template>
<div id="modal_quality" class="smallmodal" v-show="open" @click="tryToDownloadTrack($event)" ref="modal">
<div class="smallmodal-content">
<button class="quality-button" data-quality-value="9">Download FLAC</button>
<button class="quality-button" data-quality-value="3">Download MP3 320kbps</button>
<button class="quality-button" data-quality-value="1">Download MP3 128kbps</button>
<button class="quality-button" data-quality-value="15">Download 360 Reality Audio [HQ]</button>
<button class="quality-button" data-quality-value="14">Download 360 Reality Audio [MQ]</button>
<button class="quality-button" data-quality-value="13">Download 360 Reality Audio [LQ]</button>
<button class="quality-button" data-quality-value="9">{{ $t('globals.download') }} FLAC</button>
<button class="quality-button" data-quality-value="3">{{ $t('globals.download') }} MP3 320kbps</button>
<button class="quality-button" data-quality-value="1">{{ $t('globals.download') }} MP3 128kbps</button>
<button class="quality-button" data-quality-value="15">
{{ $t('globals.download') }} 360 Reality Audio [HQ]
</button>
<button class="quality-button" data-quality-value="14">
{{ $t('globals.download') }} 360 Reality Audio [MQ]
</button>
<button class="quality-button" data-quality-value="13">
{{ $t('globals.download') }} 360 Reality Audio [LQ]
</button>
</div>
</div>
</template>

View File

@ -66,7 +66,7 @@
<i class="material-icons">font_download</i>{{ $t('settings.templates.title') }}
</h3>
<p>{{ $t('settings.templates.tracknameTemplate') }}/p>
<p>{{ $t('settings.templates.tracknameTemplate') }}</p>
<input type="text" v-model="settings.tracknameTemplate" />
<p>{{ $t('settings.templates.albumTracknameTemplate') }}</p>
@ -386,7 +386,9 @@
</div>
<div class="settings-group">
<h3 class="settings-group__header settings-group__header--with-icon"><i class="material-icons">list</i>{{ $t('settings.other.title') }}</h3>
<h3 class="settings-group__header settings-group__header--with-icon">
<i class="material-icons">list</i>{{ $t('settings.other.title') }}
</h3>
<label class="with_checkbox">
<input type="checkbox" v-model="settings.tags.savePlaylistAsCompilation" />
@ -408,13 +410,13 @@
<select v-model="settings.tags.multitagSeparator">
<option value="default">{{ $t('settings.other.multitagSeparator.default') }}</option>
<option value="andFeat">{{ $t('settings.other.multitagSeparator.andFeat') }}</option>
<option value=" & ">{{ $t('settings.other.multitagSeparator.using', [" & "]) }}</option>
<option value=",">{{ $t('settings.other.multitagSeparator.using', [","]) }}</option>
<option value=", ">{{ $t('settings.other.multitagSeparator.using', [", "]) }}</option>
<option value="/">{{ $t('settings.other.multitagSeparator.using', ["/"]) }}</option>
<option value=" / ">{{ $t('settings.other.multitagSeparator.using', [" / "]) }}</option>
<option value=";">{{ $t('settings.other.multitagSeparator.using', [";"]) }}</option>
<option value="; ">{{ $t('settings.other.multitagSeparator.using', ["; "]) }}</option>
<option value=" & ">{{ $t('settings.other.multitagSeparator.using', [' & ']) }}</option>
<option value=",">{{ $t('settings.other.multitagSeparator.using', [',']) }}</option>
<option value=", ">{{ $t('settings.other.multitagSeparator.using', [', ']) }}</option>
<option value="/">{{ $t('settings.other.multitagSeparator.using', ['/']) }}</option>
<option value=" / ">{{ $t('settings.other.multitagSeparator.using', [' / ']) }}</option>
<option value=";">{{ $t('settings.other.multitagSeparator.using', [';']) }}</option>
<option value="; ">{{ $t('settings.other.multitagSeparator.using', ['; ']) }}</option>
</select>
</div>
@ -436,10 +438,26 @@
<div class="input_group">
<p class="input_group_text">{{ $t('settings.other.dateFormat.title') }}</p>
<select v-model="settings.dateFormat">
<option value="Y-M-D">{{ `${$t('settings.other.dateFormat.year')}-${$t('settings.other.dateFormat.month')}-${$t('settings.other.dateFormat.day')}` }}</option>
<option value="Y-D-M">{{ `${$t('settings.other.dateFormat.year')}-${$t('settings.other.dateFormat.day')}-${$t('settings.other.dateFormat.month')}` }}</option>
<option value="D-M-Y">{{ `${$t('settings.other.dateFormat.day')}-${$t('settings.other.dateFormat.month')}-${$t('settings.other.dateFormat.year')}` }}</option>
<option value="M-D-Y">{{ `${$t('settings.other.dateFormat.month')}-${$t('settings.other.dateFormat.day')}-${$t('settings.other.dateFormat.year')}` }}</option>
<option value="Y-M-D">{{
`${$t('settings.other.dateFormat.year')}-${$t('settings.other.dateFormat.month')}-${$t(
'settings.other.dateFormat.day'
)}`
}}</option>
<option value="Y-D-M">{{
`${$t('settings.other.dateFormat.year')}-${$t('settings.other.dateFormat.day')}-${$t(
'settings.other.dateFormat.month'
)}`
}}</option>
<option value="D-M-Y">{{
`${$t('settings.other.dateFormat.day')}-${$t('settings.other.dateFormat.month')}-${$t(
'settings.other.dateFormat.year'
)}`
}}</option>
<option value="M-D-Y">{{
`${$t('settings.other.dateFormat.month')}-${$t('settings.other.dateFormat.day')}-${$t(
'settings.other.dateFormat.year'
)}`
}}</option>
<option value="Y">{{ $t('settings.other.dateFormat.year') }}</option>
</select>
</div>

View File

@ -1,5 +1,45 @@
const en = {
welcome: 'Welcome to deemix',
globals: {
welcome: 'Welcome to deemix',
back: 'back',
loading: 'loading',
download: 'Download',
by: 'by',
listTabs: {
all: 'all',
album: 'album | albums',
artist: 'artist | artists',
single: 'single | singles',
title: 'title | titles',
track: 'track | tracks',
playlist: 'playlist | playlists',
releaseDate: 'release date',
error: 'error'
}
},
charts: {
title: 'Charts',
changeCountry: 'Change Country',
download: 'Download Chart'
},
errors: {
title: 'Errors for'
},
favorites: {
title: 'Favorites',
noPlaylists: 'No Playlists found',
noAlbums: 'No Favorite Albums found',
noArtists: 'No Favorite Artists found',
noTracks: 'No Favorite Tracks found'
},
home: {
needTologin: 'You need to log into your Deezer account before you can start downloading.',
openSettings: 'Open Settings',
sections: {
popularPlaylists: 'Popular playlists',
popularAlbums: 'Most streamed albums'
}
},
settings: {
title: 'Settings',
languages: 'Languages',
@ -45,112 +85,112 @@ const en = {
},
downloads: {
title: 'Downloads',
queueConcurrency: "Concurrent Downloads",
queueConcurrency: 'Concurrent Downloads',
maxBitrate: {
title: "Preferred Bitrate",
9: "FLAC 1411kbps",
3: "MP3 320kbps",
1: "MP3 128kbps"
title: 'Preferred Bitrate',
9: 'FLAC 1411kbps',
3: 'MP3 320kbps',
1: 'MP3 128kbps'
},
overwriteFile: {
title: "Should I overwrite the files?",
y: "Yes, overwrite the file",
title: 'Should I overwrite the files?',
y: 'Yes, overwrite the file',
n: "No, don't overwrite the file",
t: "Overwrite only the tags"
t: 'Overwrite only the tags'
},
fallbackBitrate: "Bitrate fallback",
fallbackSearch: "Search fallback",
logErrors: "Create log files for errors",
logSearched: "Create log files for searched tracks",
createM3U8File: "Create playlist file",
syncedLyrics: "Create .lyr files (Sync Lyrics)",
playlistFilenameTemplate: "Playlist filename template",
saveDownloadQueue: "Save download queue when closing the app"
fallbackBitrate: 'Bitrate fallback',
fallbackSearch: 'Search fallback',
logErrors: 'Create log files for errors',
logSearched: 'Create log files for searched tracks',
createM3U8File: 'Create playlist file',
syncedLyrics: 'Create .lyr files (Sync Lyrics)',
playlistFilenameTemplate: 'Playlist filename template',
saveDownloadQueue: 'Save download queue when closing the app'
},
covers: {
title: 'Album covers',
saveArtwork: "Save Covers",
coverImageTemplate: "Cover name template",
saveArtworkArtist: "Save artist image",
artistImageTemplate: "Artist image template",
localArtworkSize: "Local artwork size",
embeddedArtworkSize: "Embedded artwork size",
PNGcovers: "Save images as png",
jpegImageQuality: "JPEG image quality",
saveArtwork: 'Save Covers',
coverImageTemplate: 'Cover name template',
saveArtworkArtist: 'Save artist image',
artistImageTemplate: 'Artist image template',
localArtworkSize: 'Local artwork size',
embeddedArtworkSize: 'Embedded artwork size',
PNGcovers: 'Save images as png',
jpegImageQuality: 'JPEG image quality'
},
tags: {
head: 'Which tags to save',
title: "Title",
artist: "Artist",
album: "Album",
cover: "Cover",
trackNumber: "Track Number",
trackTotal: "Track Total",
discNumber: "Disc Number",
discTotal: "Disc Total",
albumArtist: "Album Artist",
genre: "Genre",
year: "Year",
date: "Date",
explicit: "Explicit Lyrics",
isrc: "ISRC",
length: "Track Length",
barcode: "Album Barcode (UPC)",
bpm: "BPM",
replayGain: "Replay Gain",
label: "Album Label",
lyrics: "Unsynchronized Lyrics",
copyright: "Copyright",
composer: "Composer",
involvedPeople: "Involved People",
title: 'Title',
artist: 'Artist',
album: 'Album',
cover: 'Cover',
trackNumber: 'Track Number',
trackTotal: 'Track Total',
discNumber: 'Disc Number',
discTotal: 'Disc Total',
albumArtist: 'Album Artist',
genre: 'Genre',
year: 'Year',
date: 'Date',
explicit: 'Explicit Lyrics',
isrc: 'ISRC',
length: 'Track Length',
barcode: 'Album Barcode (UPC)',
bpm: 'BPM',
replayGain: 'Replay Gain',
label: 'Album Label',
lyrics: 'Unsynchronized Lyrics',
copyright: 'Copyright',
composer: 'Composer',
involvedPeople: 'Involved People'
},
other: {
title: 'Other',
savePlaylistAsCompilation: "Save playlists as compilation",
useNullSeparator: "Use null separator",
saveID3v1: "Save ID3v1 as well",
savePlaylistAsCompilation: 'Save playlists as compilation',
useNullSeparator: 'Use null separator',
saveID3v1: 'Save ID3v1 as well',
multitagSeparator: {
title: "How would you like to separate your artists?",
default: "Using standard specification",
andFeat: "Using & and feat.",
using: "Using \"{0}\""
title: 'How would you like to separate your artists?',
default: 'Using standard specification',
andFeat: 'Using & and feat.',
using: 'Using "{0}"'
},
albumVariousArtists: "Keep \"Various Artists\" in the Album Artists",
removeAlbumVersion: "Remove \"Album Version\" from track title",
removeDuplicateArtists: "Remove combinations of artists",
albumVariousArtists: 'Keep "Various Artists" in the Album Artists',
removeAlbumVersion: 'Remove "Album Version" from track title',
removeDuplicateArtists: 'Remove combinations of artists',
dateFormat: {
title: "Date format for FLAC files",
year: "YYYY",
month: "MM",
day: "DD"
title: 'Date format for FLAC files',
year: 'YYYY',
month: 'MM',
day: 'DD'
},
featuredToTitle: {
title: "What should I do with featured artists?",
0: "Nothing",
1: "Remove it from the title",
3: "Remove it from the title and the album title",
2: "Move it to the title"
title: 'What should I do with featured artists?',
0: 'Nothing',
1: 'Remove it from the title',
3: 'Remove it from the title and the album title',
2: 'Move it to the title'
},
titleCasing: "Title casing",
artistCasing: "Artist casing",
titleCasing: 'Title casing',
artistCasing: 'Artist casing',
casing: {
nothing: "Keep unchanged",
lower: "lowercase",
upper: "UPPERCASE",
start: "Start Of Each Word",
sentence: "Like a sentence"
nothing: 'Keep unchanged',
lower: 'lowercase',
upper: 'UPPERCASE',
start: 'Start Of Each Word',
sentence: 'Like a sentence'
},
previewVolume: "Preview Volume",
previewVolume: 'Preview Volume',
executeCommand: {
title: "Command to execute after download",
description: "Leave blank for no action"
title: 'Command to execute after download',
description: 'Leave blank for no action'
}
},
spotify: {
title: 'Spotify Features',
clientID: "Spotify clientID",
clientSecret: "Spotify Client Secret",
username: "Spotify username"
clientID: 'Spotify clientID',
clientSecret: 'Spotify Client Secret',
username: 'Spotify username'
},
reset: 'Reset to Default',
save: 'Save',

View File

@ -1,5 +1,45 @@
const it = {
welcome: 'Benvenuto su deemix',
globals: {
welcome: 'Benvenuto su deemix',
back: 'indietro',
loading: 'caricamento',
download: 'Scarica',
by: 'di',
listTabs: {
all: 'tutto',
album: 'album',
artist: 'artista | artisti',
single: 'singolo | singoli',
title: 'titolo | titoli',
track: 'traccia | tracce',
playlist: 'playlist',
releaseDate: 'data di rilascio',
error: 'errore'
}
},
charts: {
title: 'Classifiche',
changeCountry: 'Cambia Paese',
download: 'Scarica Classifica'
},
errors: {
title: 'Errori riguardanti'
},
favorites: {
title: 'Preferiti',
noPlaylists: 'Nessuna Playlist preferita trovata',
noAlbums: 'Nessun Album preferito trovato',
noArtists: 'Nessun Artista preferito trovato',
noTracks: 'Nessuna Traccia preferito trovata'
},
home: {
needTologin: 'Devi accedere al tuo account Deezer, fino a quel momento non potrai scaricare nulla.',
openSettings: 'Apri le impostazioni',
sections: {
popularPlaylists: 'Playlyst Popolari',
popularAlbums: 'Album più riprodotti'
}
},
settings: {
title: 'Impostazioni',
languages: 'Lingue',
@ -38,119 +78,119 @@ const it = {
createSingleFolder: 'Crea la struttura di cartelle per le traccie singole'
},
trackTitles: {
title: 'Titoli traccie',
title: 'Titoli tracce',
padTracks: 'Aggiungi zeri ai numeri di traccia',
paddingSize: 'Sovrascrivi il numero di zeri da aggiungere',
illegalCharacterReplacer: 'Rimpiazza caratteri illegali con'
},
downloads: {
title: 'Download',
queueConcurrency: "Download Concorrenti",
queueConcurrency: 'Download Concorrenti',
maxBitrate: {
title: "Bitrate preferito",
9: "FLAC 1411kbps",
3: "MP3 320kbps",
1: "MP3 128kbps"
title: 'Bitrate preferito',
9: 'FLAC 1411kbps',
3: 'MP3 320kbps',
1: 'MP3 128kbps'
},
overwriteFile: {
title: "Dovrei sovrascrivere i file già scaricati?",
y: "Si, sovrascrivi i file",
n: "No, non sovrascrivere i file",
t: "Sovrascrivi solo i tag"
title: 'Dovrei sovrascrivere i file già scaricati?',
y: 'Si, sovrascrivi i file',
n: 'No, non sovrascrivere i file',
t: 'Sovrascrivi solo i tag'
},
fallbackBitrate: "Ripiega a bitrate più bassi",
fallbackSearch: "Ripiega alla ricerca",
logErrors: "Crea file di log per gli errori",
logSearched: "Crea file di log per le alternative",
syncedLyrics: "Crea il file .lyr (Testi Sincronizzati)",
createM3U8File: "Crea il file playlist",
playlistFilenameTemplate: "Template nome del file playlist",
fallbackBitrate: 'Ripiega a bitrate più bassi',
fallbackSearch: 'Ripiega alla ricerca',
logErrors: 'Crea file di log per gli errori',
logSearched: 'Crea file di log per le alternative',
syncedLyrics: 'Crea il file .lyr (Testi Sincronizzati)',
createM3U8File: 'Crea il file playlist',
playlistFilenameTemplate: 'Template nome del file playlist',
saveDownloadQueue: "Salva la coda di download quando chiudi l'app"
},
covers: {
title: 'Copertine',
saveArtwork: "Salva copertina album",
coverImageTemplate: "Template nome copertina Album",
saveArtworkArtist: "Salva copertina artista",
artistImageTemplate: "Template nome copertina artista",
localArtworkSize: "Dimensioni copertine locali",
embeddedArtworkSize: "Dimensioni copertine incorporate",
PNGcovers: "Salva immagini come PNG",
jpegImageQuality: "Qualità immagine JPEG",
saveArtwork: 'Salva copertina album',
coverImageTemplate: 'Template nome copertina Album',
saveArtworkArtist: 'Salva copertina artista',
artistImageTemplate: 'Template nome copertina artista',
localArtworkSize: 'Dimensioni copertine locali',
embeddedArtworkSize: 'Dimensioni copertine incorporate',
PNGcovers: 'Salva immagini come PNG',
jpegImageQuality: 'Qualità immagine JPEG'
},
tags: {
head: 'Quali tag salvare',
title: "Titolo",
artist: "Artista",
album: "Album",
cover: "Copertina",
trackNumber: "Numero Traccia",
trackTotal: "Traccie Totali",
discNumber: "Numero Disco",
discTotal: "Dischi Totali",
albumArtist: "Artista dell'album",
genre: "Genere",
year: "Anno",
date: "Data",
explicit: "Testo Esplicito",
isrc: "ISRC",
length: "Durata Traccia",
barcode: "Barcode dell'album (UPC)",
bpm: "BPM",
replayGain: "Guadagno Brano",
label: "Casa Discografica",
lyrics: "Testo non Sincronizzato",
copyright: "Copyright",
composer: "Compositori",
involvedPeople: "Persone Coinvolte",
title: 'Titolo',
artist: 'Artista',
album: 'Album',
cover: 'Copertina',
trackNumber: 'Numero Traccia',
trackTotal: 'Traccie Totali',
discNumber: 'Numero Disco',
discTotal: 'Dischi Totali',
albumArtist: "Artista dell'album",
genre: 'Genere',
year: 'Anno',
date: 'Data',
explicit: 'Testo Esplicito',
isrc: 'ISRC',
length: 'Durata Traccia',
barcode: "Barcode dell'album (UPC)",
bpm: 'BPM',
replayGain: 'Guadagno Brano',
label: 'Casa Discografica',
lyrics: 'Testo non Sincronizzato',
copyright: 'Copyright',
composer: 'Compositori',
involvedPeople: 'Persone Coinvolte'
},
other: {
title: 'Altro',
savePlaylistAsCompilation: "Salva le playlist come Compilation",
useNullSeparator: "Usa il carattere NULL come separatore",
saveID3v1: "Salva anche il ID3v1",
savePlaylistAsCompilation: 'Salva le playlist come Compilation',
useNullSeparator: 'Usa il carattere NULL come separatore',
saveID3v1: 'Salva anche il ID3v1',
multitagSeparator: {
title: "Come vuoi separare gli artisti?",
default: "Usando la specificazione standard",
andFeat: "Usando & e feat.",
using: "Usando \"{0}\""
title: 'Come vuoi separare gli artisti?',
default: 'Usando la specificazione standard',
andFeat: 'Usando & e feat.',
using: 'Usando "{0}"'
},
albumVariousArtists: "Lascia \"Artisti Vari\" negli artisti dell'album",
removeAlbumVersion: "Rimuovi \"Album Version\" dal titolo del brano",
removeDuplicateArtists: "Rimuovi le combinazioni di artisti",
albumVariousArtists: 'Lascia "Artisti Vari" negli artisti dell\'album',
removeAlbumVersion: 'Rimuovi "Album Version" dal titolo del brano',
removeDuplicateArtists: 'Rimuovi le combinazioni di artisti',
dateFormat: {
title: "Formato della data per i file FLAC",
year: "AAAA",
month: "MM",
day: "GG"
title: 'Formato della data per i file FLAC',
year: 'AAAA',
month: 'MM',
day: 'GG'
},
featuredToTitle: {
title: "Cosa dovrei fare con i feat?",
0: "Niente",
1: "Rimuovili dal titolo",
title: 'Cosa dovrei fare con i feat?',
0: 'Niente',
1: 'Rimuovili dal titolo',
3: "Rimuovili dal titolo e dal nome dell'album",
2: "Spostali sul titolo"
2: 'Spostali sul titolo'
},
titleCasing: "Capitalizzazione Titoli",
artistCasing: "Capitalizzazione Artisti",
titleCasing: 'Capitalizzazione Titoli',
artistCasing: 'Capitalizzazione Artisti',
casing: {
nothing: "Non cambiare",
lower: "TUTTO MAIUSCOLO",
upper: "tutto minuscolo",
start: "Prima Lettera Maiuscola",
sentence: "Come una frase"
nothing: 'Non cambiare',
lower: 'TUTTO MAIUSCOLO',
upper: 'tutto minuscolo',
start: 'Prima Lettera Maiuscola',
sentence: 'Come una frase'
},
previewVolume: "Volume Anteprime",
previewVolume: 'Volume Anteprime',
executeCommand: {
title: "Comando da eseguire dopo il download",
description: "Lascia vuoto per nessuna azione"
title: 'Comando da eseguire dopo il download',
description: 'Lascia vuoto per nessuna azione'
}
},
spotify: {
title: 'Spotify Features',
clientID: "Spotify clientID",
clientSecret: "Spotify Client Secret",
username: "Spotify username"
clientID: 'Spotify clientID',
clientSecret: 'Spotify Client Secret',
username: 'Spotify username'
},
reset: 'Reimposta Default',
save: 'Salva',